2014-04-08 05:32:00 +00:00
|
|
|
/*
|
|
|
|
This file is part of cpp-ethereum.
|
|
|
|
|
|
|
|
cpp-ethereum is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
cpp-ethereum is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with cpp-ethereum. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2014-12-18 07:35:12 +00:00
|
|
|
/** @file net.cpp
|
|
|
|
* @author Alex Leverington <nessence@gmail.com>
|
2014-04-08 05:32:00 +00:00
|
|
|
* @date 2014
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <boost/test/unit_test.hpp>
|
2015-02-09 16:31:04 +00:00
|
|
|
|
2014-12-18 07:35:12 +00:00
|
|
|
#include <libdevcore/Worker.h>
|
2015-03-18 14:31:16 +00:00
|
|
|
#include <libdevcore/Assertions.h>
|
2014-12-22 00:51:19 +00:00
|
|
|
#include <libdevcrypto/Common.h>
|
2014-12-18 07:35:12 +00:00
|
|
|
#include <libp2p/UDP.h>
|
2014-12-22 02:56:07 +00:00
|
|
|
#include <libp2p/NodeTable.h>
|
2014-04-08 05:32:00 +00:00
|
|
|
using namespace std;
|
2014-09-05 15:09:58 +00:00
|
|
|
using namespace dev;
|
2014-12-18 07:35:12 +00:00
|
|
|
using namespace dev::p2p;
|
|
|
|
namespace ba = boost::asio;
|
|
|
|
namespace bi = ba::ip;
|
2014-04-08 05:32:00 +00:00
|
|
|
|
2015-04-14 06:22:39 +00:00
|
|
|
struct NetFixture
|
|
|
|
{
|
|
|
|
NetFixture() { dev::p2p::NodeIPEndpoint::test_allowLocal = true;; }
|
|
|
|
~NetFixture() { dev::p2p::NodeIPEndpoint::test_allowLocal = false; }
|
|
|
|
};
|
|
|
|
|
|
|
|
BOOST_FIXTURE_TEST_SUITE(net, NetFixture)
|
2014-12-23 07:56:56 +00:00
|
|
|
|
2014-12-22 00:51:19 +00:00
|
|
|
/**
|
|
|
|
* Only used for testing. Not useful beyond tests.
|
|
|
|
*/
|
|
|
|
class TestHost: public Worker
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
TestHost(): Worker("test",0), m_io() {};
|
2014-12-23 07:56:56 +00:00
|
|
|
virtual ~TestHost() { m_io.stop(); stopWorking(); }
|
2014-12-22 00:51:19 +00:00
|
|
|
void start() { startWorking(); }
|
|
|
|
void doWork() { m_io.run(); }
|
2014-12-24 09:22:27 +00:00
|
|
|
void doneWorking() { m_io.reset(); m_io.poll(); m_io.reset(); }
|
2015-02-09 16:31:04 +00:00
|
|
|
|
2014-12-22 00:51:19 +00:00
|
|
|
protected:
|
|
|
|
ba::io_service m_io;
|
|
|
|
};
|
|
|
|
|
2014-12-23 07:56:56 +00:00
|
|
|
struct TestNodeTable: public NodeTable
|
|
|
|
{
|
|
|
|
/// Constructor
|
2015-04-14 06:22:39 +00:00
|
|
|
TestNodeTable(ba::io_service& _io, KeyPair _alias, bi::address const& _addr, uint16_t _port = 30300): NodeTable(_io, _alias, NodeIPEndpoint(_addr, _port, _port)) {}
|
2015-02-09 16:31:04 +00:00
|
|
|
|
2014-12-26 04:38:27 +00:00
|
|
|
static std::vector<std::pair<KeyPair,unsigned>> createTestNodes(unsigned _count)
|
2014-12-25 23:56:50 +00:00
|
|
|
{
|
|
|
|
std::vector<std::pair<KeyPair,unsigned>> ret;
|
|
|
|
asserts(_count < 1000);
|
|
|
|
static uint16_t s_basePort = 30500;
|
2015-02-09 16:31:04 +00:00
|
|
|
|
2014-12-25 23:56:50 +00:00
|
|
|
ret.clear();
|
2014-12-26 04:38:27 +00:00
|
|
|
for (unsigned i = 0; i < _count; i++)
|
2014-12-25 23:56:50 +00:00
|
|
|
{
|
|
|
|
KeyPair k = KeyPair::create();
|
|
|
|
ret.push_back(make_pair(k,s_basePort+i));
|
|
|
|
}
|
2015-02-09 16:31:04 +00:00
|
|
|
|
2014-12-25 23:56:50 +00:00
|
|
|
return std::move(ret);
|
|
|
|
}
|
2015-02-09 16:31:04 +00:00
|
|
|
|
2014-12-25 23:56:50 +00:00
|
|
|
void pingTestNodes(std::vector<std::pair<KeyPair,unsigned>> const& _testNodes)
|
2014-12-23 07:56:56 +00:00
|
|
|
{
|
|
|
|
bi::address ourIp = bi::address::from_string("127.0.0.1");
|
2014-12-23 08:25:36 +00:00
|
|
|
for (auto& n: _testNodes)
|
2014-12-24 13:48:47 +00:00
|
|
|
{
|
2014-12-23 07:56:56 +00:00
|
|
|
ping(bi::udp::endpoint(ourIp, n.second));
|
2014-12-26 04:38:27 +00:00
|
|
|
this_thread::sleep_for(chrono::milliseconds(2));
|
2014-12-24 13:48:47 +00:00
|
|
|
}
|
2014-12-23 07:56:56 +00:00
|
|
|
}
|
2015-02-09 16:31:04 +00:00
|
|
|
|
2014-12-25 23:56:50 +00:00
|
|
|
void populateTestNodes(std::vector<std::pair<KeyPair,unsigned>> const& _testNodes, size_t _count = 0)
|
2014-12-24 09:22:27 +00:00
|
|
|
{
|
2014-12-24 13:48:47 +00:00
|
|
|
if (!_count)
|
|
|
|
_count = _testNodes.size();
|
|
|
|
|
2014-12-24 09:22:27 +00:00
|
|
|
bi::address ourIp = bi::address::from_string("127.0.0.1");
|
|
|
|
for (auto& n: _testNodes)
|
2014-12-24 13:48:47 +00:00
|
|
|
if (_count--)
|
2015-03-22 18:05:39 +00:00
|
|
|
{
|
|
|
|
// manually add node for test
|
|
|
|
{
|
|
|
|
Guard ln(x_nodes);
|
2015-04-14 06:22:39 +00:00
|
|
|
shared_ptr<NodeEntry> node(new NodeEntry(m_node, n.first.pub(), NodeIPEndpoint(ourIp, n.second, n.second)));
|
2015-03-22 18:05:39 +00:00
|
|
|
node->pending = false;
|
|
|
|
m_nodes[node->id] = node;
|
|
|
|
}
|
2015-02-06 19:54:00 +00:00
|
|
|
noteActiveNode(n.first.pub(), bi::udp::endpoint(ourIp, n.second));
|
2015-03-22 18:05:39 +00:00
|
|
|
}
|
2014-12-24 13:48:47 +00:00
|
|
|
else
|
|
|
|
break;
|
2014-12-24 09:22:27 +00:00
|
|
|
}
|
2015-02-09 16:31:04 +00:00
|
|
|
|
2014-12-23 07:56:56 +00:00
|
|
|
void reset()
|
|
|
|
{
|
|
|
|
Guard l(x_state);
|
|
|
|
for (auto& n: m_state) n.nodes.clear();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2014-12-22 00:51:19 +00:00
|
|
|
/**
|
|
|
|
* Only used for testing. Not useful beyond tests.
|
|
|
|
*/
|
2014-12-23 07:56:56 +00:00
|
|
|
struct TestNodeTableHost: public TestHost
|
2014-12-22 00:51:19 +00:00
|
|
|
{
|
2015-03-22 17:39:56 +00:00
|
|
|
TestNodeTableHost(unsigned _count = 8): m_alias(KeyPair::create()), nodeTable(new TestNodeTable(m_io, m_alias, bi::address::from_string("127.0.0.1"))), testNodes(TestNodeTable::createTestNodes(_count)) {};
|
2014-12-24 09:22:27 +00:00
|
|
|
~TestNodeTableHost() { m_io.stop(); stopWorking(); }
|
2014-12-23 08:25:36 +00:00
|
|
|
|
2015-03-22 17:39:56 +00:00
|
|
|
void setup() { for (auto n: testNodes) nodeTables.push_back(make_shared<TestNodeTable>(m_io,n.first, bi::address::from_string("127.0.0.1"),n.second)); }
|
2015-02-09 16:31:04 +00:00
|
|
|
|
2014-12-25 23:56:50 +00:00
|
|
|
void pingAll() { for (auto& t: nodeTables) t->pingTestNodes(testNodes); }
|
2015-02-09 16:31:04 +00:00
|
|
|
|
2014-12-28 13:24:21 +00:00
|
|
|
void populateAll(size_t _count = 0) { for (auto& t: nodeTables) t->populateTestNodes(testNodes, _count); }
|
2015-02-09 16:31:04 +00:00
|
|
|
|
2014-12-25 23:56:50 +00:00
|
|
|
void populate(size_t _count = 0) { nodeTable->populateTestNodes(testNodes, _count); }
|
2015-02-09 16:31:04 +00:00
|
|
|
|
2014-12-23 08:25:36 +00:00
|
|
|
KeyPair m_alias;
|
2014-12-23 07:56:56 +00:00
|
|
|
shared_ptr<TestNodeTable> nodeTable;
|
2014-12-25 23:56:50 +00:00
|
|
|
std::vector<std::pair<KeyPair,unsigned>> testNodes; // keypair and port
|
|
|
|
std::vector<shared_ptr<TestNodeTable>> nodeTables;
|
2014-12-22 00:51:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class TestUDPSocket: UDPSocketEvents, public TestHost
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
TestUDPSocket(): m_socket(new UDPSocket<TestUDPSocket, 1024>(m_io, *this, 30300)) {}
|
2014-12-23 07:56:56 +00:00
|
|
|
|
2014-12-18 07:35:12 +00:00
|
|
|
void onDisconnected(UDPSocketFace*) {};
|
2014-12-22 00:51:19 +00:00
|
|
|
void onReceived(UDPSocketFace*, bi::udp::endpoint const&, bytesConstRef _packet) { if (_packet.toString() == "AAAA") success = true; }
|
2014-04-08 05:32:00 +00:00
|
|
|
|
2014-12-22 00:51:19 +00:00
|
|
|
shared_ptr<UDPSocket<TestUDPSocket, 1024>> m_socket;
|
2015-02-09 16:31:04 +00:00
|
|
|
|
2014-12-18 07:35:12 +00:00
|
|
|
bool success = false;
|
|
|
|
};
|
2014-04-08 05:32:00 +00:00
|
|
|
|
2015-04-11 20:03:56 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(requestTimeout)
|
|
|
|
{
|
|
|
|
using TimePoint = std::chrono::steady_clock::time_point;
|
|
|
|
using RequestTimeout = std::pair<NodeId, TimePoint>;
|
|
|
|
|
|
|
|
std::chrono::milliseconds timeout(300);
|
|
|
|
std::list<RequestTimeout> timeouts;
|
|
|
|
|
|
|
|
NodeId nodeA(sha3("a"));
|
|
|
|
NodeId nodeB(sha3("b"));
|
|
|
|
timeouts.push_back(make_pair(nodeA, chrono::steady_clock::now()));
|
|
|
|
this_thread::sleep_for(std::chrono::milliseconds(100));
|
|
|
|
timeouts.push_back(make_pair(nodeB, chrono::steady_clock::now()));
|
|
|
|
this_thread::sleep_for(std::chrono::milliseconds(210));
|
|
|
|
|
|
|
|
bool nodeAtriggered = false;
|
|
|
|
bool nodeBtriggered = false;
|
|
|
|
timeouts.remove_if([&](RequestTimeout const& t)
|
|
|
|
{
|
|
|
|
auto now = chrono::steady_clock::now();
|
|
|
|
auto diff = now - t.second;
|
|
|
|
if (t.first == nodeA && diff < timeout)
|
|
|
|
nodeAtriggered = true;
|
|
|
|
if (t.first == nodeB && diff < timeout)
|
|
|
|
nodeBtriggered = true;
|
|
|
|
return (t.first == nodeA || t.first == nodeB);
|
|
|
|
});
|
|
|
|
|
|
|
|
BOOST_REQUIRE(nodeAtriggered == false);
|
|
|
|
BOOST_REQUIRE(nodeBtriggered == true);
|
|
|
|
BOOST_REQUIRE(timeouts.size() == 0);
|
|
|
|
}
|
|
|
|
|
2015-03-26 15:21:25 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(isIPAddressType)
|
|
|
|
{
|
|
|
|
string wildcard = "0.0.0.0";
|
|
|
|
BOOST_REQUIRE(bi::address::from_string(wildcard).is_unspecified());
|
|
|
|
|
|
|
|
string empty = "";
|
|
|
|
BOOST_REQUIRE_THROW(bi::address::from_string(empty).is_unspecified(), std::exception);
|
|
|
|
|
|
|
|
string publicAddress192 = "192.169.0.0";
|
|
|
|
BOOST_REQUIRE(isPublicAddress(publicAddress192));
|
|
|
|
BOOST_REQUIRE(!isPrivateAddress(publicAddress192));
|
|
|
|
BOOST_REQUIRE(!isLocalHostAddress(publicAddress192));
|
|
|
|
|
|
|
|
string publicAddress172 = "172.32.0.0";
|
|
|
|
BOOST_REQUIRE(isPublicAddress(publicAddress172));
|
|
|
|
BOOST_REQUIRE(!isPrivateAddress(publicAddress172));
|
|
|
|
BOOST_REQUIRE(!isLocalHostAddress(publicAddress172));
|
|
|
|
|
|
|
|
string privateAddress192 = "192.168.1.0";
|
|
|
|
BOOST_REQUIRE(isPrivateAddress(privateAddress192));
|
|
|
|
BOOST_REQUIRE(!isPublicAddress(privateAddress192));
|
|
|
|
BOOST_REQUIRE(!isLocalHostAddress(privateAddress192));
|
|
|
|
|
|
|
|
string privateAddress172 = "172.16.0.0";
|
|
|
|
BOOST_REQUIRE(isPrivateAddress(privateAddress172));
|
|
|
|
BOOST_REQUIRE(!isPublicAddress(privateAddress172));
|
|
|
|
BOOST_REQUIRE(!isLocalHostAddress(privateAddress172));
|
|
|
|
|
|
|
|
string privateAddress10 = "10.0.0.0";
|
|
|
|
BOOST_REQUIRE(isPrivateAddress(privateAddress10));
|
|
|
|
BOOST_REQUIRE(!isPublicAddress(privateAddress10));
|
|
|
|
BOOST_REQUIRE(!isLocalHostAddress(privateAddress10));
|
|
|
|
}
|
|
|
|
|
2015-03-26 05:06:34 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(v2PingNodePacket)
|
2015-03-23 14:26:48 +00:00
|
|
|
{
|
|
|
|
// test old versino of pingNode packet w/new
|
|
|
|
RLPStream s;
|
|
|
|
s.appendList(3); s << "1.1.1.1" << 30303 << std::chrono::duration_cast<std::chrono::seconds>((std::chrono::system_clock::now() + chrono::seconds(60)).time_since_epoch()).count();
|
|
|
|
|
|
|
|
PingNode p((bi::udp::endpoint()));
|
|
|
|
BOOST_REQUIRE_NO_THROW(p = PingNode::fromBytesConstRef(bi::udp::endpoint(), bytesConstRef(&s.out())));
|
2015-03-26 05:06:34 +00:00
|
|
|
BOOST_REQUIRE(p.version == 2);
|
2015-03-23 14:26:48 +00:00
|
|
|
}
|
|
|
|
|
2015-04-14 06:44:01 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(neighboursPacketLength)
|
|
|
|
{
|
|
|
|
KeyPair k = KeyPair::create();
|
|
|
|
std::vector<std::pair<KeyPair,unsigned>> testNodes(TestNodeTable::createTestNodes(16));
|
|
|
|
bi::udp::endpoint to(boost::asio::ip::address::from_string("127.0.0.1"), 30000);
|
|
|
|
|
|
|
|
// hash(32), signature(65), overhead: packet(2), type(1), nodeList(2), ts(9),
|
|
|
|
static unsigned const nlimit = (1280 - 111) / 87;
|
|
|
|
for (unsigned offset = 0; offset < testNodes.size(); offset += nlimit)
|
|
|
|
{
|
|
|
|
Neighbours out(to);
|
|
|
|
|
|
|
|
auto limit = nlimit ? std::min(testNodes.size(), (size_t)(offset + nlimit)) : testNodes.size();
|
|
|
|
for (auto i = offset; i < limit; i++)
|
|
|
|
{
|
|
|
|
Neighbours::Node node;
|
|
|
|
node.ipAddress = boost::asio::ip::address::from_string("200.200.200.200").to_string();
|
2015-04-16 01:23:49 +00:00
|
|
|
node.udpPort = testNodes[i].second;
|
2015-04-14 06:44:01 +00:00
|
|
|
node.node = testNodes[i].first.pub();
|
|
|
|
out.nodes.push_back(node);
|
|
|
|
}
|
|
|
|
|
|
|
|
out.sign(k.sec());
|
|
|
|
BOOST_REQUIRE_LE(out.data.size(), 1280);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-05 21:01:23 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(test_neighbours_packet)
|
2014-12-25 23:56:50 +00:00
|
|
|
{
|
|
|
|
KeyPair k = KeyPair::create();
|
2014-12-26 04:38:27 +00:00
|
|
|
std::vector<std::pair<KeyPair,unsigned>> testNodes(TestNodeTable::createTestNodes(16));
|
2014-12-25 23:56:50 +00:00
|
|
|
bi::udp::endpoint to(boost::asio::ip::address::from_string("127.0.0.1"), 30000);
|
2015-02-09 16:31:04 +00:00
|
|
|
|
2015-01-05 21:01:23 +00:00
|
|
|
Neighbours out(to);
|
2014-12-25 23:56:50 +00:00
|
|
|
for (auto n: testNodes)
|
|
|
|
{
|
2015-01-05 21:01:23 +00:00
|
|
|
Neighbours::Node node;
|
2014-12-25 23:56:50 +00:00
|
|
|
node.ipAddress = boost::asio::ip::address::from_string("127.0.0.1").to_string();
|
2015-04-14 06:22:39 +00:00
|
|
|
node.udpPort = n.second;
|
2014-12-25 23:56:50 +00:00
|
|
|
node.node = n.first.pub();
|
|
|
|
out.nodes.push_back(node);
|
|
|
|
}
|
|
|
|
out.sign(k.sec());
|
|
|
|
|
|
|
|
bytesConstRef packet(out.data.data(), out.data.size());
|
2015-02-07 00:49:35 +00:00
|
|
|
bytesConstRef rlpBytes(packet.cropped(h256::size + Signature::size + 1));
|
2015-01-05 21:01:23 +00:00
|
|
|
Neighbours in = Neighbours::fromBytesConstRef(to, rlpBytes);
|
2014-12-25 23:56:50 +00:00
|
|
|
int count = 0;
|
|
|
|
for (auto n: in.nodes)
|
|
|
|
{
|
2015-04-14 06:22:39 +00:00
|
|
|
BOOST_REQUIRE_EQUAL(testNodes[count].second, n.udpPort);
|
2014-12-25 23:56:50 +00:00
|
|
|
BOOST_REQUIRE_EQUAL(testNodes[count].first.pub(), n.node);
|
|
|
|
BOOST_REQUIRE_EQUAL(sha3(testNodes[count].first.pub()), sha3(n.node));
|
|
|
|
count++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-05 21:01:23 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(test_findnode_neighbours)
|
2014-12-24 13:48:47 +00:00
|
|
|
{
|
|
|
|
// Executing findNode should result in a list which is serialized
|
2015-01-05 21:01:23 +00:00
|
|
|
// into Neighbours packet. Neighbours packet should then be deserialized
|
2014-12-24 13:48:47 +00:00
|
|
|
// into the same list of nearest nodes.
|
|
|
|
}
|
|
|
|
|
2015-01-04 20:01:56 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(test_windows_template)
|
|
|
|
{
|
|
|
|
bi::udp::endpoint ep;
|
|
|
|
PingNode p(ep);
|
|
|
|
}
|
|
|
|
|
2014-12-22 00:51:19 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(kademlia)
|
2014-12-18 07:35:12 +00:00
|
|
|
{
|
2014-12-28 13:24:21 +00:00
|
|
|
// Not yet a 'real' test.
|
|
|
|
TestNodeTableHost node(8);
|
2014-12-23 08:25:36 +00:00
|
|
|
node.start();
|
2015-02-06 19:54:00 +00:00
|
|
|
node.nodeTable->discover(); // ideally, joining with empty node table logs warning we can check for
|
2014-12-23 08:25:36 +00:00
|
|
|
node.setup();
|
2014-12-25 23:56:50 +00:00
|
|
|
node.populate();
|
|
|
|
clog << "NodeTable:\n" << *node.nodeTable.get() << endl;
|
2015-02-09 16:31:04 +00:00
|
|
|
|
2014-12-28 13:24:21 +00:00
|
|
|
node.populateAll();
|
2014-12-24 13:48:47 +00:00
|
|
|
clog << "NodeTable:\n" << *node.nodeTable.get() << endl;
|
2015-02-26 21:05:53 +00:00
|
|
|
|
2015-01-31 01:53:27 +00:00
|
|
|
auto nodes = node.nodeTable->nodes();
|
|
|
|
nodes.sort();
|
2015-02-26 21:05:53 +00:00
|
|
|
|
2014-12-24 13:48:47 +00:00
|
|
|
node.nodeTable->reset();
|
|
|
|
clog << "NodeTable:\n" << *node.nodeTable.get() << endl;
|
|
|
|
|
2014-12-28 13:24:21 +00:00
|
|
|
node.populate(1);
|
2014-12-25 23:56:50 +00:00
|
|
|
clog << "NodeTable:\n" << *node.nodeTable.get() << endl;
|
2015-02-26 21:05:53 +00:00
|
|
|
|
2015-02-06 19:54:00 +00:00
|
|
|
node.nodeTable->discover();
|
2014-12-25 23:56:50 +00:00
|
|
|
this_thread::sleep_for(chrono::milliseconds(2000));
|
|
|
|
clog << "NodeTable:\n" << *node.nodeTable.get() << endl;
|
2015-01-31 01:53:27 +00:00
|
|
|
|
2015-02-06 19:54:00 +00:00
|
|
|
BOOST_REQUIRE_EQUAL(node.nodeTable->count(), 8);
|
2015-02-26 21:05:53 +00:00
|
|
|
|
2015-01-31 01:53:27 +00:00
|
|
|
auto netNodes = node.nodeTable->nodes();
|
|
|
|
netNodes.sort();
|
|
|
|
|
2014-12-22 00:51:19 +00:00
|
|
|
}
|
|
|
|
|
2014-12-24 13:48:47 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(test_udp_once)
|
2014-12-22 00:51:19 +00:00
|
|
|
{
|
|
|
|
UDPDatagram d(bi::udp::endpoint(boost::asio::ip::address::from_string("127.0.0.1"), 30300), bytes({65,65,65,65}));
|
|
|
|
TestUDPSocket a; a.m_socket->connect(); a.start();
|
2014-12-18 07:35:12 +00:00
|
|
|
a.m_socket->send(d);
|
2015-01-06 16:01:17 +00:00
|
|
|
this_thread::sleep_for(chrono::seconds(1));
|
2014-12-18 07:35:12 +00:00
|
|
|
BOOST_REQUIRE_EQUAL(true, a.success);
|
2014-04-08 05:32:00 +00:00
|
|
|
}
|
2014-12-18 07:35:12 +00:00
|
|
|
|
|
|
|
BOOST_AUTO_TEST_SUITE_END()
|
|
|
|
|