forked from aria2/aria2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBtRejectMessageTest.cc
181 lines (149 loc) · 4.87 KB
/
BtRejectMessageTest.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
#include "BtRejectMessage.h"
#include <cstring>
#include <cppunit/extensions/HelperMacros.h>
#include "bittorrent_helper.h"
#include "Peer.h"
#include "FileEntry.h"
#include "MockBtMessageDispatcher.h"
namespace aria2 {
class BtRejectMessageTest : public CppUnit::TestFixture {
CPPUNIT_TEST_SUITE(BtRejectMessageTest);
CPPUNIT_TEST(testCreate);
CPPUNIT_TEST(testCreateMessage);
CPPUNIT_TEST(testDoReceivedAction);
CPPUNIT_TEST(testDoReceivedActionNoMatch);
CPPUNIT_TEST(testDoReceivedActionFastExtensionDisabled);
CPPUNIT_TEST(testToString);
CPPUNIT_TEST_SUITE_END();
private:
public:
void testCreate();
void testCreateMessage();
void testDoReceivedAction();
void testDoReceivedActionNoMatch();
void testDoReceivedActionFastExtensionDisabled();
void testToString();
class MockBtMessageDispatcher2 : public MockBtMessageDispatcher {
public:
std::unique_ptr<RequestSlot> slot;
void setRequestSlot(std::unique_ptr<RequestSlot> s) { slot = std::move(s); }
virtual const RequestSlot*
getOutstandingRequest(size_t index, int32_t begin,
int32_t length) CXX11_OVERRIDE
{
if (slot && slot->getIndex() == index && slot->getBegin() == begin &&
slot->getLength() == length) {
return slot.get();
}
else {
return nullptr;
}
}
virtual void removeOutstandingRequest(const RequestSlot* s) CXX11_OVERRIDE
{
if (slot->getIndex() == s->getIndex() &&
slot->getBegin() == s->getBegin() &&
slot->getLength() == s->getLength()) {
slot.reset();
}
}
};
typedef std::shared_ptr<MockBtMessageDispatcher2>
MockBtMessageDispatcher2Handle;
std::shared_ptr<Peer> peer;
std::shared_ptr<MockBtMessageDispatcher2> dispatcher;
std::shared_ptr<BtRejectMessage> msg;
void setUp()
{
peer.reset(new Peer("host", 6969));
peer->allocateSessionResource(1_k, 1_m);
dispatcher.reset(new MockBtMessageDispatcher2());
msg.reset(new BtRejectMessage());
msg->setPeer(peer);
msg->setIndex(1);
msg->setBegin(16);
msg->setLength(32);
msg->setBtMessageDispatcher(dispatcher.get());
}
};
CPPUNIT_TEST_SUITE_REGISTRATION(BtRejectMessageTest);
void BtRejectMessageTest::testCreate()
{
unsigned char msg[17];
bittorrent::createPeerMessageString(msg, sizeof(msg), 13, 16);
bittorrent::setIntParam(&msg[5], 12345);
bittorrent::setIntParam(&msg[9], 256);
bittorrent::setIntParam(&msg[13], 1_k);
std::shared_ptr<BtRejectMessage> pm(BtRejectMessage::create(&msg[4], 13));
CPPUNIT_ASSERT_EQUAL((uint8_t)16, pm->getId());
CPPUNIT_ASSERT_EQUAL((size_t)12345, pm->getIndex());
CPPUNIT_ASSERT_EQUAL(256, pm->getBegin());
CPPUNIT_ASSERT_EQUAL((int32_t)1_k, pm->getLength());
// case: payload size is wrong
try {
unsigned char msg[18];
bittorrent::createPeerMessageString(msg, sizeof(msg), 14, 16);
BtRejectMessage::create(&msg[4], 14);
CPPUNIT_FAIL("exception must be thrown.");
}
catch (...) {
}
// case: id is wrong
try {
unsigned char msg[17];
bittorrent::createPeerMessageString(msg, sizeof(msg), 13, 17);
BtRejectMessage::create(&msg[4], 13);
CPPUNIT_FAIL("exception must be thrown.");
}
catch (...) {
}
}
void BtRejectMessageTest::testCreateMessage()
{
BtRejectMessage msg;
msg.setIndex(12345);
msg.setBegin(256);
msg.setLength(1_k);
unsigned char data[17];
bittorrent::createPeerMessageString(data, sizeof(data), 13, 16);
bittorrent::setIntParam(&data[5], 12345);
bittorrent::setIntParam(&data[9], 256);
bittorrent::setIntParam(&data[13], 1_k);
auto rawmsg = msg.createMessage();
CPPUNIT_ASSERT_EQUAL((size_t)17, rawmsg.size());
CPPUNIT_ASSERT(std::equal(std::begin(rawmsg), std::end(rawmsg), data));
}
void BtRejectMessageTest::testDoReceivedAction()
{
peer->setFastExtensionEnabled(true);
dispatcher->setRequestSlot(make_unique<RequestSlot>(1, 16, 32, 2));
CPPUNIT_ASSERT(dispatcher->getOutstandingRequest(1, 16, 32));
msg->doReceivedAction();
CPPUNIT_ASSERT(!dispatcher->getOutstandingRequest(1, 16, 32));
}
void BtRejectMessageTest::testDoReceivedActionNoMatch()
{
peer->setFastExtensionEnabled(true);
dispatcher->setRequestSlot(make_unique<RequestSlot>(2, 16, 32, 2));
CPPUNIT_ASSERT(dispatcher->getOutstandingRequest(2, 16, 32));
msg->doReceivedAction();
CPPUNIT_ASSERT(dispatcher->getOutstandingRequest(2, 16, 32));
}
void BtRejectMessageTest::testDoReceivedActionFastExtensionDisabled()
{
RequestSlot slot(1, 16, 32, 2);
dispatcher->setRequestSlot(make_unique<RequestSlot>(1, 16, 32, 2));
CPPUNIT_ASSERT(dispatcher->getOutstandingRequest(1, 16, 32));
try {
msg->doReceivedAction();
CPPUNIT_FAIL("exception must be thrown.");
}
catch (...) {
}
}
void BtRejectMessageTest::testToString()
{
CPPUNIT_ASSERT_EQUAL(std::string("reject index=1, begin=16, length=32"),
msg->toString());
}
} // namespace aria2