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
|
/* 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/. */
#include "jsapi-tests/tests.h"
static const JSClass ObjectEmulatingUndefinedClass = {
"ObjectEmulatingUndefined", JSCLASS_EMULATES_UNDEFINED};
static bool ObjectEmulatingUndefinedConstructor(JSContext* cx, unsigned argc,
JS::Value* vp) {
JS::CallArgs args = JS::CallArgsFromVp(argc, vp);
JSObject* obj =
JS_NewObjectForConstructor(cx, &ObjectEmulatingUndefinedClass, args);
if (!obj) {
return false;
}
args.rval().setObject(*obj);
return true;
}
BEGIN_TEST(testObjectEmulatingUndefined_truthy) {
CHECK(JS_InitClass(cx, global, nullptr, nullptr, "ObjectEmulatingUndefined",
ObjectEmulatingUndefinedConstructor, 0, nullptr, nullptr,
nullptr, nullptr));
JS::RootedValue result(cx);
EVAL("if (new ObjectEmulatingUndefined()) true; else false;", &result);
CHECK(result.isFalse());
EVAL("if (!new ObjectEmulatingUndefined()) true; else false;", &result);
CHECK(result.isTrue());
EVAL(
"var obj = new ObjectEmulatingUndefined(); \n"
"var res = []; \n"
"for (var i = 0; i < 50; i++) \n"
" res.push(Boolean(obj)); \n"
"res.every(function(v) { return v === false; });",
&result);
CHECK(result.isTrue());
return true;
}
END_TEST(testObjectEmulatingUndefined_truthy)
BEGIN_TEST(testObjectEmulatingUndefined_equal) {
CHECK(JS_InitClass(cx, global, nullptr, nullptr, "ObjectEmulatingUndefined",
ObjectEmulatingUndefinedConstructor, 0, nullptr, nullptr,
nullptr, nullptr));
JS::RootedValue result(cx);
EVAL("if (new ObjectEmulatingUndefined() == undefined) true; else false;",
&result);
CHECK(result.isTrue());
EVAL("if (new ObjectEmulatingUndefined() == null) true; else false;",
&result);
CHECK(result.isTrue());
EVAL("if (new ObjectEmulatingUndefined() != undefined) true; else false;",
&result);
CHECK(result.isFalse());
EVAL("if (new ObjectEmulatingUndefined() != null) true; else false;",
&result);
CHECK(result.isFalse());
EVAL(
"var obj = new ObjectEmulatingUndefined(); \n"
"var res = []; \n"
"for (var i = 0; i < 50; i++) \n"
" res.push(obj == undefined); \n"
"res.every(function(v) { return v === true; });",
&result);
CHECK(result.isTrue());
EVAL(
"var obj = new ObjectEmulatingUndefined(); \n"
"var res = []; \n"
"for (var i = 0; i < 50; i++) \n"
" res.push(obj == null); \n"
"res.every(function(v) { return v === true; });",
&result);
CHECK(result.isTrue());
EVAL(
"var obj = new ObjectEmulatingUndefined(); \n"
"var res = []; \n"
"for (var i = 0; i < 50; i++) \n"
" res.push(obj != undefined); \n"
"res.every(function(v) { return v === false; });",
&result);
CHECK(result.isTrue());
EVAL(
"var obj = new ObjectEmulatingUndefined(); \n"
"var res = []; \n"
"for (var i = 0; i < 50; i++) \n"
" res.push(obj != null); \n"
"res.every(function(v) { return v === false; });",
&result);
CHECK(result.isTrue());
return true;
}
END_TEST(testObjectEmulatingUndefined_equal)
|