summaryrefslogtreecommitdiffstats
path: root/js/src/jsapi-tests/testObjectEmulatingUndefined.cpp
diff options
context:
space:
mode:
authorMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
committerMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
commit5f8de423f190bbb79a62f804151bc24824fa32d8 (patch)
tree10027f336435511475e392454359edea8e25895d /js/src/jsapi-tests/testObjectEmulatingUndefined.cpp
parent49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff)
downloadUXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip
Add m-esr52 at 52.6.0
Diffstat (limited to 'js/src/jsapi-tests/testObjectEmulatingUndefined.cpp')
-rw-r--r--js/src/jsapi-tests/testObjectEmulatingUndefined.cpp103
1 files changed, 103 insertions, 0 deletions
diff --git a/js/src/jsapi-tests/testObjectEmulatingUndefined.cpp b/js/src/jsapi-tests/testObjectEmulatingUndefined.cpp
new file mode 100644
index 000000000..6d0e7979c
--- /dev/null
+++ b/js/src/jsapi-tests/testObjectEmulatingUndefined.cpp
@@ -0,0 +1,103 @@
+/* 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, &ObjectEmulatingUndefinedClass,
+ 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, &ObjectEmulatingUndefinedClass,
+ 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)