Index: third_party/JSON/JSON-2.59/t/02_error.t |
diff --git a/third_party/JSON/JSON-2.59/t/02_error.t b/third_party/JSON/JSON-2.59/t/02_error.t |
new file mode 100644 |
index 0000000000000000000000000000000000000000..0c757d357c863e44f64a21caf32df6def0e9c6b4 |
--- /dev/null |
+++ b/third_party/JSON/JSON-2.59/t/02_error.t |
@@ -0,0 +1,51 @@ |
+# copied over from JSON::XS and modified to use JSON |
+ |
+use strict; |
+use Test::More; |
+BEGIN { plan tests => 31 }; |
+ |
+BEGIN { $ENV{PERL_JSON_BACKEND} = "JSON::backportPP"; } |
+ |
+BEGIN { |
+ use lib qw(t); |
+ use _unicode_handling; |
+} |
+ |
+use utf8; |
+use JSON; |
+ |
+ |
+eval { JSON->new->encode ([\-1]) }; ok $@ =~ /cannot encode reference/; |
+eval { JSON->new->encode ([\undef]) }; ok $@ =~ /cannot encode reference/; |
+eval { JSON->new->encode ([\2]) }; ok $@ =~ /cannot encode reference/; |
+eval { JSON->new->encode ([\{}]) }; ok $@ =~ /cannot encode reference/; |
+eval { JSON->new->encode ([\[]]) }; ok $@ =~ /cannot encode reference/; |
+eval { JSON->new->encode ([\\1]) }; ok $@ =~ /cannot encode reference/; |
+eval { JSON->new->allow_nonref (1)->decode ('"\u1234\udc00"') }; ok $@ =~ /missing high /; |
+eval { JSON->new->allow_nonref->decode ('"\ud800"') }; ok $@ =~ /missing low /; |
+eval { JSON->new->allow_nonref (1)->decode ('"\ud800\u1234"') }; ok $@ =~ /surrogate pair /; |
+eval { JSON->new->decode ('null') }; ok $@ =~ /allow_nonref/; |
+eval { JSON->new->allow_nonref (1)->decode ('+0') }; ok $@ =~ /malformed/; |
+eval { JSON->new->allow_nonref->decode ('.2') }; ok $@ =~ /malformed/; |
+eval { JSON->new->allow_nonref (1)->decode ('bare') }; ok $@ =~ /malformed/; |
+eval { JSON->new->allow_nonref->decode ('naughty') }; ok $@ =~ /null/; |
+eval { JSON->new->allow_nonref (1)->decode ('01') }; ok $@ =~ /leading zero/; |
+eval { JSON->new->allow_nonref->decode ('00') }; ok $@ =~ /leading zero/; |
+eval { JSON->new->allow_nonref (1)->decode ('-0.') }; ok $@ =~ /decimal point/; |
+eval { JSON->new->allow_nonref->decode ('-0e') }; ok $@ =~ /exp sign/; |
+eval { JSON->new->allow_nonref (1)->decode ('-e+1') }; ok $@ =~ /initial minus/; |
+eval { JSON->new->allow_nonref->decode ("\"\n\"") }; ok $@ =~ /invalid character/; |
+eval { JSON->new->allow_nonref (1)->decode ("\"\x01\"") }; ok $@ =~ /invalid character/; |
+eval { JSON->new->decode ('[5') }; ok $@ =~ /parsing array/; |
+eval { JSON->new->decode ('{"5"') }; ok $@ =~ /':' expected/; |
+eval { JSON->new->decode ('{"5":null') }; ok $@ =~ /parsing object/; |
+ |
+eval { JSON->new->decode (undef) }; ok $@ =~ /malformed/; |
+eval { JSON->new->decode (\5) }; ok !!$@; # Can't coerce readonly |
+eval { JSON->new->decode ([]) }; ok $@ =~ /malformed/; |
+eval { JSON->new->decode (\*STDERR) }; ok $@ =~ /malformed/; |
+eval { JSON->new->decode (*STDERR) }; ok !!$@; # cannot coerce GLOB |
+ |
+eval { decode_json ("\"\xa0") }; ok $@ =~ /malformed.*character/; |
+eval { decode_json ("\"\xa0\"") }; ok $@ =~ /malformed.*character/; |
+ |