aboutsummaryrefslogblamecommitdiffstats
path: root/test/cases/parameters_test.rb
blob: 3fbdf8adee8d4d3b19600e6ba16b40b4262beb63 (plain) (tree)
1
2
3
4
5
6
7
8







                                                                                        







                                                                              


                                                                                            
 








                                                                                                  
 


                                                                                              
 



                                                                                                    
require 'helper'
require 'active_job/parameters'
require 'models/person'

class ParameterSerializationTest < ActiveSupport::TestCase
  test 'should make no change to regular values' do
    assert_equal [ 1, "something" ], ActiveJob::Parameters.serialize([ 1, "something" ])
  end

  test 'should not allow complex objects' do
    err = assert_raises RuntimeError do
      ActiveJob::Parameters.serialize([ 1, self ])
    end
    assert_equal "Unsupported parameter type: #{self.class.name}", err.message
  end

  test 'should serialize records with global id' do
    assert_equal [ Person.find(5).gid ], ActiveJob::Parameters.serialize([ Person.find(5) ])
  end

  test 'should serialize values and records together' do
    assert_equal [ 3, Person.find(5).gid ], ActiveJob::Parameters.serialize([ 3, Person.find(5) ])
  end
end

class ParameterDeserializationTest < ActiveSupport::TestCase
  test 'should make no change to regular values' do
    assert_equal [ 1, "something" ], ActiveJob::Parameters.deserialize([ 1, "something" ])
  end

  test 'should deserialize records with global id' do
    assert_equal [ Person.find(5) ], ActiveJob::Parameters.deserialize([ Person.find(5).gid ])
  end

  test 'should serialize values and records together' do
    assert_equal [ 3, Person.find(5) ], ActiveJob::Parameters.deserialize([ 3, Person.find(5).gid ])
  end
end