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
|
<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="chrome://global/skin"?>
<?xml-stylesheet type="text/css" href="chrome://mochikit/content/tests/SimpleTest/test.css"?>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=688277
-->
<window title="Mozilla Bug "
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<script type="application/javascript" src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"/>
<!-- test results are displayed in the html:body -->
<body xmlns="http://www.w3.org/1999/xhtml">
<a href="https://bugzilla.mozilla.org/show_bug.cgi?id="
target="_blank">Mozilla Bug 688277</a>
</body>
<!-- test code goes here -->
<script type="application/javascript">
<![CDATA[
/** Test for Bug 688277 **/
let Cu = Components.utils;
/* Fail gracefully if junk is passed in. */
is(ThreadSafeChromeUtils.nondeterministicGetWeakMapKeys(11), undefined,
"nondeterministicGetWeakMapKeys should return undefined for non-objects");
is(ThreadSafeChromeUtils.nondeterministicGetWeakMapKeys({}), undefined,
"nondeterministicGetWeakMapKeys should return undefined for non-weakmap objects");
is(ThreadSafeChromeUtils.nondeterministicGetWeakMapKeys(null), undefined,
"nondeterministicGetWeakMapKeys should return undefined for null");
/* return an empty array for an empty WeakMap */
let mempty = new WeakMap();
is(ThreadSafeChromeUtils.nondeterministicGetWeakMapKeys(mempty).length, 0,
"nondeterministicGetWeakMapKeys should return empty array for empty weakmap");
/* Test freeing/nonfreeing. */
let m = new WeakMap();
let liveKeys = new Array();
let add_elements = function () {
let k1 = {};
m.set(k1, "live1");
liveKeys.push(k1);
let k2 = {};
m.set(k2, "dead1");
let k = {};
m.set(k, k); /* simple cycle */
};
add_elements();
Cu.schedulePreciseGC(function () {
let keys = ThreadSafeChromeUtils.nondeterministicGetWeakMapKeys(m);
is(liveKeys.length, 1, "Wrong number of live keys.");
is(keys.length, 1, "Should have one weak map key.");
is(m.get(keys[0]), "live1", "live1 should be live");
SimpleTest.finish();
});
SimpleTest.waitForExplicitFinish();
]]>
</script>
</window>
|