aboutsummaryrefslogtreecommitdiffstats
path: root/test/cases/parameters_test.rb
blob: eafa5a052b9d6b45e439ee83048ebf0ae98dc516 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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 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