forked from arvidn/libtorrent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_tailqueue.cpp
166 lines (129 loc) · 3.8 KB
/
test_tailqueue.cpp
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
/*
Copyright (c) 2012, Arvid Norberg
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in
the documentation and/or other materials provided with the distribution.
* Neither the name of the author nor the names of its
contributors may be used to endorse or promote products derived
from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
*/
#include "test.hpp"
#include "libtorrent/tailqueue.hpp"
using namespace lt;
struct test_node : tailqueue_node<test_node>
{
explicit test_node(char n) : name(n) {}
char name;
};
void check_chain(tailqueue<test_node>& chain, char const* expected)
{
tailqueue_iterator<test_node> i = chain.iterate();
while (i.get())
{
TEST_EQUAL(static_cast<test_node*>(i.get())->name, *expected);
i.next();
++expected;
}
if (!chain.empty())
{
TEST_CHECK(chain.last() == nullptr || chain.last()->next == nullptr);
}
TEST_EQUAL(expected[0], 0);
}
void free_chain(tailqueue<test_node>& q)
{
test_node* chain = static_cast<test_node*>(q.get_all());
while(chain)
{
test_node* del = static_cast<test_node*>(chain);
chain = static_cast<test_node*>(chain->next);
delete del;
}
}
void build_chain(tailqueue<test_node>& q, char const* str)
{
free_chain(q);
char const* expected = str;
while(*str)
{
q.push_back(new test_node(*str));
++str;
}
check_chain(q, expected);
}
TORRENT_TEST(tailqueue)
{
tailqueue<test_node> t1;
tailqueue<test_node> t2;
// test prepend
build_chain(t1, "abcdef");
build_chain(t2, "12345");
t1.prepend(t2);
check_chain(t1, "12345abcdef");
check_chain(t2, "");
// test append
build_chain(t1, "abcdef");
build_chain(t2, "12345");
t1.append(t2);
check_chain(t1, "abcdef12345");
check_chain(t2, "");
// test swap
build_chain(t1, "abcdef");
build_chain(t2, "12345");
t1.swap(t2);
check_chain(t1, "12345");
check_chain(t2, "abcdef");
// test pop_front
build_chain(t1, "abcdef");
delete t1.pop_front();
check_chain(t1, "bcdef");
// test push_back
build_chain(t1, "abcdef");
t1.push_back(new test_node('1'));
check_chain(t1, "abcdef1");
// test push_front
build_chain(t1, "abcdef");
t1.push_front(new test_node('1'));
check_chain(t1, "1abcdef");
// test size
build_chain(t1, "abcdef");
TEST_EQUAL(t1.size(), 6);
// test empty
free_chain(t1);
TEST_EQUAL(t1.empty(), true);
build_chain(t1, "abcdef");
TEST_EQUAL(t1.empty(), false);
// test get_all
build_chain(t1, "abcdef");
test_node* n = (test_node*)t1.get_all();
TEST_EQUAL(t1.empty(), true);
TEST_EQUAL(t1.size(), 0);
char const* expected = "abcdef";
while (n)
{
test_node* del = n;
TEST_EQUAL(n->name, *expected);
n = (test_node*)n->next;
++expected;
delete del;
}
free_chain(t1);
free_chain(t2);
}