summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/decodeURIComponent/S15.1.3.2_A6_T1.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/built-ins/decodeURIComponent/S15.1.3.2_A6_T1.js')
-rw-r--r--js/src/tests/test262/built-ins/decodeURIComponent/S15.1.3.2_A6_T1.js129
1 files changed, 129 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/decodeURIComponent/S15.1.3.2_A6_T1.js b/js/src/tests/test262/built-ins/decodeURIComponent/S15.1.3.2_A6_T1.js
new file mode 100644
index 0000000000..4b17ed6db9
--- /dev/null
+++ b/js/src/tests/test262/built-ins/decodeURIComponent/S15.1.3.2_A6_T1.js
@@ -0,0 +1,129 @@
+// Copyright 2009 the Sputnik authors. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+info: Operator use ToString
+esid: sec-decodeuricomponent-encodeduricomponent
+description: If Type(value) is Object, evaluate ToPrimitive(value, String)
+---*/
+
+//CHECK#1
+var object = {
+ valueOf: function() {
+ return "%5E"
+ }
+};
+if (decodeURIComponent(object) !== "[object Object]") {
+ throw new Test262Error('#1: var object = {valueOf: function() {return "%5E"}}; decodeURIComponent(object) === [object Object]. Actual: ' + (decodeURIComponent(object)));
+}
+
+//CHECK#2
+var object = {
+ valueOf: function() {
+ return ""
+ },
+ toString: function() {
+ return "%5E"
+ }
+};
+if (decodeURIComponent(object) !== "^") {
+ throw new Test262Error('#2: var object = {valueOf: function() {return ""}, toString: function() {return "%5E"}}; decodeURIComponent(object) === "^". Actual: ' + (decodeURIComponent(object)));
+}
+
+//CHECK#3
+var object = {
+ valueOf: function() {
+ return "%5E"
+ },
+ toString: function() {
+ return {}
+ }
+};
+if (decodeURIComponent(object) !== "^") {
+ throw new Test262Error('#3: var object = {valueOf: function() {return "%5E"}, toString: function() {return {}}}; decodeURIComponent(object) === "^". Actual: ' + (decodeURIComponent(object)));
+}
+
+//CHECK#4
+try {
+ var object = {
+ valueOf: function() {
+ throw "error"
+ },
+ toString: function() {
+ return "%5E"
+ }
+ };
+ if (decodeURIComponent(object) !== "^") {
+ throw new Test262Error('#4.1: var object = {valueOf: function() {throw "error"}, toString: function() {return "%5E"}}; decodeURIComponent(object) === "^". Actual: ' + (decodeURIComponent(object)));
+ }
+}
+catch (e) {
+ if (e === "error") {
+ throw new Test262Error('#4.2: var object = {valueOf: function() {throw "error"}, toString: function() {return "%5E"}}; decodeURIComponent(object) not throw "error"');
+ } else {
+ throw new Test262Error('#4.3: var object = {valueOf: function() {throw "error"}, toString: function() {return "%5E"}}; decodeURIComponent(object) not throw Error. Actual: ' + (e));
+ }
+}
+
+//CHECK#5
+var object = {
+ toString: function() {
+ return "%5E"
+ }
+};
+if (decodeURIComponent(object) !== "^") {
+ throw new Test262Error('#5: var object = {toString: function() {return "%5E"}}; decodeURIComponent(object) === "^". Actual: ' + (decodeURIComponent(object)));
+}
+
+//CHECK#6
+var object = {
+ valueOf: function() {
+ return {}
+ },
+ toString: function() {
+ return "%5E"
+ }
+}
+if (decodeURIComponent(object) !== "^") {
+ throw new Test262Error('#6: var object = {valueOf: function() {return {}}, toString: function() {return "%5E"}}; decodeURIComponent(object) === "^". Actual: ' + (decodeURIComponent(object)));
+}
+
+//CHECK#7
+try {
+ var object = {
+ valueOf: function() {
+ return "%5E"
+ },
+ toString: function() {
+ throw "error"
+ }
+ };
+ decodeURIComponent(object);
+ throw new Test262Error('#7.1: var object = {valueOf: function() {return "%5E"}, toString: function() {throw "error"}}; decodeURIComponent(object) throw "error". Actual: ' + (decodeURIComponent(object)));
+}
+catch (e) {
+ if (e !== "error") {
+ throw new Test262Error('#7.2: var object = {valueOf: function() {return "%5E"}, toString: function() {throw "error"}}; decodeURIComponent(object) throw "error". Actual: ' + (e));
+ }
+}
+
+//CHECK#8
+try {
+ var object = {
+ valueOf: function() {
+ return {}
+ },
+ toString: function() {
+ return {}
+ }
+ };
+ decodeURIComponent(object);
+ throw new Test262Error('#8.1: var object = {valueOf: function() {return {}}, toString: function() {return {}}}; decodeURIComponent(object) throw TypeError. Actual: ' + (decodeURIComponent(object)));
+}
+catch (e) {
+ if ((e instanceof TypeError) !== true) {
+ throw new Test262Error('#8.2: var object = {valueOf: function() {return {}}, toString: function() {return {}}}; decodeURIComponent(object) throw TypeError. Actual: ' + (e));
+ }
+}
+
+reportCompare(0, 0);