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
|
/* testreadonlybidirlist.vala
*
* Copyright (C) 2011 Maciej Piechotka
*
* 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:
* Maciej Piechotka <uzytkownik2@gmail.com>
*/
using Gee;
public class ReadOnlyBidirListTests : ReadOnlyListTests {
public ReadOnlyBidirListTests () {
base.with_name ("ReadOnlyBidirList");
add_test ("[ReadOnlyBidirList] immutable iterator", test_immutable_iterator);
}
protected override Collection<string> get_ro_view (Collection<string> collection) {
return ((Gee.BidirList) collection).read_only_view;
}
public new void test_immutable_iterator () {
var test_list = test_collection as Gee.BidirList<string>;
var ro_list = ro_collection as Gee.BidirList<string>;
assert (test_list.add ("one"));
assert (test_list.add ("two"));
assert (ro_list.size == 2);
assert (ro_list.get (0) == "one");
assert (ro_list.get (1) == "two");
Gee.BidirListIterator<string> iterator = ro_list.bidir_list_iterator ();
assert (iterator.has_next ());
assert (iterator.next ());
assert (iterator.get () == "one");
assert (iterator.index () == 0);
assert (iterator.has_next ());
assert (iterator.next ());
assert (iterator.get () == "two");
assert (iterator.index () == 1);
assert (! iterator.has_next ());
assert (! iterator.next ());
assert (iterator.has_previous ());
assert (iterator.previous ());
assert (iterator.get () == "one");
assert (iterator.index () == 0);
assert (iterator.last ());
assert (iterator.get () == "two");
assert (iterator.index () == 1);
assert (iterator.first ());
assert (iterator.get () == "one");
assert (iterator.index () == 0);
if (Test.trap_fork (0, TestTrapFlags.SILENCE_STDOUT |
TestTrapFlags.SILENCE_STDERR)) {
iterator.remove ();
Posix.exit (0);
}
Test.trap_assert_failed ();
assert (ro_list.size == 2);
assert (ro_list.get (0) == "one");
assert (ro_list.get (1) == "two");
assert (iterator.index () == 0);
if (Test.trap_fork (0, TestTrapFlags.SILENCE_STDOUT |
TestTrapFlags.SILENCE_STDERR)) {
iterator.set ("three");
Posix.exit (0);
}
Test.trap_assert_failed ();
assert (ro_list.size == 2);
assert (ro_list.get (0) == "one");
assert (ro_list.get (1) == "two");
assert (iterator.index () == 0);
if (Test.trap_fork (0, TestTrapFlags.SILENCE_STDOUT |
TestTrapFlags.SILENCE_STDERR)) {
iterator.insert ("three");
Posix.exit (0);
}
Test.trap_assert_failed ();
assert (ro_list.size == 2);
assert (ro_list.get (0) == "one");
assert (ro_list.get (1) == "two");
assert (iterator.index () == 0);
if (Test.trap_fork (0, TestTrapFlags.SILENCE_STDOUT |
TestTrapFlags.SILENCE_STDERR)) {
iterator.add ("three");
Posix.exit (0);
}
Test.trap_assert_failed ();
assert (ro_list.size == 2);
assert (ro_list.get (0) == "one");
assert (ro_list.get (1) == "two");
assert (iterator.index () == 0);
}
}
|