summaryrefslogtreecommitdiffstats
path: root/js/xpconnect/tests/unit/test_weak_keys.js
blob: 58e3237bd8a782f267daef5451e4d3c0f2cdc120 (plain)
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
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

/* See https://bugzilla.mozilla.org/show_bug.cgi?id=1165807 */

function run_test()
{
  var bunnies = new String("bunnies");
  var lizards = new String("lizards");

  var weakset = new WeakSet([bunnies, lizards]);
  var weakmap = new WeakMap();
  weakmap.set(bunnies, 23);
  weakmap.set(lizards, "oh no");

  var keys = ChromeUtils.nondeterministicGetWeakMapKeys(bunnies);
  equal(keys, undefined, "test nondeterministicGetWeakMapKeys on non-WeakMap");

  keys = ChromeUtils.nondeterministicGetWeakMapKeys(weakmap);
  equal(keys.length, 2, "length of nondeterministicGetWeakMapKeys");
  equal(weakmap.get(bunnies), 23, "check bunnies in weakmap");
  equal(weakmap.get(lizards), "oh no", "check lizards in weakmap");

  keys = ChromeUtils.nondeterministicGetWeakSetKeys(bunnies);
  equal(keys, undefined, "test nondeterministicGetWeakSetKeys on non-WeakMap");

  keys = ChromeUtils.nondeterministicGetWeakSetKeys(weakset);
  equal(keys.length, 2, "length of nondeterministicGetWeakSetKeys");
  ok(weakset.has(bunnies), "check bunnies in weakset");
  ok(weakset.has(lizards), "check lizards in weakset");

  bunnies = null;
  keys = null;

  Cu.forceGC();

  keys = ChromeUtils.nondeterministicGetWeakMapKeys(weakmap);
  equal(keys.length, 1, "length of nondeterministicGetWeakMapKeys after GC");
  equal(weakmap.get(lizards), "oh no", "check lizards still in weakmap");

  keys = ChromeUtils.nondeterministicGetWeakSetKeys(weakset);
  equal(keys.length, 1, "length of nondeterministicGetWeakSetKeys after GC");
  ok(weakset.has(lizards), "check lizards still in weakset");
}