-
Notifications
You must be signed in to change notification settings - Fork 0
/
DHTConnectionImplTest.cc
59 lines (45 loc) · 1.54 KB
/
DHTConnectionImplTest.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#include "DHTConnectionImpl.h"
#include <iostream>
#include <cppunit/extensions/HelperMacros.h>
#include "Exception.h"
#include "SocketCore.h"
#include "A2STR.h"
namespace aria2 {
class DHTConnectionImplTest:public CppUnit::TestFixture {
CPPUNIT_TEST_SUITE(DHTConnectionImplTest);
CPPUNIT_TEST(testWriteAndReadData);
CPPUNIT_TEST_SUITE_END();
public:
void setUp() {}
void tearDown() {}
void testWriteAndReadData();
};
CPPUNIT_TEST_SUITE_REGISTRATION(DHTConnectionImplTest);
void DHTConnectionImplTest::testWriteAndReadData()
{
try {
DHTConnectionImpl con1(AF_INET);
uint16_t con1port = 0;
CPPUNIT_ASSERT(con1.bind(con1port, A2STR::NIL));
DHTConnectionImpl con2(AF_INET);
uint16_t con2port = 0;
CPPUNIT_ASSERT(con2.bind(con2port, A2STR::NIL));
std::string message1 = "hello world.";
// hostname should be "localhost", not 127.0.0.1. Test failed on Mac OSX10.5
con1.sendMessage(reinterpret_cast<const unsigned char*>(message1.c_str()),
message1.size(), "localhost", con2port);
unsigned char readbuffer[100];
std::string remoteHost;
uint16_t remotePort;
{
while(!con2.getSocket()->isReadable(0));
ssize_t rlength = con2.receiveMessage(readbuffer, sizeof(readbuffer), remoteHost, remotePort);
CPPUNIT_ASSERT_EQUAL((ssize_t)message1.size(), rlength);
CPPUNIT_ASSERT_EQUAL(message1,
std::string(&readbuffer[0], &readbuffer[rlength]));
}
} catch(Exception& e) {
CPPUNIT_FAIL(e.stackTrace());
}
}
} // namespace aria2