提交 694b5620 编写于 作者: D David Heinemeier Hansson

Merge pull request #79 from cristianbica/deep-serialization

Deep serialization
......@@ -3,14 +3,19 @@
module ActiveJob
class Arguments
TYPE_WHITELIST = [ NilClass, Fixnum, Float, String, TrueClass, FalseClass, Hash, Array, Bignum ]
TYPE_WHITELIST = [ NilClass, Fixnum, Float, String, TrueClass, FalseClass, Bignum ]
def self.serialize(arguments)
arguments.collect do |argument|
if argument.respond_to?(:global_id)
case argument
when ActiveModel::GlobalIdentification
argument.global_id
elsif TYPE_WHITELIST.include?(argument.class)
when *TYPE_WHITELIST
argument
when Hash
Hash[ argument.map{ |key, value| [ serialize_hash_key(key), serialize([value]).first ] } ]
when Array
serialize(argument)
else
raise "Unsupported argument type: #{argument.class.name}"
end
......@@ -18,7 +23,26 @@ def self.serialize(arguments)
end
def self.deserialize(arguments)
arguments.collect { |argument| ActiveModel::GlobalLocator.locate(argument) || argument }
arguments.collect do |argument|
case argument
when Array
deserialize(argument)
when Hash
Hash[argument.map{ |key, value| [ key, deserialize([value]).first ] }].with_indifferent_access
else
ActiveModel::GlobalLocator.locate(argument) || argument
end
end
end
private
def self.serialize_hash_key(key)
case key
when String, Symbol
key.to_s
else
raise "Unsupported hash key type: #{key.class.name}"
end
end
end
end
require 'helper'
require 'active_job/arguments'
require 'models/person'
require 'active_support/core_ext/hash/indifferent_access'
class ParameterSerializationTest < ActiveSupport::TestCase
test 'should make no change to regular values' do
......@@ -14,7 +15,7 @@ class ParameterSerializationTest < ActiveSupport::TestCase
assert_equal [ 'a' ], ActiveJob::Arguments.serialize([ 'a' ])
assert_equal [ true ], ActiveJob::Arguments.serialize([ true ])
assert_equal [ false ], ActiveJob::Arguments.serialize([ false ])
assert_equal [ { a: 1 } ], ActiveJob::Arguments.serialize([ { a: 1 } ])
assert_equal [ { "a" => 1, "b" => 2 } ], ActiveJob::Arguments.serialize([ { a: 1, "b" => 2 } ])
assert_equal [ [ 1 ] ], ActiveJob::Arguments.serialize([ [ 1 ] ])
assert_equal [ 1_000_000_000_000_000_000_000 ], ActiveJob::Arguments.serialize([ 1_000_000_000_000_000_000_000 ])
......@@ -24,6 +25,25 @@ class ParameterSerializationTest < ActiveSupport::TestCase
assert_equal "Unsupported argument type: #{self.class.name}", err.message
end
test 'should dive deep into arrays or hashes' do
assert_equal [ { "a" => Person.find(5).gid }.with_indifferent_access ], ActiveJob::Arguments.serialize([ { a: Person.find(5) } ])
assert_equal [ [ Person.find(5).gid ] ], ActiveJob::Arguments.serialize([ [ Person.find(5) ] ])
end
test 'should dive deep into arrays or hashes and raise exception on complex objects' do
err = assert_raises RuntimeError do
ActiveJob::Arguments.serialize([ 1, [self] ])
end
assert_equal "Unsupported argument type: #{self.class.name}", err.message
end
test 'shoud dive deep into hashes and allow raise exception on not string/symbol keys' do
err = assert_raises RuntimeError do
ActiveJob::Arguments.serialize([ [ { 1 => 2 } ] ])
end
assert_equal "Unsupported hash key type: Fixnum", err.message
end
test 'should serialize records with global id' do
assert_equal [ Person.find(5).gid ], ActiveJob::Arguments.serialize([ Person.find(5) ])
end
......@@ -45,4 +65,13 @@ class ParameterDeserializationTest < ActiveSupport::TestCase
test 'should serialize values and records together' do
assert_equal [ 3, Person.find(5) ], ActiveJob::Arguments.deserialize([ 3, Person.find(5).gid ])
end
test 'should dive deep when deserialising arrays' do
assert_equal [ [ 3, Person.find(5) ] ], ActiveJob::Arguments.deserialize([ [ 3, Person.find(5).gid ] ])
end
test 'should dive deep when deserialising hashes' do
assert_equal [ { "5" => Person.find(5) } ], ActiveJob::Arguments.deserialize([ { "5" => Person.find(5).gid } ])
end
end
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册