2009-02-28 02:23:00 +01:00
|
|
|
# encoding: UTF-8
|
2008-05-18 06:22:34 +02:00
|
|
|
require 'abstract_unit'
|
2007-12-21 08:48:59 +01:00
|
|
|
|
2009-08-04 17:16:03 +02:00
|
|
|
class TestJSONDecoding < ActiveSupport::TestCase
|
2007-12-21 08:48:59 +01:00
|
|
|
TESTS = {
|
|
|
|
%q({"returnTo":{"\/categories":"\/"}}) => {"returnTo" => {"/categories" => "/"}},
|
|
|
|
%q({"return\\"To\\":":{"\/categories":"\/"}}) => {"return\"To\":" => {"/categories" => "/"}},
|
|
|
|
%q({"returnTo":{"\/categories":1}}) => {"returnTo" => {"/categories" => 1}},
|
|
|
|
%({"returnTo":[1,"a"]}) => {"returnTo" => [1, "a"]},
|
|
|
|
%({"returnTo":[1,"\\"a\\",", "b"]}) => {"returnTo" => [1, "\"a\",", "b"]},
|
2009-08-04 17:16:03 +02:00
|
|
|
%({"a": "'", "b": "5,000"}) => {"a" => "'", "b" => "5,000"},
|
|
|
|
%({"a": "a's, b's and c's", "b": "5,000"}) => {"a" => "a's, b's and c's", "b" => "5,000"},
|
2009-02-28 02:23:00 +01:00
|
|
|
# multibyte
|
|
|
|
%({"matzue": "松江", "asakusa": "浅草"}) => {"matzue" => "松江", "asakusa" => "浅草"},
|
2009-09-05 09:01:46 +02:00
|
|
|
%({"a": "2007-01-01"}) => {'a' => Date.new(2007, 1, 1)},
|
|
|
|
%({"a": "2007-01-01 01:12:34 Z"}) => {'a' => Time.utc(2007, 1, 1, 1, 12, 34)},
|
2007-12-21 08:48:59 +01:00
|
|
|
# no time zone
|
2009-09-05 09:01:46 +02:00
|
|
|
%({"a": "2007-01-01 01:12:34"}) => {'a' => "2007-01-01 01:12:34"},
|
2007-12-21 08:48:59 +01:00
|
|
|
# needs to be *exact*
|
2009-08-04 17:16:03 +02:00
|
|
|
%({"a": " 2007-01-01 01:12:34 Z "}) => {'a' => " 2007-01-01 01:12:34 Z "},
|
|
|
|
%({"a": "2007-01-01 : it's your birthday"}) => {'a' => "2007-01-01 : it's your birthday"},
|
2007-12-21 08:48:59 +01:00
|
|
|
%([]) => [],
|
|
|
|
%({}) => {},
|
2009-08-04 17:16:03 +02:00
|
|
|
%({"a":1}) => {"a" => 1},
|
|
|
|
%({"a": ""}) => {"a" => ""},
|
|
|
|
%({"a":"\\""}) => {"a" => "\""},
|
|
|
|
%({"a": null}) => {"a" => nil},
|
|
|
|
%({"a": true}) => {"a" => true},
|
|
|
|
%({"a": false}) => {"a" => false},
|
2009-09-05 09:01:46 +02:00
|
|
|
%q({"bad":"\\\\","trailing":""}) => {"bad" => "\\", "trailing" => ""},
|
2009-08-04 17:16:03 +02:00
|
|
|
%q({"a": "http:\/\/test.host\/posts\/1"}) => {"a" => "http://test.host/posts/1"},
|
|
|
|
%q({"a": "\u003cunicode\u0020escape\u003e"}) => {"a" => "<unicode escape>"},
|
|
|
|
%q({"a": "\\\\u0020skip double backslashes"}) => {"a" => "\\u0020skip double backslashes"},
|
|
|
|
%q({"a": "\u003cbr /\u003e"}) => {'a' => "<br />"},
|
2010-05-25 19:45:45 +02:00
|
|
|
%q({"b":["\u003ci\u003e","\u003cb\u003e","\u003cu\u003e"]}) => {'b' => ["<i>","<b>","<u>"]},
|
|
|
|
# test combination of dates and escaped or unicode encoded data in arrays
|
|
|
|
%q([{"d":"1970-01-01", "s":"\u0020escape"},{"d":"1970-01-01", "s":"\u0020escape"}]) =>
|
|
|
|
[{'d' => Date.new(1970, 1, 1), 's' => ' escape'},{'d' => Date.new(1970, 1, 1), 's' => ' escape'}],
|
|
|
|
%q([{"d":"1970-01-01","s":"http:\/\/example.com"},{"d":"1970-01-01","s":"http:\/\/example.com"}]) =>
|
|
|
|
[{'d' => Date.new(1970, 1, 1), 's' => 'http://example.com'},
|
|
|
|
{'d' => Date.new(1970, 1, 1), 's' => 'http://example.com'}]
|
2007-12-21 08:48:59 +01:00
|
|
|
}
|
2009-08-04 17:16:03 +02:00
|
|
|
|
|
|
|
# load the default JSON backend
|
2010-05-25 19:45:45 +02:00
|
|
|
ActiveSupport::JSON.backend = 'Yaml'
|
2009-08-04 17:16:03 +02:00
|
|
|
|
|
|
|
backends = %w(Yaml)
|
2009-12-01 02:38:34 +01:00
|
|
|
backends << "JSONGem" if defined?(::JSON)
|
2010-05-25 19:45:45 +02:00
|
|
|
backends << "Yajl" if defined?(::Yajl)
|
2009-08-04 17:16:03 +02:00
|
|
|
|
|
|
|
backends.each do |backend|
|
|
|
|
TESTS.each do |json, expected|
|
|
|
|
test "json decodes #{json} with the #{backend} backend" do
|
|
|
|
ActiveSupport.parse_json_times = true
|
|
|
|
silence_warnings do
|
|
|
|
ActiveSupport::JSON.with_backend backend do
|
|
|
|
assert_nothing_raised do
|
|
|
|
assert_equal expected, ActiveSupport::JSON.decode(json)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2007-12-21 08:48:59 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2009-08-04 17:16:03 +02:00
|
|
|
|
|
|
|
if backends.include?("JSONGem")
|
|
|
|
test "json decodes time json with time parsing disabled" do
|
|
|
|
ActiveSupport.parse_json_times = false
|
|
|
|
expected = {"a" => "2007-01-01 01:12:34 Z"}
|
|
|
|
ActiveSupport::JSON.with_backend "JSONGem" do
|
|
|
|
assert_equal expected, ActiveSupport::JSON.decode(%({"a": "2007-01-01 01:12:34 Z"}))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2007-12-21 08:48:59 +01:00
|
|
|
def test_failed_json_decoding
|
2009-12-01 02:38:34 +01:00
|
|
|
assert_raise(ActiveSupport::JSON.parse_error) { ActiveSupport::JSON.decode(%({: 1})) }
|
2007-12-21 08:48:59 +01:00
|
|
|
end
|
2009-09-05 09:01:46 +02:00
|
|
|
end
|
|
|
|
|