summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Date/now
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 19:33:14 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 19:33:14 +0000
commit36d22d82aa202bb199967e9512281e9a53db42c9 (patch)
tree105e8c98ddea1c1e4784a60a5a6410fa416be2de /js/src/tests/test262/built-ins/Date/now
parentInitial commit. (diff)
downloadfirefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz
firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip
Adding upstream version 115.7.0esr.upstream/115.7.0esrupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'js/src/tests/test262/built-ins/Date/now')
-rw-r--r--js/src/tests/test262/built-ins/Date/now/15.9.4.4-0-1.js11
-rw-r--r--js/src/tests/test262/built-ins/Date/now/15.9.4.4-0-2.js11
-rw-r--r--js/src/tests/test262/built-ins/Date/now/15.9.4.4-0-3.js13
-rw-r--r--js/src/tests/test262/built-ins/Date/now/15.9.4.4-0-4.js11
-rw-r--r--js/src/tests/test262/built-ins/Date/now/browser.js0
-rw-r--r--js/src/tests/test262/built-ins/Date/now/name.js28
-rw-r--r--js/src/tests/test262/built-ins/Date/now/not-a-constructor.js31
-rw-r--r--js/src/tests/test262/built-ins/Date/now/shell.js0
8 files changed, 105 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/Date/now/15.9.4.4-0-1.js b/js/src/tests/test262/built-ins/Date/now/15.9.4.4-0-1.js
new file mode 100644
index 0000000000..b345e3a85e
--- /dev/null
+++ b/js/src/tests/test262/built-ins/Date/now/15.9.4.4-0-1.js
@@ -0,0 +1,11 @@
+// Copyright (c) 2012 Ecma International. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+esid: sec-date.now
+description: Date.now must exist as a function
+---*/
+
+assert.sameValue(typeof Date.now, "function", 'typeof Date.now');
+
+reportCompare(0, 0);
diff --git a/js/src/tests/test262/built-ins/Date/now/15.9.4.4-0-2.js b/js/src/tests/test262/built-ins/Date/now/15.9.4.4-0-2.js
new file mode 100644
index 0000000000..63799dc55a
--- /dev/null
+++ b/js/src/tests/test262/built-ins/Date/now/15.9.4.4-0-2.js
@@ -0,0 +1,11 @@
+// Copyright (c) 2012 Ecma International. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+esid: sec-date.now
+description: Date.now must exist as a function taking 0 parameters
+---*/
+
+assert.sameValue(Date.now.length, 0, 'Date.now.length');
+
+reportCompare(0, 0);
diff --git a/js/src/tests/test262/built-ins/Date/now/15.9.4.4-0-3.js b/js/src/tests/test262/built-ins/Date/now/15.9.4.4-0-3.js
new file mode 100644
index 0000000000..8325417626
--- /dev/null
+++ b/js/src/tests/test262/built-ins/Date/now/15.9.4.4-0-3.js
@@ -0,0 +1,13 @@
+// Copyright (c) 2012 Ecma International. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+esid: sec-date.now
+description: Date.now must exist as a function
+---*/
+
+var fun = Date.now;
+
+assert.sameValue(typeof(fun), "function", 'typeof (fun)');
+
+reportCompare(0, 0);
diff --git a/js/src/tests/test262/built-ins/Date/now/15.9.4.4-0-4.js b/js/src/tests/test262/built-ins/Date/now/15.9.4.4-0-4.js
new file mode 100644
index 0000000000..7f17a75fb2
--- /dev/null
+++ b/js/src/tests/test262/built-ins/Date/now/15.9.4.4-0-4.js
@@ -0,0 +1,11 @@
+// Copyright (c) 2012 Ecma International. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+esid: sec-date.now
+description: Date.now - returns number
+---*/
+
+assert.sameValue(typeof Date.now(), "number", 'typeof Date.now()');
+
+reportCompare(0, 0);
diff --git a/js/src/tests/test262/built-ins/Date/now/browser.js b/js/src/tests/test262/built-ins/Date/now/browser.js
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/js/src/tests/test262/built-ins/Date/now/browser.js
diff --git a/js/src/tests/test262/built-ins/Date/now/name.js b/js/src/tests/test262/built-ins/Date/now/name.js
new file mode 100644
index 0000000000..4189f1f4e7
--- /dev/null
+++ b/js/src/tests/test262/built-ins/Date/now/name.js
@@ -0,0 +1,28 @@
+// Copyright (C) 2015 André Bargull. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+esid: sec-date.now
+description: >
+ Date.now.name is "now".
+info: |
+ Date.now ( )
+
+ 17 ECMAScript Standard Built-in Objects:
+ Every built-in Function object, including constructors, that is not
+ identified as an anonymous function has a name property whose value
+ is a String.
+
+ Unless otherwise specified, the name property of a built-in Function
+ object, if it exists, has the attributes { [[Writable]]: false,
+ [[Enumerable]]: false, [[Configurable]]: true }.
+includes: [propertyHelper.js]
+---*/
+
+assert.sameValue(Date.now.name, "now");
+
+verifyNotEnumerable(Date.now, "name");
+verifyNotWritable(Date.now, "name");
+verifyConfigurable(Date.now, "name");
+
+reportCompare(0, 0);
diff --git a/js/src/tests/test262/built-ins/Date/now/not-a-constructor.js b/js/src/tests/test262/built-ins/Date/now/not-a-constructor.js
new file mode 100644
index 0000000000..d6a7cf0555
--- /dev/null
+++ b/js/src/tests/test262/built-ins/Date/now/not-a-constructor.js
@@ -0,0 +1,31 @@
+// Copyright (C) 2020 Rick Waldron. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+esid: sec-ecmascript-standard-built-in-objects
+description: >
+ Date.now does not implement [[Construct]], is not new-able
+info: |
+ ECMAScript Function Objects
+
+ Built-in function objects that are not identified as constructors do not
+ implement the [[Construct]] internal method unless otherwise specified in
+ the description of a particular function.
+
+ sec-evaluatenew
+
+ ...
+ 7. If IsConstructor(constructor) is false, throw a TypeError exception.
+ ...
+includes: [isConstructor.js]
+features: [Reflect.construct, arrow-function]
+---*/
+
+assert.sameValue(isConstructor(Date.now), false, 'isConstructor(Date.now) must return false');
+
+assert.throws(TypeError, () => {
+ new Date.now();
+}, '`new Date.now()` throws TypeError');
+
+
+reportCompare(0, 0);
diff --git a/js/src/tests/test262/built-ins/Date/now/shell.js b/js/src/tests/test262/built-ins/Date/now/shell.js
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/js/src/tests/test262/built-ins/Date/now/shell.js