summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Date/prototype/getUTCMonth
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/prototype/getUTCMonth
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/prototype/getUTCMonth')
-rw-r--r--js/src/tests/test262/built-ins/Date/prototype/getUTCMonth/S15.9.5.13_A1_T1.js25
-rw-r--r--js/src/tests/test262/built-ins/Date/prototype/getUTCMonth/S15.9.5.13_A1_T2.js22
-rw-r--r--js/src/tests/test262/built-ins/Date/prototype/getUTCMonth/S15.9.5.13_A1_T3.js20
-rw-r--r--js/src/tests/test262/built-ins/Date/prototype/getUTCMonth/S15.9.5.13_A2_T1.js21
-rw-r--r--js/src/tests/test262/built-ins/Date/prototype/getUTCMonth/S15.9.5.13_A3_T1.js24
-rw-r--r--js/src/tests/test262/built-ins/Date/prototype/getUTCMonth/S15.9.5.13_A3_T2.js24
-rw-r--r--js/src/tests/test262/built-ins/Date/prototype/getUTCMonth/S15.9.5.13_A3_T3.js22
-rw-r--r--js/src/tests/test262/built-ins/Date/prototype/getUTCMonth/browser.js0
-rw-r--r--js/src/tests/test262/built-ins/Date/prototype/getUTCMonth/name.js28
-rw-r--r--js/src/tests/test262/built-ins/Date/prototype/getUTCMonth/not-a-constructor.js35
-rw-r--r--js/src/tests/test262/built-ins/Date/prototype/getUTCMonth/shell.js0
-rw-r--r--js/src/tests/test262/built-ins/Date/prototype/getUTCMonth/this-value-invalid-date.js13
-rw-r--r--js/src/tests/test262/built-ins/Date/prototype/getUTCMonth/this-value-non-date.js36
-rw-r--r--js/src/tests/test262/built-ins/Date/prototype/getUTCMonth/this-value-non-object.js46
-rw-r--r--js/src/tests/test262/built-ins/Date/prototype/getUTCMonth/this-value-valid-date.js44
15 files changed, 360 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/Date/prototype/getUTCMonth/S15.9.5.13_A1_T1.js b/js/src/tests/test262/built-ins/Date/prototype/getUTCMonth/S15.9.5.13_A1_T1.js
new file mode 100644
index 0000000000..925d0587ab
--- /dev/null
+++ b/js/src/tests/test262/built-ins/Date/prototype/getUTCMonth/S15.9.5.13_A1_T1.js
@@ -0,0 +1,25 @@
+// Copyright 2009 the Sputnik authors. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+info: The Date.prototype property "getUTCMonth" has { DontEnum } attributes
+esid: sec-date.prototype.getutcmonth
+description: Checking absence of ReadOnly attribute
+---*/
+
+var x = Date.prototype.getUTCMonth;
+if (x === 1) {
+ Date.prototype.getUTCMonth = 2;
+} else {
+ Date.prototype.getUTCMonth = 1;
+}
+
+assert.notSameValue(
+ Date.prototype.getUTCMonth,
+ x,
+ 'The value of Date.prototype.getUTCMonth is expected to not equal the value of `x`'
+);
+
+// TODO: Convert to verifyProperty() format.
+
+reportCompare(0, 0);
diff --git a/js/src/tests/test262/built-ins/Date/prototype/getUTCMonth/S15.9.5.13_A1_T2.js b/js/src/tests/test262/built-ins/Date/prototype/getUTCMonth/S15.9.5.13_A1_T2.js
new file mode 100644
index 0000000000..f5c1c14170
--- /dev/null
+++ b/js/src/tests/test262/built-ins/Date/prototype/getUTCMonth/S15.9.5.13_A1_T2.js
@@ -0,0 +1,22 @@
+// Copyright 2009 the Sputnik authors. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+info: The Date.prototype property "getUTCMonth" has { DontEnum } attributes
+esid: sec-date.prototype.getutcmonth
+description: Checking absence of DontDelete attribute
+---*/
+assert.notSameValue(
+ delete Date.prototype.getUTCMonth,
+ false,
+ 'The value of delete Date.prototype.getUTCMonth is not false'
+);
+
+assert(
+ !Date.prototype.hasOwnProperty('getUTCMonth'),
+ 'The value of !Date.prototype.hasOwnProperty(\'getUTCMonth\') is expected to be true'
+);
+
+// TODO: Convert to verifyProperty() format.
+
+reportCompare(0, 0);
diff --git a/js/src/tests/test262/built-ins/Date/prototype/getUTCMonth/S15.9.5.13_A1_T3.js b/js/src/tests/test262/built-ins/Date/prototype/getUTCMonth/S15.9.5.13_A1_T3.js
new file mode 100644
index 0000000000..472b1c1447
--- /dev/null
+++ b/js/src/tests/test262/built-ins/Date/prototype/getUTCMonth/S15.9.5.13_A1_T3.js
@@ -0,0 +1,20 @@
+// Copyright 2009 the Sputnik authors. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+info: The Date.prototype property "getUTCMonth" has { DontEnum } attributes
+esid: sec-date.prototype.getutcmonth
+description: Checking DontEnum attribute
+---*/
+assert(
+ !Date.prototype.propertyIsEnumerable('getUTCMonth'),
+ 'The value of !Date.prototype.propertyIsEnumerable(\'getUTCMonth\') is expected to be true'
+);
+
+for (var x in Date.prototype) {
+ assert.notSameValue(x, "getUTCMonth", 'The value of x is not "getUTCMonth"');
+}
+
+// TODO: Convert to verifyProperty() format.
+
+reportCompare(0, 0);
diff --git a/js/src/tests/test262/built-ins/Date/prototype/getUTCMonth/S15.9.5.13_A2_T1.js b/js/src/tests/test262/built-ins/Date/prototype/getUTCMonth/S15.9.5.13_A2_T1.js
new file mode 100644
index 0000000000..4fb366a9dc
--- /dev/null
+++ b/js/src/tests/test262/built-ins/Date/prototype/getUTCMonth/S15.9.5.13_A2_T1.js
@@ -0,0 +1,21 @@
+// Copyright 2009 the Sputnik authors. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+info: The "length" property of the "getUTCMonth" is 0
+esid: sec-date.prototype.getutcmonth
+description: The "length" property of the "getUTCMonth" is 0
+---*/
+assert.sameValue(
+ Date.prototype.getUTCMonth.hasOwnProperty("length"),
+ true,
+ 'Date.prototype.getUTCMonth.hasOwnProperty("length") must return true'
+);
+
+assert.sameValue(
+ Date.prototype.getUTCMonth.length,
+ 0,
+ 'The value of Date.prototype.getUTCMonth.length is expected to be 0'
+);
+
+reportCompare(0, 0);
diff --git a/js/src/tests/test262/built-ins/Date/prototype/getUTCMonth/S15.9.5.13_A3_T1.js b/js/src/tests/test262/built-ins/Date/prototype/getUTCMonth/S15.9.5.13_A3_T1.js
new file mode 100644
index 0000000000..9ddd5d2fa4
--- /dev/null
+++ b/js/src/tests/test262/built-ins/Date/prototype/getUTCMonth/S15.9.5.13_A3_T1.js
@@ -0,0 +1,24 @@
+// Copyright 2009 the Sputnik authors. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+info: |
+ The Date.prototype.getUTCMonth property "length" has { ReadOnly,
+ DontDelete, DontEnum } attributes
+esid: sec-date.prototype.getutcmonth
+description: Checking ReadOnly attribute
+includes: [propertyHelper.js]
+---*/
+
+var x = Date.prototype.getUTCMonth.length;
+verifyNotWritable(Date.prototype.getUTCMonth, "length", null, 1);
+
+assert.sameValue(
+ Date.prototype.getUTCMonth.length,
+ x,
+ 'The value of Date.prototype.getUTCMonth.length is expected to equal the value of x'
+);
+
+// TODO: Convert to verifyProperty() format.
+
+reportCompare(0, 0);
diff --git a/js/src/tests/test262/built-ins/Date/prototype/getUTCMonth/S15.9.5.13_A3_T2.js b/js/src/tests/test262/built-ins/Date/prototype/getUTCMonth/S15.9.5.13_A3_T2.js
new file mode 100644
index 0000000000..b712a583b9
--- /dev/null
+++ b/js/src/tests/test262/built-ins/Date/prototype/getUTCMonth/S15.9.5.13_A3_T2.js
@@ -0,0 +1,24 @@
+// Copyright 2009 the Sputnik authors. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+info: |
+ The Date.prototype.getUTCMonth property "length" has { ReadOnly, !
+ DontDelete, DontEnum } attributes
+esid: sec-date.prototype.getutcmonth
+description: Checking DontDelete attribute
+---*/
+assert.sameValue(
+ delete Date.prototype.getUTCMonth.length,
+ true,
+ 'The value of `delete Date.prototype.getUTCMonth.length` is expected to be true'
+);
+
+assert(
+ !Date.prototype.getUTCMonth.hasOwnProperty('length'),
+ 'The value of !Date.prototype.getUTCMonth.hasOwnProperty(\'length\') is expected to be true'
+);
+
+// TODO: Convert to verifyProperty() format.
+
+reportCompare(0, 0);
diff --git a/js/src/tests/test262/built-ins/Date/prototype/getUTCMonth/S15.9.5.13_A3_T3.js b/js/src/tests/test262/built-ins/Date/prototype/getUTCMonth/S15.9.5.13_A3_T3.js
new file mode 100644
index 0000000000..0d06b876db
--- /dev/null
+++ b/js/src/tests/test262/built-ins/Date/prototype/getUTCMonth/S15.9.5.13_A3_T3.js
@@ -0,0 +1,22 @@
+// Copyright 2009 the Sputnik authors. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+info: |
+ The Date.prototype.getUTCMonth property "length" has { ReadOnly,
+ DontDelete, DontEnum } attributes
+esid: sec-date.prototype.getutcmonth
+description: Checking DontEnum attribute
+---*/
+assert(
+ !Date.prototype.getUTCMonth.propertyIsEnumerable('length'),
+ 'The value of !Date.prototype.getUTCMonth.propertyIsEnumerable(\'length\') is expected to be true'
+);
+
+for (var x in Date.prototype.getUTCMonth) {
+ assert.notSameValue(x, "length", 'The value of x is not "length"');
+}
+
+// TODO: Convert to verifyProperty() format.
+
+reportCompare(0, 0);
diff --git a/js/src/tests/test262/built-ins/Date/prototype/getUTCMonth/browser.js b/js/src/tests/test262/built-ins/Date/prototype/getUTCMonth/browser.js
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/js/src/tests/test262/built-ins/Date/prototype/getUTCMonth/browser.js
diff --git a/js/src/tests/test262/built-ins/Date/prototype/getUTCMonth/name.js b/js/src/tests/test262/built-ins/Date/prototype/getUTCMonth/name.js
new file mode 100644
index 0000000000..796815dd91
--- /dev/null
+++ b/js/src/tests/test262/built-ins/Date/prototype/getUTCMonth/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.prototype.getutcmonth
+description: >
+ Date.prototype.getUTCMonth.name is "getUTCMonth".
+info: |
+ Date.prototype.getUTCMonth ( )
+
+ 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.prototype.getUTCMonth.name, "getUTCMonth");
+
+verifyNotEnumerable(Date.prototype.getUTCMonth, "name");
+verifyNotWritable(Date.prototype.getUTCMonth, "name");
+verifyConfigurable(Date.prototype.getUTCMonth, "name");
+
+reportCompare(0, 0);
diff --git a/js/src/tests/test262/built-ins/Date/prototype/getUTCMonth/not-a-constructor.js b/js/src/tests/test262/built-ins/Date/prototype/getUTCMonth/not-a-constructor.js
new file mode 100644
index 0000000000..55428f88be
--- /dev/null
+++ b/js/src/tests/test262/built-ins/Date/prototype/getUTCMonth/not-a-constructor.js
@@ -0,0 +1,35 @@
+// 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.prototype.getUTCMonth 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.prototype.getUTCMonth),
+ false,
+ 'isConstructor(Date.prototype.getUTCMonth) must return false'
+);
+
+assert.throws(TypeError, () => {
+ let date = new Date(Date.now()); new date.getUTCMonth();
+}, '`let date = new Date(Date.now()); new date.getUTCMonth()` throws TypeError');
+
+
+reportCompare(0, 0);
diff --git a/js/src/tests/test262/built-ins/Date/prototype/getUTCMonth/shell.js b/js/src/tests/test262/built-ins/Date/prototype/getUTCMonth/shell.js
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/js/src/tests/test262/built-ins/Date/prototype/getUTCMonth/shell.js
diff --git a/js/src/tests/test262/built-ins/Date/prototype/getUTCMonth/this-value-invalid-date.js b/js/src/tests/test262/built-ins/Date/prototype/getUTCMonth/this-value-invalid-date.js
new file mode 100644
index 0000000000..68bfe82089
--- /dev/null
+++ b/js/src/tests/test262/built-ins/Date/prototype/getUTCMonth/this-value-invalid-date.js
@@ -0,0 +1,13 @@
+// Copyright (C) 2016 the V8 project authors. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+/*---
+esid: sec-date.prototype.getutcmonth
+description: Return value for invalid date
+info: |
+ 1. Let t be ? thisTimeValue(this value).
+ 2. If t is NaN, return NaN.
+---*/
+
+assert.sameValue(new Date(NaN).getUTCMonth(), NaN);
+
+reportCompare(0, 0);
diff --git a/js/src/tests/test262/built-ins/Date/prototype/getUTCMonth/this-value-non-date.js b/js/src/tests/test262/built-ins/Date/prototype/getUTCMonth/this-value-non-date.js
new file mode 100644
index 0000000000..ca28a0d6fd
--- /dev/null
+++ b/js/src/tests/test262/built-ins/Date/prototype/getUTCMonth/this-value-non-date.js
@@ -0,0 +1,36 @@
+// Copyright (C) 2016 the V8 project authors. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+/*---
+esid: sec-date.prototype.getutcmonth
+description: >
+ Behavior when "this" value is an Object without a [[DateValue]] internal slot
+info: |
+ 1. Let t be ? thisTimeValue(this value).
+
+ The abstract operation thisTimeValue(value) performs the following steps:
+
+ 1. If Type(value) is Object and value has a [[DateValue]] internal slot, then
+ a. Return value.[[DateValue]].
+ 2. Throw a TypeError exception.
+---*/
+
+var getUTCMonth = Date.prototype.getUTCMonth;
+var args = (function() {
+ return arguments;
+}());
+
+assert.sameValue(typeof getUTCMonth, 'function');
+
+assert.throws(TypeError, function() {
+ getUTCMonth.call({});
+}, 'ordinary object');
+
+assert.throws(TypeError, function() {
+ getUTCMonth.call([]);
+}, 'array exotic object');
+
+assert.throws(TypeError, function() {
+ getUTCMonth.call(args);
+}, 'arguments exotic object');
+
+reportCompare(0, 0);
diff --git a/js/src/tests/test262/built-ins/Date/prototype/getUTCMonth/this-value-non-object.js b/js/src/tests/test262/built-ins/Date/prototype/getUTCMonth/this-value-non-object.js
new file mode 100644
index 0000000000..f1396ebdf2
--- /dev/null
+++ b/js/src/tests/test262/built-ins/Date/prototype/getUTCMonth/this-value-non-object.js
@@ -0,0 +1,46 @@
+// Copyright (C) 2016 the V8 project authors. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+/*---
+esid: sec-date.prototype.getutcmonth
+description: Behavior when "this" value is not an Object
+info: |
+ 1. Let t be ? thisTimeValue(this value).
+
+ The abstract operation thisTimeValue(value) performs the following steps:
+
+ 1. If Type(value) is Object and value has a [[DateValue]] internal slot, then
+ a. Return value.[[DateValue]].
+ 2. Throw a TypeError exception.
+features: [Symbol]
+---*/
+
+var getUTCMonth = Date.prototype.getUTCMonth;
+var symbol = Symbol();
+
+assert.sameValue(typeof getUTCMonth, 'function');
+
+assert.throws(TypeError, function() {
+ getUTCMonth.call(0);
+}, 'number');
+
+assert.throws(TypeError, function() {
+ getUTCMonth.call(true);
+}, 'boolean');
+
+assert.throws(TypeError, function() {
+ getUTCMonth.call(null);
+}, 'null');
+
+assert.throws(TypeError, function() {
+ getUTCMonth.call(undefined);
+}, 'undefined');
+
+assert.throws(TypeError, function() {
+ getUTCMonth.call('');
+}, 'string');
+
+assert.throws(TypeError, function() {
+ getUTCMonth.call(symbol);
+}, 'symbol');
+
+reportCompare(0, 0);
diff --git a/js/src/tests/test262/built-ins/Date/prototype/getUTCMonth/this-value-valid-date.js b/js/src/tests/test262/built-ins/Date/prototype/getUTCMonth/this-value-valid-date.js
new file mode 100644
index 0000000000..4873c783a6
--- /dev/null
+++ b/js/src/tests/test262/built-ins/Date/prototype/getUTCMonth/this-value-valid-date.js
@@ -0,0 +1,44 @@
+// Copyright (C) 2016 the V8 project authors. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+/*---
+esid: sec-date.prototype.getutcmonth
+description: Return value for valid dates
+info: |
+ 1. Let t be ? thisTimeValue(this value).
+ 2. If t is NaN, return NaN.
+ 3. Return MonthFromTime(t).
+---*/
+
+var july31 = 1469923200000;
+var dec31 = 1483142400000;
+var dayMs = 24 * 60 * 60 * 1000;
+
+assert.sameValue(new Date(july31).getUTCMonth(), 6, 'first millisecond');
+assert.sameValue(
+ new Date(july31 - 1).getUTCMonth(), 6, 'previous millisecond'
+);
+assert.sameValue(
+ new Date(july31 + dayMs - 1).getUTCMonth(), 6, 'final millisecond'
+);
+assert.sameValue(
+ new Date(july31 + dayMs).getUTCMonth(), 7, 'subsequent millisecond'
+);
+
+assert.sameValue(
+ new Date(dec31).getUTCMonth(), 11, 'first millisecond (year boundary)'
+);
+assert.sameValue(
+ new Date(dec31 - 1).getUTCMonth(), 11, 'previous millisecond (year boundary)'
+);
+assert.sameValue(
+ new Date(dec31 + dayMs - 1).getUTCMonth(),
+ 11,
+ 'final millisecond (year boundary)'
+);
+assert.sameValue(
+ new Date(dec31 + dayMs).getUTCMonth(),
+ 0,
+ 'subsequent millisecond (year boundary)'
+);
+
+reportCompare(0, 0);