summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Array/prototype/push/throws-with-string-receiver.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/built-ins/Array/prototype/push/throws-with-string-receiver.js')
-rw-r--r--js/src/tests/test262/built-ins/Array/prototype/push/throws-with-string-receiver.js38
1 files changed, 38 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/Array/prototype/push/throws-with-string-receiver.js b/js/src/tests/test262/built-ins/Array/prototype/push/throws-with-string-receiver.js
new file mode 100644
index 0000000000..23805127a6
--- /dev/null
+++ b/js/src/tests/test262/built-ins/Array/prototype/push/throws-with-string-receiver.js
@@ -0,0 +1,38 @@
+// Copyright (C) 2020 Sony Interactive Entertainment Inc. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+/*---
+esid: sec-array.prototype.push
+description: >
+ Array#push throws TypeError upon attempting to modify a string
+info: |
+ Array.prototype.push ( ...items )
+ ...
+ 6. Repeat, while items is not empty
+ ...
+ b. Perform ? Set(O, ! ToString(len), E, true).
+ ...
+ 7. Perform ? Set(O, "length", len, true).
+
+ Set ( O, P, V, Throw )
+ ...
+ 4. Let success be ? O.[[Set]](P, V, O).
+ 5. If success is false and Throw is true, throw a TypeError exception.
+---*/
+
+assert.throws(TypeError, () => {
+ Array.prototype.push.call('');
+}, "Array.prototype.push.call('')");
+
+assert.throws(TypeError, () => {
+ Array.prototype.push.call('', 1);
+}, "Array.prototype.push.call('', 1)");
+
+assert.throws(TypeError, () => {
+ Array.prototype.push.call('abc');
+}, "Array.prototype.push.call('abc')");
+
+assert.throws(TypeError, () => {
+ Array.prototype.push.call('abc', 1);
+}, "Array.prototype.push.call('abc', 1)");
+
+reportCompare(0, 0);