aboutsummaryrefslogtreecommitdiff
path: root/EASTL/test/source/TestIntrusiveList.cpp
blob: 60b2378212292872bcf1f45297db66f6596f0218 (plain)
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
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
/////////////////////////////////////////////////////////////////////////////
// Copyright (c) Electronic Arts Inc. All rights reserved.
/////////////////////////////////////////////////////////////////////////////


#include "EASTLTest.h"
#include <EASTL/intrusive_list.h>
#include <EABase/eabase.h>

EA_DISABLE_ALL_VC_WARNINGS()
#include <stdio.h>
#include <stdarg.h>
#include <stddef.h>

#ifndef EA_COMPILER_NO_STANDARD_CPP_LIBRARY
	#include <string>
#endif
EA_RESTORE_ALL_VC_WARNINGS()

using namespace eastl;


namespace
{

	/// IntNode
	///
	/// Test intrusive_list node.
	///
	struct IntNode : public eastl::intrusive_list_node
	{
		int mX;

		IntNode(int x = 0)
			: mX(x) { }

		operator int() const
			{ return mX; }
	};


	/// ListInit
	///
	/// Utility class for setting up a list.
	///
	class ListInit
	{
	public:
		ListInit(intrusive_list<IntNode>& container, IntNode* pNodeArray)
			: mpContainer(&container), mpNodeArray(pNodeArray)
		{
			mpContainer->clear();
		}

		ListInit& operator+=(int x)
		{
			mpNodeArray->mX = x;
			mpContainer->push_back(*mpNodeArray++);
			return *this;
		}

		ListInit& operator,(int x)
		{
			mpNodeArray->mX = x;
			mpContainer->push_back(*mpNodeArray++);
			return *this;
		}

	protected:
		intrusive_list<IntNode>* mpContainer;
		IntNode*                 mpNodeArray;
	};

} // namespace




// Template instantations.
// These tell the compiler to compile all the functions for the given class.
template class eastl::intrusive_list<IntNode>;



int TestIntrusiveList()
{
	int nErrorCount = 0;
	int i;

	{
		// Verify that intrusive_list_node is a POD, at least when EASTL_VALIDATE_INTRUSIVE_LIST is disabled.
		#if !EASTL_VALIDATE_INTRUSIVE_LIST
			// is_pod doesn't currently detect structs as PODs, even though it should.
			// This is due to limitations in C++.
			// VERIFY(eastl::is_pod<eastl::intrusive_list_node>::value);

			const size_t offset = offsetof(intrusive_list_node, mpPrev);
			VERIFY(offset == sizeof(intrusive_list_node*));
		#endif
	}

	{
		IntNode nodes[20];

		intrusive_list<IntNode> ilist;

		// Enforce that the intrusive_list copy ctor is visible. If it is not, 
		// then the class is not a POD type as it is supposed to be.
		delete new intrusive_list<IntNode>(ilist);

		#ifndef __GNUC__ // GCC warns on this, though strictly specaking it is allowed to.
			// Enforce that offsetof() can be used with an intrusive_list in a struct;
			// it requires a POD type. Some compilers will flag warnings or even errors
			// when this is violated.
			struct Test {
				intrusive_list<IntNode> m;
			};
			(void)offsetof(Test, m);
		#endif

		// begin / end
		VERIFY(VerifySequence(ilist.begin(), ilist.end(), int(), "ctor()", -1));


		// push_back
		ListInit(ilist, nodes) += 0, 1, 2, 3, 4, 5, 6, 7, 8, 9;
		VERIFY(VerifySequence(ilist.begin(), ilist.end(), int(), "push_back()", 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, -1));


		// iterator / begin
		intrusive_list<IntNode>::iterator it = ilist.begin();
		VERIFY(it->mX == 0);
		++it;
		VERIFY(it->mX == 1);
		++it;
		VERIFY(it->mX == 2);
		++it;
		VERIFY(it->mX == 3);


		// const_iterator / begin
		const intrusive_list<IntNode>           cilist;
		intrusive_list<IntNode>::const_iterator cit;
		for(cit = cilist.begin(); cit != cilist.end(); ++cit)
			VERIFY(cit == cilist.end()); // This is guaranteed to be false.


		// reverse_iterator / rbegin
		intrusive_list<IntNode>::reverse_iterator itr = ilist.rbegin();
		VERIFY(itr->mX == 9);
		++itr;
		VERIFY(itr->mX == 8);
		++itr;
		VERIFY(itr->mX == 7);
		++itr;
		VERIFY(itr->mX == 6);


		// iterator++/--
		{
			intrusive_list<IntNode>::iterator it1(ilist.begin());
			intrusive_list<IntNode>::iterator it2(ilist.begin());

			++it1;
			++it2;
			if ((it1 != it2++) || (++it1 != it2))
				VERIFY(!"[iterator::increment] fail\n");

			if ((it1 != it2--) || (--it1 != it2))
				VERIFY(!"[iterator::decrement] fail\n");
		}


		// clear / empty
		VERIFY(!ilist.empty());

		ilist.clear();
		VERIFY(VerifySequence(ilist.begin(), ilist.end(), int(), "clear()", -1));
		VERIFY(ilist.empty());


		// splice
		ListInit(ilist, nodes) += 0, 1, 2, 3, 4, 5, 6, 7, 8, 9;

		ilist.splice(++ilist.begin(), ilist, --ilist.end());
		VERIFY(VerifySequence(ilist.begin(), ilist.end(), int(), "splice(single)", 0, 9, 1, 2, 3, 4, 5, 6, 7, 8, -1));

		intrusive_list<IntNode> ilist2;
		ListInit(ilist2, nodes+10) += 10, 11, 12, 13, 14, 15, 16, 17, 18, 19;

		ilist.splice(++++ilist.begin(), ilist2);
		VERIFY(VerifySequence(ilist2.begin(), ilist2.end(), int(), "splice(whole)", -1));
		VERIFY(VerifySequence(ilist.begin(), ilist.end(), int(), "splice(whole)", 0, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, -1));

		ilist.splice(ilist.begin(), ilist, ++++ilist.begin(), ----ilist.end());
		VERIFY(VerifySequence(ilist.begin(), ilist.end(), int(), "splice(range)", 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 3, 4, 5, 6, 0, 9, 7, 8, -1));

		ilist.clear();
		ilist.swap(ilist2);
		VERIFY(VerifySequence(ilist.begin(), ilist.end(), int(), "swap(empty)", -1));
		VERIFY(VerifySequence(ilist2.begin(), ilist2.end(), int(), "swap(empty)", -1));

		ilist2.push_back(nodes[0]);
		ilist.splice(ilist.begin(), ilist2);
		VERIFY(VerifySequence(ilist.begin(), ilist.end(), int(), "splice(single)", 0, -1));
		VERIFY(VerifySequence(ilist2.begin(), ilist2.end(), int(), "splice(single)", -1));


		// splice(single) -- evil case (splice at or right after current position)
		ListInit(ilist, nodes) += 0, 1, 2, 3, 4;
		ilist.splice(++++ilist.begin(), *++++ilist.begin());
		VERIFY(VerifySequence(ilist.begin(), ilist.end(), int(), "splice(single)", 0, 1, 2, 3, 4, -1));
		ilist.splice(++++++ilist.begin(), *++++ilist.begin());
		VERIFY(VerifySequence(ilist.begin(), ilist.end(), int(), "splice(single)", 0, 1, 2, 3, 4, -1));


		// splice(range) -- evil case (splice right after current position)
		ListInit(ilist, nodes) += 0, 1, 2, 3, 4;
		ilist.splice(++++ilist.begin(), ilist, ++ilist.begin(), ++++ilist.begin());
		VERIFY(VerifySequence(ilist.begin(), ilist.end(), int(), "splice(range)", 0, 1, 2, 3, 4, -1));


		// push_front / push_back
		ilist.clear();
		ilist2.clear();
		for(i = 4; i >= 0; --i)
			ilist.push_front(nodes[i]);
		for(i = 5; i < 10; ++i)
			ilist2.push_back(nodes[i]);

		VERIFY(VerifySequence(ilist.begin(), ilist.end(), int(), "push_front()", 0, 1, 2, 3, 4, -1));
		VERIFY(VerifySequence(ilist2.begin(), ilist2.end(), int(), "push_back()", 5, 6, 7, 8, 9, -1));

		for(i = 4; i >= 0; --i)
		{
			ilist.pop_front();
			ilist2.pop_back();
		}

		VERIFY(ilist.empty() && ilist2.empty());
		VERIFY(VerifySequence(ilist.begin(), ilist.end(), int(), "pop_front()", -1));
		VERIFY(VerifySequence(ilist2.begin(), ilist2.end(), int(), "pop_back()", -1));


		// contains / locate
		for(i = 0; i < 5; ++i)
			ilist.push_back(nodes[i]);

		VERIFY( ilist.contains(nodes[2]));
		VERIFY(!ilist.contains(nodes[7]));

		it = ilist.locate(nodes[3]);
		VERIFY(it->mX == 3);

		it = ilist.locate(nodes[8]);
		VERIFY(it == ilist.end());


		// reverse
		ilist.reverse();
		VERIFY(VerifySequence(ilist.begin(), ilist.end(), int(), "push_front()", 4, 3, 2, 1, 0, -1));


		// validate / validate_iterator
		VERIFY(ilist.validate());
		it = ilist.locate(nodes[3]);
		VERIFY((ilist.validate_iterator(it) & (isf_valid | isf_can_dereference)) != 0);
		VERIFY( ilist.validate_iterator(intrusive_list<IntNode>::iterator(NULL)) == isf_none);


		// swap()
		ilist.swap(ilist2);
		VERIFY(VerifySequence(ilist.begin(), ilist.end(), int(), "swap()", -1));
		VERIFY(VerifySequence(ilist2.begin(), ilist2.end(), int(), "swap()", 4, 3, 2, 1, 0, -1));


		// erase()
		ListInit(ilist2, nodes) += 0, 1, 2, 3, 4;
		ListInit(ilist, nodes+5) += 5, 6, 7, 8, 9;
		ilist.erase(++++ilist.begin());
		VERIFY(VerifySequence(ilist.begin(), ilist.end(), int(), "erase(single)", 5, 6, 8, 9, -1));

		ilist.erase(ilist.begin(), ilist.end());
		VERIFY(VerifySequence(ilist.begin(), ilist.end(), int(), "erase(all)", -1));

		ilist2.erase(++ilist2.begin(), ----ilist2.end());
		VERIFY(VerifySequence(ilist2.begin(), ilist2.end(), int(), "erase(range)", 0, 3, 4, -1));


		// size
		VERIFY(ilist2.size() == 3);


		// pop_front / pop_back
		ilist2.pop_front();
		VERIFY(VerifySequence(ilist2.begin(), ilist2.end(), int(), "pop_front()", 3, 4, -1));

		ilist2.pop_back();
		VERIFY(VerifySequence(ilist2.begin(), ilist2.end(), int(), "pop_back()", 3, -1));
	}


	{
		// Test copy construction and assignment.
		// The following *should* not compile.

		intrusive_list<IntNode> ilist1;
		intrusive_list<IntNode> ilist2(ilist1);
		ilist1 = ilist2;
	}


	{
		// void sort()
		// void sort(Compare compare)

		const int kSize = 10;
		IntNode nodes[kSize];

		intrusive_list<IntNode> listEmpty;
		listEmpty.sort();
		VERIFY(VerifySequence(listEmpty.begin(), listEmpty.end(), int(), "list::sort", -1));

		intrusive_list<IntNode> list1;
		ListInit(list1, nodes) += 1;
		list1.sort();
		VERIFY(VerifySequence(list1.begin(), list1.end(), int(), "list::sort", 1, -1));
		list1.clear();

		intrusive_list<IntNode> list4;
		ListInit(list4, nodes) += 1, 9, 2, 3;
		list4.sort();
		VERIFY(VerifySequence(list4.begin(), list4.end(), int(), "list::sort", 1, 2, 3, 9, -1));
		list4.clear();

		intrusive_list<IntNode> listA;
		ListInit(listA, nodes) += 1, 9, 2, 3, 5, 7, 4, 6, 8, 0;
		listA.sort();
		VERIFY(VerifySequence(listA.begin(), listA.end(), int(), "list::sort", 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, -1));
		listA.clear();

		intrusive_list<IntNode> listB;
		ListInit(listB, nodes) += 1, 9, 2, 3, 5, 7, 4, 6, 8, 0;
		listB.sort(eastl::less<int>());
		VERIFY(VerifySequence(listB.begin(), listB.end(), int(), "list::sort", 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, -1));
		listB.clear();
	}


	{
		// void merge(this_type& x);
		// void merge(this_type& x, Compare compare);

		const int kSize = 8;
		IntNode nodesA[kSize];
		IntNode nodesB[kSize];

		intrusive_list<IntNode> listA;
		ListInit(listA, nodesA) += 1, 2, 3, 4, 4, 5, 9, 9;

		intrusive_list<IntNode> listB;
		ListInit(listB, nodesB) += 1, 2, 3, 4, 4, 5, 9, 9;

		listA.merge(listB);
		VERIFY(VerifySequence(listA.begin(), listA.end(), int(), "list::merge", 1, 1, 2, 2, 3, 3, 4, 4, 4, 4, 5, 5, 9, 9, 9, 9, -1));
		VERIFY(VerifySequence(listB.begin(), listB.end(), int(), "list::merge", -1));
	}


	{
		// void unique();
		// void unique(BinaryPredicate);

		const int kSize = 8;
		IntNode nodesA[kSize];
		IntNode nodesB[kSize];

		intrusive_list<IntNode> listA;
		ListInit(listA, nodesA) += 1, 2, 3, 4, 4, 5, 9, 9;
		listA.unique();
		VERIFY(VerifySequence(listA.begin(), listA.end(), int(), "list::unique", 1, 2, 3, 4, 5, 9, -1));

		intrusive_list<IntNode> listB;
		ListInit(listB, nodesB) += 1, 2, 3, 4, 4, 5, 9, 9;
		listB.unique(eastl::equal_to<int>());
		VERIFY(VerifySequence(listA.begin(), listA.end(), int(), "list::unique", 1, 2, 3, 4, 5, 9, -1));
	}


	return nErrorCount;
}