-
Notifications
You must be signed in to change notification settings - Fork 0
/
DHTPingReplyMessageTest.cc
55 lines (39 loc) · 1.33 KB
/
DHTPingReplyMessageTest.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
#include "DHTPingReplyMessage.h"
#include <cppunit/extensions/HelperMacros.h>
#include "DHTNode.h"
#include "Exception.h"
#include "util.h"
#include "bencode2.h"
namespace aria2 {
class DHTPingReplyMessageTest:public CppUnit::TestFixture {
CPPUNIT_TEST_SUITE(DHTPingReplyMessageTest);
CPPUNIT_TEST(testGetBencodedMessage);
CPPUNIT_TEST_SUITE_END();
public:
void setUp() {}
void tearDown() {}
void testGetBencodedMessage();
};
CPPUNIT_TEST_SUITE_REGISTRATION(DHTPingReplyMessageTest);
void DHTPingReplyMessageTest::testGetBencodedMessage()
{
std::shared_ptr<DHTNode> localNode(new DHTNode());
std::shared_ptr<DHTNode> remoteNode(new DHTNode());
unsigned char tid[DHT_TRANSACTION_ID_LENGTH];
util::generateRandomData(tid, DHT_TRANSACTION_ID_LENGTH);
std::string transactionID(&tid[0], &tid[DHT_TRANSACTION_ID_LENGTH]);
unsigned char id[DHT_ID_LENGTH];
util::generateRandomData(id, DHT_ID_LENGTH);
DHTPingReplyMessage msg(localNode, remoteNode, id, transactionID);
msg.setVersion("A200");
std::string msgbody = msg.getBencodedMessage();
Dict dict;
dict.put("t", transactionID);
dict.put("v", "A200");
dict.put("y", "r");
auto rDict = Dict::g();
rDict->put("id", String::g(id, DHT_ID_LENGTH));
dict.put("r", std::move(rDict));
CPPUNIT_ASSERT_EQUAL(bencode2::encode(&dict), msgbody);
}
} // namespace aria2