133c21b801
Update to Rails 2.3.1. (Actually, not quite. Doesn't look like 2.3.1 will be released today, but I REALLY want to push these bugfixes out.) Removed bundled Rack (Rails 2.3.1 comes bundled with Rack 1.0). Add config.action_view.cache_template_loading = true to production environment. Fix FastCGI bug (http://rubyforge.org/tracker/index.php?func=detail&aid=24191&group_id=186&atid=783). Fix WikiWords bug (http://rubyforge.org/pipermail/instiki-users/2009-February/001181.html).
46 lines
1.9 KiB
Ruby
46 lines
1.9 KiB
Ruby
# encoding: UTF-8
|
|
require 'abstract_unit'
|
|
|
|
class TestJSONDecoding < Test::Unit::TestCase
|
|
TESTS = {
|
|
%q({"returnTo":{"\/categories":"\/"}}) => {"returnTo" => {"/categories" => "/"}},
|
|
%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"]},
|
|
%({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"},
|
|
# multibyte
|
|
%({"matzue": "松江", "asakusa": "浅草"}) => {"matzue" => "松江", "asakusa" => "浅草"},
|
|
%({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)},
|
|
# no time zone
|
|
%({a: "2007-01-01 01:12:34"}) => {'a' => "2007-01-01 01:12:34"},
|
|
# needs to be *exact*
|
|
%({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"},
|
|
%([]) => [],
|
|
%({}) => {},
|
|
%(1) => 1,
|
|
%("") => "",
|
|
%("\\"") => "\"",
|
|
%(null) => nil,
|
|
%(true) => true,
|
|
%(false) => false,
|
|
%q("http:\/\/test.host\/posts\/1") => "http://test.host/posts/1"
|
|
}
|
|
|
|
TESTS.each do |json, expected|
|
|
define_method :"test_json_decoding_#{json}" do
|
|
assert_nothing_raised do
|
|
assert_equal expected, ActiveSupport::JSON.decode(json)
|
|
end
|
|
end
|
|
end
|
|
|
|
def test_failed_json_decoding
|
|
assert_raises(ActiveSupport::JSON::ParseError) { ActiveSupport::JSON.decode(%({: 1})) }
|
|
end
|
|
end
|