summaryrefslogtreecommitdiffstats
path: root/js/src/tests/ecma_5/JSON/shell.js
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/tests/ecma_5/JSON/shell.js
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/tests/ecma_5/JSON/shell.js')
-rw-r--r--js/src/tests/ecma_5/JSON/shell.js112
1 files changed, 112 insertions, 0 deletions
diff --git a/js/src/tests/ecma_5/JSON/shell.js b/js/src/tests/ecma_5/JSON/shell.js
new file mode 100644
index 000000000..ac2c69844
--- /dev/null
+++ b/js/src/tests/ecma_5/JSON/shell.js
@@ -0,0 +1,112 @@
+gTestsubsuite='JSON';
+
+function testJSON(str, expectSyntaxError)
+{
+ // Leading and trailing whitespace never affect parsing, so test the string
+ // multiple times with and without whitespace around it as it's easy and can
+ // potentially detect bugs.
+
+ // Try the provided string
+ try
+ {
+ JSON.parse(str);
+ reportCompare(false, expectSyntaxError,
+ "string <" + str + "> " +
+ "should" + (expectSyntaxError ? "n't" : "") + " " +
+ "have parsed as JSON");
+ }
+ catch (e)
+ {
+ if (!(e instanceof SyntaxError))
+ {
+ reportCompare(true, false,
+ "parsing string <" + str + "> threw a non-SyntaxError " +
+ "exception: " + e);
+ }
+ else
+ {
+ reportCompare(true, expectSyntaxError,
+ "string <" + str + "> " +
+ "should" + (expectSyntaxError ? "n't" : "") + " " +
+ "have parsed as JSON, exception: " + e);
+ }
+ }
+
+ // Now try the provided string with trailing whitespace
+ try
+ {
+ JSON.parse(str + " ");
+ reportCompare(false, expectSyntaxError,
+ "string <" + str + " > " +
+ "should" + (expectSyntaxError ? "n't" : "") + " " +
+ "have parsed as JSON");
+ }
+ catch (e)
+ {
+ if (!(e instanceof SyntaxError))
+ {
+ reportCompare(true, false,
+ "parsing string <" + str + " > threw a non-SyntaxError " +
+ "exception: " + e);
+ }
+ else
+ {
+ reportCompare(true, expectSyntaxError,
+ "string <" + str + " > " +
+ "should" + (expectSyntaxError ? "n't" : "") + " " +
+ "have parsed as JSON, exception: " + e);
+ }
+ }
+
+ // Now try the provided string with leading whitespace
+ try
+ {
+ JSON.parse(" " + str);
+ reportCompare(false, expectSyntaxError,
+ "string < " + str + "> " +
+ "should" + (expectSyntaxError ? "n't" : "") + " " +
+ "have parsed as JSON");
+ }
+ catch (e)
+ {
+ if (!(e instanceof SyntaxError))
+ {
+ reportCompare(true, false,
+ "parsing string < " + str + "> threw a non-SyntaxError " +
+ "exception: " + e);
+ }
+ else
+ {
+ reportCompare(true, expectSyntaxError,
+ "string < " + str + "> " +
+ "should" + (expectSyntaxError ? "n't" : "") + " " +
+ "have parsed as JSON, exception: " + e);
+ }
+ }
+
+ // Now try the provided string with whitespace surrounding it
+ try
+ {
+ JSON.parse(" " + str + " ");
+ reportCompare(false, expectSyntaxError,
+ "string < " + str + " > " +
+ "should" + (expectSyntaxError ? "n't" : "") + " " +
+ "have parsed as JSON");
+ }
+ catch (e)
+ {
+ if (!(e instanceof SyntaxError))
+ {
+ reportCompare(true, false,
+ "parsing string < " + str + " > threw a non-SyntaxError " +
+ "exception: " + e);
+ }
+ else
+ {
+ reportCompare(true, expectSyntaxError,
+ "string < " + str + " > " +
+ "should" + (expectSyntaxError ? "n't" : "") + " " +
+ "have parsed as JSON, exception: " + e);
+ }
+ }
+}