-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
Copy pathmap_update_test.dart
213 lines (188 loc) · 5.44 KB
/
map_update_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
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
// Copyright (c) 2018, 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";
import 'dart:collection';
import 'dart:convert' show json;
Map<String, dynamic> newJsonMap() => json.decode('{}');
Map<String, dynamic> newJsonMapCustomReviver() =>
json.decode('{}', reviver: (key, value) => value);
void main() {
test({});
test(new LinkedHashMap());
test(new HashMap());
test(new LinkedHashMap.identity());
test(new HashMap.identity());
test(new MapView(new HashMap()));
test(new MapBaseMap());
test(new MapMixinMap());
testNonNull(newJsonMap());
testNonNull(newJsonMapCustomReviver());
testNonNull(new SplayTreeMap());
testNonNull(new SplayTreeMap((a, b) => Comparable.compare(a!, b!)));
testNonNull(new MapView(new SplayTreeMap()));
}
void test(Map<Comparable?, Object?> map) {
testNonNull(map);
// Also works with null keys and values (omitted for splay-tree based maps)
map.clear();
map.update(null, unreachable, ifAbsent: () => null);
Expect.mapEquals({null: null}, map);
map.update(null, (v) => "$v", ifAbsent: unreachable);
Expect.mapEquals({null: "null"}, map);
map.update(null, (v) => null, ifAbsent: unreachable);
Expect.mapEquals({null: null}, map);
}
void testNonNull(Map<Comparable?, Object?> map) {
// Only use literal String keys since JSON maps only accept strings,
// and literals works with identity-maps, and it's comparable for SplayTreeMap
// maps.
Expect.mapEquals({}, map);
map.update("key1", unreachable, ifAbsent: () => 42);
Expect.mapEquals({"key1": 42}, map);
map.clear();
map["key1"] = 42;
map.update("key1", (v) => 1 + (v as int), ifAbsent: unreachable);
Expect.mapEquals({"key1": 43}, map);
map.clear();
// Operations on maps with multiple elements.
var multi = {
"k1": 1,
"k2": 2,
"k3": 3,
"k4": 4,
"k5": 5,
"k6": 6,
"k7": 7,
"k8": 8,
"k9": 9,
"k10": 10,
};
map.addAll(multi);
Expect.mapEquals(multi, map);
map.update("k3", (v) => 13);
map.update("k6", (v) => 16);
map.update("k11", unreachable, ifAbsent: () => 21);
Expect.mapEquals({
"k1": 1,
"k2": 2,
"k3": 13,
"k4": 4,
"k5": 5,
"k6": 16,
"k7": 7,
"k8": 8,
"k9": 9,
"k10": 10,
"k11": 21,
}, map);
map.clear();
map.updateAll((k, v) => throw "unreachable");
Expect.mapEquals({}, map);
map.addAll(multi);
map.updateAll((k, v) => "$k:$v");
Expect.mapEquals({
"k1": "k1:1",
"k2": "k2:2",
"k3": "k3:3",
"k4": "k4:4",
"k5": "k5:5",
"k6": "k6:6",
"k7": "k7:7",
"k8": "k8:8",
"k9": "k9:9",
"k10": "k10:10",
}, map);
map.clear();
Expect.throws(
() => map.update("key1", unreachable, ifAbsent: () => throw "expected"),
(t) => t == "expected",
);
map["key1"] = 42;
Expect.throws(
() => map.update("key1", (_) => throw "expected"),
(t) => t == "expected",
);
// No ifAbsent means throw if key not there.
Expect.throws(() => map.update("key-not", unreachable), (e) => e is Error);
// Works with null values.
map.clear();
map.update("key1", unreachable, ifAbsent: () => null);
Expect.mapEquals({"key1": null}, map);
map.update("key1", (v) => "$v", ifAbsent: unreachable);
Expect.mapEquals({"key1": "null"}, map);
map.update("key1", (v) => null, ifAbsent: unreachable);
Expect.mapEquals({"key1": null}, map);
}
// Slow implementation of Map based on MapBase.
mixin class MapBaseOperations<K, V> {
final List _keys = <K>[];
final List _values = <V>[];
int _modCount = 0;
V? operator [](Object? key) {
int index = _keys.indexOf(key);
if (index < 0) return null;
return _values[index];
}
Iterable<K> get keys => new TestKeyIterable<K>(this);
void operator []=(K key, V value) {
int index = _keys.indexOf(key);
if (index >= 0) {
_values[index] = value;
} else {
_modCount++;
_keys.add(key);
_values.add(value);
}
}
V? remove(Object? key) {
int index = _keys.indexOf(key);
if (index >= 0) {
var result = _values[index];
key = _keys.removeLast();
var value = _values.removeLast();
if (index != _keys.length) {
_keys[index] = key;
_values[index] = value;
}
_modCount++;
return result;
}
return null;
}
void clear() {
// Clear cannot be based on remove, since remove won't remove keys that
// are not equal to themselves. It will fail the testNaNKeys test.
_keys.clear();
_values.clear();
_modCount++;
}
}
class MapBaseMap<K, V> = MapBase<K, V> with MapBaseOperations<K, V>;
class MapMixinMap<K, V> = MapBaseOperations<K, V> with MapMixin<K, V>;
class TestKeyIterable<K> extends IterableBase<K> {
final _map;
TestKeyIterable(this._map);
int get length => _map._keys.length;
Iterator<K> get iterator => new TestKeyIterator<K>(_map);
}
class TestKeyIterator<K> implements Iterator<K> {
final _map;
final int _modCount;
int _index = 0;
var _current;
TestKeyIterator(map) : _map = map, _modCount = map._modCount;
bool moveNext() {
if (_modCount != _map._modCount) {
throw new ConcurrentModificationError(_map);
}
if (_index == _map._keys.length) {
_current = null;
return false;
}
_current = _map._keys[_index++];
return true;
}
K get current => _current;
}
Never unreachable([_, __]) => throw "unreachable";