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
|
// Copyright 2006 The Closure Library Authors. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS-IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
goog.provide('goog.structs.MapTest');
goog.setTestOnly('goog.structs.MapTest');
goog.require('goog.iter');
goog.require('goog.structs');
goog.require('goog.structs.Map');
goog.require('goog.testing.jsunit');
function stringifyMap(m) {
var keys = goog.structs.getKeys(m);
var s = '';
for (var i = 0; i < keys.length; i++) {
s += keys[i] + m[keys[i]];
}
return s;
}
function getMap() {
var m = new goog.structs.Map;
m.set('a', 0);
m.set('b', 1);
m.set('c', 2);
m.set('d', 3);
return m;
}
function testGetCount() {
var m = getMap();
assertEquals('count, should be 4', m.getCount(), 4);
m.remove('d');
assertEquals('count, should be 3', m.getCount(), 3);
}
function testKeys() {
var m = getMap();
assertEquals(
'getKeys, The keys should be a,b,c', m.getKeys().join(','), 'a,b,c,d');
}
function testValues() {
var m = getMap();
assertEquals(
'getValues, The values should be 0,1,2', m.getValues().join(','),
'0,1,2,3');
}
function testContainsKey() {
var m = getMap();
assertTrue("containsKey, Should contain the 'a' key", m.containsKey('a'));
assertFalse(
"containsKey, Should not contain the 'e' key", m.containsKey('e'));
}
function testClear() {
var m = getMap();
m.clear();
assertTrue('cleared so it should be empty', m.isEmpty());
assertTrue("cleared so it should not contain 'a' key", !m.containsKey('a'));
}
function testAddAll() {
var m = new goog.structs.Map;
m.addAll({a: 0, b: 1, c: 2, d: 3});
assertTrue('addAll so it should not be empty', !m.isEmpty());
assertTrue("addAll so it should contain 'c' key", m.containsKey('c'));
var m2 = new goog.structs.Map;
m2.addAll(m);
assertTrue('addAll so it should not be empty', !m2.isEmpty());
assertTrue("addAll so it should contain 'c' key", m2.containsKey('c'));
}
function testConstructor() {
var m = getMap();
var m2 = new goog.structs.Map(m);
assertTrue('constr with Map so it should not be empty', !m2.isEmpty());
assertTrue(
"constr with Map so it should contain 'c' key", m2.containsKey('c'));
}
function testConstructorWithVarArgs() {
var m = new goog.structs.Map('a', 1);
assertTrue('constr with var_args so it should not be empty', !m.isEmpty());
assertEquals('constr with var_args', 1, m.get('a'));
m = new goog.structs.Map('a', 1, 'b', 2);
assertTrue('constr with var_args so it should not be empty', !m.isEmpty());
assertEquals('constr with var_args', 1, m.get('a'));
assertEquals('constr with var_args', 2, m.get('b'));
assertThrows('Odd number of arguments is not allowed', function() {
var m = new goog.structs.Map('a', 1, 'b');
});
}
function testClone() {
var m = getMap();
var m2 = m.clone();
assertTrue('clone so it should not be empty', !m2.isEmpty());
assertTrue("clone so it should contain 'c' key", m2.containsKey('c'));
}
function testRemove() {
var m = new goog.structs.Map();
for (var i = 0; i < 1000; i++) {
m.set(i, 'foo');
}
for (var i = 0; i < 1000; i++) {
assertTrue(m.keys_.length <= 2 * m.getCount());
m.remove(i);
}
assertTrue(m.isEmpty());
assertEquals('', m.getKeys().join(''));
}
function testForEach() {
var m = getMap();
var s = '';
goog.structs.forEach(m, function(val, key, m2) {
assertNotUndefined(key);
assertEquals(m, m2);
s += key + val;
});
assertEquals(s, 'a0b1c2d3');
}
function testFilter() {
var m = getMap();
var m2 = goog.structs.filter(m, function(val, key, m3) {
assertNotUndefined(key);
assertEquals(m, m3);
return val > 1;
});
assertEquals(stringifyMap(m2), 'c2d3');
}
function testMap() {
var m = getMap();
var m2 = goog.structs.map(m, function(val, key, m3) {
assertNotUndefined(key);
assertEquals(m, m3);
return val * val;
});
assertEquals(stringifyMap(m2), 'a0b1c4d9');
}
function testSome() {
var m = getMap();
var b = goog.structs.some(m, function(val, key, m2) {
assertNotUndefined(key);
assertEquals(m, m2);
return val > 1;
});
assertTrue(b);
var b = goog.structs.some(m, function(val, key, m2) {
assertNotUndefined(key);
assertEquals(m, m2);
return val > 100;
});
assertFalse(b);
}
function testEvery() {
var m = getMap();
var b = goog.structs.every(m, function(val, key, m2) {
assertNotUndefined(key);
assertEquals(m, m2);
return val >= 0;
});
assertTrue(b);
b = goog.structs.every(m, function(val, key, m2) {
assertNotUndefined(key);
assertEquals(m, m2);
return val > 1;
});
assertFalse(b);
}
function testContainsValue() {
var m = getMap();
assertTrue(m.containsValue(3));
assertFalse(m.containsValue(4));
}
function testObjectProperties() {
var m = new goog.structs.Map;
assertEquals(m.get('toString'), undefined);
assertEquals(m.get('valueOf'), undefined);
assertEquals(m.get('eval'), undefined);
assertEquals(m.get('toSource'), undefined);
assertEquals(m.get('prototype'), undefined);
assertEquals(m.get(':foo'), undefined);
m.set('toString', 'once');
m.set('valueOf', 'upon');
m.set('eval', 'a');
m.set('toSource', 'midnight');
m.set('prototype', 'dreary');
m.set('hasOwnProperty', 'dark');
m.set(':foo', 'happy');
assertEquals(m.get('toString'), 'once');
assertEquals(m.get('valueOf'), 'upon');
assertEquals(m.get('eval'), 'a');
assertEquals(m.get('toSource'), 'midnight');
assertEquals(m.get('prototype'), 'dreary');
assertEquals(m.get('hasOwnProperty'), 'dark');
assertEquals(m.get(':foo'), 'happy');
var keys = m.getKeys().join(',');
assertEquals(
keys, 'toString,valueOf,eval,toSource,prototype,hasOwnProperty,:foo');
var values = m.getValues().join(',');
assertEquals(values, 'once,upon,a,midnight,dreary,dark,happy');
}
function testDuplicateKeys() {
var m = new goog.structs.Map;
m.set('a', 1);
m.set('b', 2);
m.set('c', 3);
m.set('d', 4);
m.set('e', 5);
m.set('f', 6);
assertEquals(6, m.getKeys().length);
m.set('foo', 1);
assertEquals(7, m.getKeys().length);
m.remove('foo');
assertEquals(6, m.getKeys().length);
m.set('foo', 2);
assertEquals(7, m.getKeys().length);
m.remove('foo');
m.set('foo', 3);
m.remove('foo');
m.set('foo', 4);
assertEquals(7, m.getKeys().length);
}
function testGetKeyIterator() {
var m = new goog.structs.Map;
m.set('a', 1);
m.set('b', 2);
m.set('c', 3);
m.set('d', 4);
m.set('e', 5);
var iter = m.getKeyIterator();
assertEquals('Should contain the keys', 'abcde', goog.iter.join(iter, ''));
m.remove('b');
m.remove('d');
iter = m.getKeyIterator();
assertEquals(
'Should not contain the removed keys', 'ace', goog.iter.join(iter, ''));
}
function testGetValueIterator() {
var m = new goog.structs.Map;
m.set('a', 1);
m.set('b', 2);
m.set('c', 3);
m.set('d', 4);
m.set('e', 5);
var iter = m.getValueIterator();
assertEquals('Should contain the values', '12345', goog.iter.join(iter, ''));
m.remove('b');
m.remove('d');
iter = m.getValueIterator();
assertEquals(
'Should not contain the removed keys', '135', goog.iter.join(iter, ''));
}
function testDefaultIterator() {
// The default iterator should behave like the value iterator
var m = new goog.structs.Map;
m.set('a', 1);
m.set('b', 2);
m.set('c', 3);
m.set('d', 4);
m.set('e', 5);
assertEquals('Should contain the values', '12345', goog.iter.join(m, ''));
m.remove('b');
m.remove('d');
assertEquals(
'Should not contain the removed keys', '135', goog.iter.join(m, ''));
}
function testMutatedIterator() {
var message = 'The map has changed since the iterator was created';
var m = new goog.structs.Map;
m.set('a', 1);
m.set('b', 2);
m.set('c', 3);
m.set('d', 4);
var iter = m.getValueIterator();
m.set('e', 5);
var ex = assertThrows(
'Expected an exception since the map has changed',
function() { iter.next(); });
assertEquals(message, ex.message);
m = new goog.structs.Map;
m.set('a', 1);
m.set('b', 2);
m.set('c', 3);
m.set('d', 4);
iter = m.getValueIterator();
m.remove('d');
var ex = assertThrows(
'Expected an exception since the map has changed',
function() { iter.next(); });
assertEquals(message, ex.message);
m = new goog.structs.Map;
m.set('a', 1);
m.set('b', 2);
m.set('c', 3);
m.set('d', 4);
iter = m.getValueIterator();
m.set('d', 5);
iter.next();
// Changing an existing value is OK.
iter.next();
}
function testTranspose() {
var m = new goog.structs.Map;
m.set('a', 1);
m.set('b', 2);
m.set('c', 3);
m.set('d', 4);
m.set('e', 5);
var transposed = m.transpose();
assertEquals(
'Should contain the keys', 'abcde', goog.iter.join(transposed, ''));
}
function testToObject() {
Object.prototype.b = 0;
try {
var map = new goog.structs.Map();
map.set('a', 0);
var obj = map.toObject();
assertTrue('object representation has key "a"', obj.hasOwnProperty('a'));
assertFalse(
'object representation does not have key "b"', obj.hasOwnProperty('b'));
assertEquals('value for key "a"', 0, obj['a']);
} finally {
delete Object.prototype.b;
}
}
function testEqualsWithSameObject() {
var map1 = getMap();
assertTrue('maps are the same object', map1.equals(map1));
}
function testEqualsWithDifferentSizeMaps() {
var map1 = getMap();
var map2 = new goog.structs.Map();
assertFalse('maps are different sizes', map1.equals(map2));
}
function testEqualsWithDefaultEqualityFn() {
var map1 = new goog.structs.Map();
var map2 = new goog.structs.Map();
assertTrue('maps are both empty', map1.equals(map2));
map1 = getMap();
map2 = getMap();
assertTrue('maps are the same', map1.equals(map2));
map2.set('d', '3');
assertFalse('maps have 3 and \'3\'', map1.equals(map2));
}
function testEqualsWithCustomEqualityFn() {
var map1 = new goog.structs.Map();
var map2 = new goog.structs.Map();
map1.set('a', 0);
map1.set('b', 1);
map2.set('a', '0');
map2.set('b', '1');
var equalsFn = function(a, b) { return a == b };
assertTrue('maps are equal with ==', map1.equals(map2, equalsFn));
}
|