-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
Copy pathset_iterator_test.dart
141 lines (127 loc) · 3.13 KB
/
set_iterator_test.dart
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
// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
import "package:expect/expect.dart";
class FixedHashCode {
final int _hashCode;
const FixedHashCode(this._hashCode);
int get hashCode {
return _hashCode;
}
}
class SetIteratorTest {
static testMain() {
testSmallSet();
testLargeSet();
testEmptySet();
testSetWithDeletedEntries();
testBug5116829();
testDifferentSizes();
testDifferentHashCodes();
}
static void sum(int expected, Iterator<int> it) {
int count = 0;
while (it.moveNext()) {
count += it.current;
}
Expect.equals(expected, count);
}
static void testSmallSet() {
Set<int> set = new Set<int>();
set.add(1);
set.add(2);
set.add(3);
Iterator<int> it = set.iterator;
sum(6, it);
Expect.isFalse(it.moveNext());
}
static void testLargeSet() {
Set<int> set = new Set<int>();
int count = 0;
for (int i = 0; i < 100; i++) {
count += i;
set.add(i);
}
Iterator<int> it = set.iterator;
sum(count, it);
Expect.isFalse(it.moveNext());
}
static void testEmptySet() {
Set<int> set = new Set<int>();
Iterator<int> it = set.iterator;
sum(0, it);
Expect.isFalse(it.moveNext());
}
static void testSetWithDeletedEntries() {
Set<int> set = new Set<int>();
for (int i = 0; i < 100; i++) {
set.add(i);
}
for (int i = 0; i < 100; i++) {
set.remove(i);
}
Iterator<int> it = set.iterator;
Expect.isFalse(it.moveNext());
it = set.iterator;
sum(0, it);
Expect.isFalse(it.moveNext());
int count = 0;
for (int i = 0; i < 100; i++) {
set.add(i);
if (i % 2 == 0)
set.remove(i);
else
count += i;
}
it = set.iterator;
sum(count, it);
Expect.isFalse(it.moveNext());
}
static void testBug5116829() {
// During iteration we skipped slot 0 of the hashset's key list. "A" was
// hashed to slot 0 and therefore triggered the bug.
Set<String> mystrs = new Set<String>();
mystrs.add("A");
int seen = 0;
for (String elt in mystrs) {
seen++;
Expect.equals("A", elt);
}
Expect.equals(1, seen);
}
static void testDifferentSizes() {
for (int i = 1; i < 20; i++) {
Set set = new Set();
int sum = 0;
for (int j = 0; j < i; j++) {
set.add(j);
sum += j;
}
int count = 0;
int controlSum = 0;
for (int x in set) {
controlSum += x;
count++;
}
Expect.equals(i, count);
Expect.equals(sum, controlSum);
}
}
static void testDifferentHashCodes() {
for (int i = -20; i < 20; i++) {
Set set = new Set();
var element = new FixedHashCode(i);
set.add(element);
Expect.equals(1, set.length);
bool foundIt = false;
for (var x in set) {
foundIt = true;
Expect.equals(true, identical(x, element));
}
Expect.equals(true, foundIt);
}
}
}
main() {
SetIteratorTest.testMain();
}