提交 aadb8c96 编写于 作者: J Jeremy Kemper

Merge pull request #12782 from chancancode/fix_object_and_struct_as_json

Fixed Object#as_json and Struct#as_json with options
* Fixed Object#as_json and Struct#as_json not working properly with options. They now take
the same options as Hash#as_json:
struct = Struct.new(:foo, :bar).new
struct.foo = "hello"
struct.bar = "world"
json = struct.as_json(only: [:foo]) # => {foo: "hello"}
*Sergio Campamá*, *Godfrey Chan*
* Added Numeric#in_milliseconds, like 1.hour.in_milliseconds, so we can feed them to JavaScript functions like getTime().
*DHH*
......
......@@ -20,16 +20,16 @@ def to_json(options = nil)
class Object
def as_json(options = nil) #:nodoc:
if respond_to?(:to_hash)
to_hash
to_hash.as_json(options)
else
instance_values
instance_values.as_json(options)
end
end
end
class Struct #:nodoc:
def as_json(options = nil)
Hash[members.zip(values)]
Hash[members.zip(values)].as_json(options)
end
end
......
......@@ -13,7 +13,7 @@ def initialize(a, b)
class Hashlike
def to_hash
{ :a => 1 }
{ :foo => "hello", :bar => "world" }
end
end
......@@ -61,7 +61,7 @@ def as_json(options={})
[ :"a b", %("a b") ]]
ObjectTests = [[ Foo.new(1, 2), %({\"a\":1,\"b\":2}) ]]
HashlikeTests = [[ Hashlike.new, %({\"a\":1}) ]]
HashlikeTests = [[ Hashlike.new, %({\"bar\":\"world\",\"foo\":\"hello\"}) ]]
CustomTests = [[ Custom.new, '"custom"' ]]
RegexpTests = [[ /^a/, '"(?-mix:^a)"' ], [/^\w{1,2}[a-z]+/ix, '"(?ix-m:^\\\\w{1,2}[a-z]+)"']]
......@@ -204,6 +204,31 @@ def test_nested_hash_with_float
end
end
def test_hash_like_with_options
h = Hashlike.new
json = h.to_json :only => [:foo]
assert_equal({"foo"=>"hello"}, JSON.parse(json))
end
def test_object_to_json_with_options
obj = Object.new
obj.instance_variable_set :@foo, "hello"
obj.instance_variable_set :@bar, "world"
json = obj.to_json :only => ["foo"]
assert_equal({"foo"=>"hello"}, JSON.parse(json))
end
def test_struct_to_json_with_options
struct = Struct.new(:foo, :bar).new
struct.foo = "hello"
struct.bar = "world"
json = struct.to_json :only => [:foo]
assert_equal({"foo"=>"hello"}, JSON.parse(json))
end
def test_hash_should_pass_encoding_options_to_children_in_as_json
person = {
:name => 'John',
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册