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
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
|
/* testcollection.vala
*
* Copyright (C) 2008 Jürg Billeter
* Copyright (C) 2009 Didier Villevalois, Julien Peeters
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
* Author:
* Jürg Billeter <j@bitron.ch>
* Didier 'Ptitjes' Villevalois <ptitjes@free.fr>
* Julien Peeters <contact@julienpeeters.fr>
*/
using Gee;
public abstract class CollectionTests : Gee.TestCase {
public CollectionTests (string name) {
base (name);
add_test ("[Collection] type correctness", test_type_correctness);
add_test ("[Collection] iterator returns all elements once",
test_iterator_returns_all_elements_once);
add_test ("[Collection] mutable iterator", test_mutable_iterator);
add_test ("[Collection] contains, size and is_empty",
test_contains_size_and_is_empty);
add_test ("[Collection] add and remove", test_add_remove);
add_test ("[Collection] clear", test_clear);
add_test ("[Collection] add_all", test_add_all);
add_test ("[Collection] contains_all", test_contains_all);
add_test ("[Collection] remove_all", test_remove_all);
add_test ("[Collection] retain_all", test_retain_all);
add_test ("[Collection] to_array", test_to_array);
add_test ("[Collection] GObject properties", test_gobject_properties);
}
protected Collection<string> test_collection;
public void test_type_correctness () {
// Check the collection exists
assert (test_collection != null);
// Check the advertised element type
assert (test_collection.element_type == typeof (string));
}
public void test_iterator_returns_all_elements_once () {
// Check the collection exists
assert (test_collection != null);
bool has_next;
// Check with an empty collection
Iterator<string> iterator = test_collection.iterator ();
assert (! iterator.has_next ());
assert (! iterator.next ());
assert (! iterator.first ());
// Check for some elements in the collection
assert (test_collection.add ("one"));
assert (test_collection.add ("two"));
assert (test_collection.add ("three"));
bool one_found = false;
bool two_found = false;
bool three_found = false;
bool one_found_once = true;
bool two_found_once = true;
bool three_found_once = true;
iterator = test_collection.iterator ();
while (true) {
has_next = iterator.has_next ();
assert (has_next == iterator.next ());
if (! has_next) {
break;
}
string element = iterator.get ();
if (element == "one") {
if (one_found) {
one_found_once = false;
}
one_found = true;
} else if (element == "two") {
if (two_found) {
two_found_once = false;
}
two_found = true;
} else if (element == "three") {
if (three_found) {
three_found_once = false;
}
three_found = true;
}
}
has_next = iterator.has_next ();
assert (! has_next);
assert (has_next == iterator.next ());
assert (one_found);
assert (one_found_once);
assert (two_found);
assert (two_found_once);
assert (three_found);
assert (three_found_once);
// Do it twice to check first ()
assert (iterator.first ());
one_found = false;
two_found = false;
three_found = false;
one_found_once = true;
two_found_once = true;
three_found_once = true;
while (true) {
string element = iterator.get ();
if (element == "one") {
if (one_found) {
one_found_once = false;
}
one_found = true;
} else if (element == "two") {
if (two_found) {
two_found_once = false;
}
two_found = true;
} else if (element == "three") {
if (three_found) {
three_found_once = false;
}
three_found = true;
}
has_next = iterator.has_next ();
assert (has_next == iterator.next ());
if (! has_next) {
break;
}
}
has_next = iterator.has_next ();
assert (! has_next);
assert (has_next == iterator.next ());
assert (one_found);
assert (one_found_once);
assert (two_found);
assert (two_found_once);
assert (three_found);
assert (three_found_once);
}
public void test_mutable_iterator () {
// Check the collection exists
assert (test_collection != null);
bool has_next;
// Check with an empty collection
Iterator<string> iterator = test_collection.iterator ();
// ...
// Check for some elements in the collection and remove one
assert (test_collection.add ("one"));
assert (test_collection.add ("two"));
assert (test_collection.add ("three"));
bool one_found = false;
bool two_found = false;
bool three_found = false;
bool one_found_once = true;
bool two_found_once = true;
bool three_found_once = true;
iterator = test_collection.iterator ();
while (true) {
has_next = iterator.has_next ();
assert (has_next == iterator.next ());
if (! has_next) {
break;
}
string element = iterator.get ();
if (element == "one") {
if (one_found) {
one_found_once = false;
}
one_found = true;
} else if (element == "two") {
if (two_found) {
two_found_once = false;
}
two_found = true;
// Remove this element
iterator.remove ();
} else if (element == "three") {
if (three_found) {
three_found_once = false;
}
three_found = true;
}
}
has_next = iterator.has_next ();
assert (! has_next);
assert (has_next == iterator.next ());
assert (one_found);
assert (one_found_once);
assert (two_found);
assert (two_found_once);
assert (three_found);
assert (three_found_once);
// Check after removal
assert (iterator.first ());
one_found = false;
two_found = false;
three_found = false;
one_found_once = true;
two_found_once = true;
three_found_once = true;
while (true) {
string element = iterator.get ();
if (element == "one") {
if (one_found) {
one_found_once = false;
}
one_found = true;
} else if (element == "two") {
two_found = true;
} else if (element == "three") {
if (three_found) {
three_found_once = false;
}
three_found = true;
}
has_next = iterator.has_next ();
assert (has_next == iterator.next ());
if (! has_next) {
break;
}
}
has_next = iterator.has_next ();
assert (! has_next);
assert (has_next == iterator.next ());
assert (one_found);
assert (one_found_once);
assert (!two_found);
assert (three_found);
assert (three_found_once);
}
public void test_contains_size_and_is_empty () {
// Check the collection exists
assert (test_collection != null);
// Check the collection is initially empty
assert (! test_collection.contains ("one"));
assert (! test_collection.contains ("two"));
assert (! test_collection.contains ("three"));
assert (test_collection.size == 0);
assert (test_collection.is_empty);
// Add an element
assert (test_collection.add ("one"));
assert (test_collection.contains ("one"));
assert (! test_collection.contains ("two"));
assert (! test_collection.contains ("three"));
assert (test_collection.size == 1);
assert (! test_collection.is_empty);
// Remove the added element
assert (test_collection.remove ("one"));
assert (! test_collection.contains ("one"));
assert (! test_collection.contains ("two"));
assert (! test_collection.contains ("three"));
assert (test_collection.size == 0);
assert (test_collection.is_empty);
// Add more elements
assert (test_collection.add ("one"));
assert (test_collection.contains ("one"));
assert (! test_collection.contains ("two"));
assert (! test_collection.contains ("three"));
assert (test_collection.size == 1);
assert (! test_collection.is_empty);
assert (test_collection.add ("two"));
assert (test_collection.contains ("one"));
assert (test_collection.contains ("two"));
assert (! test_collection.contains ("three"));
assert (test_collection.size == 2);
assert (! test_collection.is_empty);
assert (test_collection.add ("three"));
assert (test_collection.contains ("one"));
assert (test_collection.contains ("two"));
assert (test_collection.contains ("three"));
assert (test_collection.size == 3);
assert (! test_collection.is_empty);
// Remove one element
assert (test_collection.remove ("two"));
assert (test_collection.contains ("one"));
assert (! test_collection.contains ("two"));
assert (test_collection.contains ("three"));
assert (test_collection.size == 2);
assert (! test_collection.is_empty);
// Remove the same element again
assert (! test_collection.remove ("two"));
assert (test_collection.contains ("one"));
assert (! test_collection.contains ("two"));
assert (test_collection.contains ("three"));
assert (test_collection.size == 2);
assert (! test_collection.is_empty);
// Remove all elements
test_collection.clear ();
assert (! test_collection.contains ("one"));
assert (! test_collection.contains ("two"));
assert (! test_collection.contains ("three"));
assert (test_collection.size == 0);
assert (test_collection.is_empty);
}
public void test_add_remove () {
// Check the collection exists
assert (test_collection != null);
string[] to_add = {
"one", "two", "three", "four", "five", "six", "seven", "eight",
"nine", "ten", "eleven", "twelve", "thirteen", "fourteen",
"fifteen", "sixteen", "seventeen", "eighteen", "nineteen", "twenty",
"twenty one", "twenty two", "twenty three", "twenty four",
"twenty five", "twenty six", "twenty seven", "twenty eight",
"twenty nine", "thirty", "thirty one", "thirty two", "thirty four",
"thirty five", "thirty six", "thirty seven", "thirty eight",
"thirty nine", "fourty"
};
var expected_size = 0;
foreach (var a in to_add) {
assert (!test_collection.contains (a));
assert (test_collection.size == expected_size++);
assert (test_collection.add (a));
assert (test_collection.contains (a));
}
assert (test_collection.size == to_add.length);
foreach (var a in to_add) {
assert (test_collection.contains (a));
}
foreach (var a in to_add) {
assert (test_collection.contains (a));
assert (test_collection.size == expected_size--);
assert (test_collection.remove (a));
assert (!test_collection.contains (a));
}
assert (test_collection.size == 0);
}
public void test_clear () {
// Check the collection exists
assert (test_collection != null);
string[] to_add = {
"one", "two", "three", "four", "five", "six", "seven", "eight",
"nine", "ten", "eleven", "twelve", "thirteen", "fourteen",
"fifteen", "sixteen", "seventeen", "eighteen", "nineteen", "twenty",
"twenty one", "twenty two", "twenty three", "twenty four",
"twenty five", "twenty six", "twenty seven", "twenty eight",
"twenty nine", "thirty", "thirty one", "thirty two", "thirty four",
"thirty five", "thirty six", "thirty seven", "thirty eight",
"thirty nine", "fourty"
};
var expected_size = 0;
foreach (var a in to_add) {
assert (!test_collection.contains (a));
assert (test_collection.size == expected_size++);
assert (test_collection.add (a));
assert (test_collection.contains (a));
}
assert (test_collection.size == to_add.length);
test_collection.clear ();
assert (test_collection.size == 0);
Iterator<string> iter = test_collection.iterator ();
assert (iter != null);
assert (!iter.has_next ());
}
public void test_add_all () {
// Check the collection exists
assert (test_collection != null);
// Creating a dummy collection
var dummy = new ArrayList<string> ();
// Check when the test collection is initially empty and
// dummy collection is empty
assert (! test_collection.add_all (dummy));
assert (test_collection.is_empty);
assert (dummy.is_empty);
// Check when test collection is not empty but dummy is
assert (test_collection.add ("hello"));
assert (! test_collection.add_all (dummy));
assert (test_collection.size == 1);
assert (test_collection.contains ("hello"));
test_collection.clear ();
dummy.clear ();
// Check when the test collection is initially empty and
// dummy collection is not empty
assert (dummy.add ("hello1"));
assert (dummy.add ("hello2"));
assert (dummy.add ("hello3"));
assert (test_collection.add_all (dummy));
assert (test_collection.size == 3);
assert (test_collection.contains ("hello1"));
assert (test_collection.contains ("hello2"));
assert (test_collection.contains ("hello3"));
assert (dummy.size == 3);
assert (dummy.contains ("hello1"));
assert (dummy.contains ("hello2"));
assert (dummy.contains ("hello3"));
test_collection.clear ();
dummy.clear ();
// Check when the test collection is not empty and both
// collections does not intersect
assert (dummy.add ("hello1"));
assert (dummy.add ("hello2"));
assert (dummy.add ("hello3"));
assert (test_collection.add ("hello"));
assert (test_collection.add_all (dummy));
assert (test_collection.size == 4);
assert (test_collection.contains ("hello"));
assert (test_collection.contains ("hello1"));
assert (test_collection.contains ("hello2"));
assert (test_collection.contains ("hello3"));
assert (dummy.size == 3);
assert (dummy.contains ("hello1"));
assert (dummy.contains ("hello2"));
assert (dummy.contains ("hello3"));
test_collection.clear ();
dummy.clear ();
// Check when the test collection is not empty and both
// collection intersect
assert (dummy.add ("hello1"));
assert (dummy.add ("hello2"));
assert (dummy.add ("hello3"));
assert (test_collection.add ("hello1"));
assert (test_collection.add_all (dummy));
// We can only assert the result is greater or equal than 3
// as we do not assume duplicates
assert (test_collection.size >= 3);
assert (test_collection.contains ("hello1"));
assert (test_collection.contains ("hello2"));
assert (test_collection.contains ("hello3"));
assert (dummy.size == 3);
assert (dummy.contains ("hello1"));
assert (dummy.contains ("hello2"));
assert (dummy.contains ("hello3"));
}
public void test_contains_all () {
// Check the collection exists
assert (test_collection != null);
// Creating a dummy collection
var dummy = new ArrayList<string> ();
assert (dummy.add ("hello1"));
assert (dummy.add ("hello2"));
assert (dummy.add ("hello3"));
// Check when the test collection is initially empty
assert (test_collection.is_empty);
assert (! test_collection.contains_all (dummy));
// Check when the test collection is not empty and both
// collections does not intersect
assert (test_collection.add ("hello4"));
assert (test_collection.add ("hello5"));
assert (! test_collection.contains_all (dummy));
// Check when the test collection is not empty and both
// collections intersect but are not equal
assert (test_collection.add ("hello1"));
assert (test_collection.add ("hello2"));
assert (! test_collection.contains_all (dummy));
// Check when the test collection is not empty and the
// dummy collection is contained in the test one
assert (test_collection.add ("hello3"));
assert (test_collection.contains_all (dummy));
assert (! dummy.contains_all (test_collection));
}
public void test_remove_all () {
// Check the collection exists
assert (test_collection != null);
// Creating a dummy collection
var dummy = new ArrayList<string> ();
// Check when both collection are intially empty
assert (! test_collection.remove_all (dummy));
assert (test_collection.is_empty);
assert (dummy.is_empty);
// Check when the test collection is initially empty and
// dummy collection is not empty
assert (dummy.add ("hello1"));
assert (dummy.add ("hello2"));
assert (dummy.add ("hello3"));
assert (! test_collection.remove_all (dummy));
assert (test_collection.is_empty);
test_collection.clear ();
dummy.clear ();
// Check when the test collection is not empty and both
// collections does not intersect
assert (dummy.add ("hello1"));
assert (dummy.add ("hello2"));
assert (dummy.add ("hello3"));
assert (test_collection.add ("hello4"));
assert (test_collection.add ("hello5"));
assert (! test_collection.remove_all (dummy));
assert (test_collection.size == 2);
assert (dummy.size == 3);
test_collection.clear ();
dummy.clear ();
// Check when the test collection is not empty and both
// collections intersect
assert (dummy.add ("hello1"));
assert (dummy.add ("hello2"));
assert (dummy.add ("hello3"));
assert (test_collection.add ("hello1"));
assert (test_collection.add ("hello2"));
assert (test_collection.add ("hello3"));
assert (test_collection.remove_all (dummy));
assert (test_collection.is_empty);
assert (dummy.size == 3);
test_collection.clear ();
dummy.clear ();
}
public void test_retain_all () {
// Check the collection exists
assert (test_collection != null);
// Creating a dummy collection
var dummy = new ArrayList<string> ();
// Check when the test collection is initially empty and
// dummy collection is empty
assert (! test_collection.retain_all (dummy));
assert (test_collection.is_empty);
assert (dummy.is_empty);
// Check when the test collection is not empty and
// the dummy one is
assert (test_collection.add ("hello1"));
assert (test_collection.add ("hello2"));
assert (test_collection.retain_all (dummy));
assert (test_collection.is_empty);
assert (dummy.is_empty);
test_collection.clear ();
dummy.clear ();
// Check when the test collection is initially empty and
// dummy collection is not empty
assert (dummy.add ("hello1"));
assert (dummy.add ("hello2"));
assert (dummy.add ("hello3"));
assert (! test_collection.retain_all (dummy));
assert (test_collection.is_empty);
assert (dummy.size == 3);
assert (dummy.contains ("hello1"));
assert (dummy.contains ("hello2"));
assert (dummy.contains ("hello3"));
test_collection.clear ();
dummy.clear ();
// Check when the test collection is not empty and both
// collection does not intersect
assert (dummy.add ("hello1"));
assert (dummy.add ("hello2"));
assert (dummy.add ("hello3"));
assert (test_collection.add ("hello4"));
assert (test_collection.add ("hello5"));
assert (test_collection.retain_all (dummy));
assert (test_collection.is_empty);
assert (dummy.size == 3);
assert (dummy.contains ("hello1"));
assert (dummy.contains ("hello2"));
assert (dummy.contains ("hello3"));
test_collection.clear ();
dummy.clear ();
// Check when both collections have the same elements
assert (dummy.add ("hello1"));
assert (dummy.add ("hello2"));
assert (dummy.add ("hello3"));
assert (test_collection.add ("hello1"));
assert (test_collection.add ("hello2"));
assert (test_collection.add ("hello3"));
assert (! test_collection.retain_all (dummy));
assert (test_collection.size == 3);
assert (test_collection.contains ("hello1"));
assert (test_collection.contains ("hello2"));
assert (test_collection.contains ("hello3"));
assert (dummy.size == 3);
assert (dummy.contains ("hello1"));
assert (dummy.contains ("hello2"));
assert (dummy.contains ("hello3"));
test_collection.clear ();
dummy.clear ();
// Check when the test collection is not empty and both
// collections intersect but are not equal
assert (dummy.add ("hello1"));
assert (dummy.add ("hello2"));
assert (dummy.add ("hello3"));
assert (test_collection.add ("hello2"));
assert (test_collection.add ("hello3"));
assert (test_collection.add ("hello4"));
assert (test_collection.retain_all (dummy));
assert (test_collection.size == 2);
assert (test_collection.contains ("hello2"));
assert (test_collection.contains ("hello3"));
assert (dummy.size == 3);
assert (dummy.contains ("hello1"));
assert (dummy.contains ("hello2"));
assert (dummy.contains ("hello3"));
test_collection.clear ();
dummy.clear ();
}
public void test_to_array () {
// Check the collection exists
assert (test_collection != null);
// Check the collection is empty
assert (test_collection.is_empty);
// Add some elements
assert (test_collection.add ("hello1"));
assert (test_collection.add ("hello2"));
assert (test_collection.add ("hello3"));
// Check the conversion to array
string[] array = (string[]) test_collection.to_array ();
int index = 0;
foreach (string element in test_collection) {
assert (element == array[index++]);
}
}
public void test_gobject_properties () {
// Check the collection exists
assert (test_collection != null);
Value value;
value = Value (typeof (Type));
test_collection.get_property ("element-type", ref value);
assert (value.get_gtype () == test_collection.element_type);
value.unset ();
value = Value (typeof (bool));
test_collection.get_property ("is-empty", ref value);
assert (value.get_boolean () == test_collection.is_empty);
value.unset ();
value = Value (typeof (int));
test_collection.get_property ("size", ref value);
assert (value.get_int () == test_collection.size);
value.unset ();
}
}
|