2017-07-09 13:49:52 -04:00
|
|
|
# frozen_string_literal: true
|
2017-07-10 09:40:03 -04:00
|
|
|
|
2016-08-06 12:41:18 -04:00
|
|
|
require "helper"
|
|
|
|
require "jobs/gid_job"
|
|
|
|
require "jobs/hello_job"
|
|
|
|
require "models/person"
|
|
|
|
require "json"
|
2014-05-19 06:06:09 -04:00
|
|
|
|
|
|
|
class JobSerializationTest < ActiveSupport::TestCase
|
|
|
|
setup do
|
2014-08-17 09:23:24 -04:00
|
|
|
JobBuffer.clear
|
2014-05-19 06:06:09 -04:00
|
|
|
@person = Person.find(5)
|
|
|
|
end
|
|
|
|
|
2016-08-06 12:41:18 -04:00
|
|
|
test "serialize job with gid" do
|
2014-08-25 10:34:50 -04:00
|
|
|
GidJob.perform_later @person
|
2014-08-17 09:23:24 -04:00
|
|
|
assert_equal "Person with ID: 5", JobBuffer.last_value
|
2014-05-19 06:06:09 -04:00
|
|
|
end
|
2015-07-07 15:52:28 -04:00
|
|
|
|
2016-08-06 12:41:18 -04:00
|
|
|
test "serialize includes current locale" do
|
|
|
|
assert_equal "en", HelloJob.new.serialize["locale"]
|
2015-07-07 15:52:28 -04:00
|
|
|
end
|
|
|
|
|
2016-08-06 12:41:18 -04:00
|
|
|
test "serialize and deserialize are symmetric" do
|
2016-03-09 12:28:16 -05:00
|
|
|
# Round trip a job in memory only
|
|
|
|
h1 = HelloJob.new
|
|
|
|
h1.deserialize(h1.serialize)
|
|
|
|
|
|
|
|
# Now verify it's identical to a JSON round trip.
|
|
|
|
# We don't want any non-native JSON elements in the job hash,
|
|
|
|
# like symbols.
|
|
|
|
payload = JSON.dump(h1.serialize)
|
|
|
|
h2 = HelloJob.new
|
|
|
|
h2.deserialize(JSON.load(payload))
|
|
|
|
assert_equal h1.serialize, h2.serialize
|
|
|
|
end
|
|
|
|
|
2016-08-06 12:41:18 -04:00
|
|
|
test "deserialize sets locale" do
|
2015-07-07 15:52:28 -04:00
|
|
|
job = HelloJob.new
|
2016-08-06 12:41:18 -04:00
|
|
|
job.deserialize "locale" => "es"
|
|
|
|
assert_equal "es", job.locale
|
2015-07-07 15:52:28 -04:00
|
|
|
end
|
|
|
|
|
2016-08-06 12:41:18 -04:00
|
|
|
test "deserialize sets default locale" do
|
2015-07-07 15:52:28 -04:00
|
|
|
job = HelloJob.new
|
|
|
|
job.deserialize({})
|
2016-08-06 12:41:18 -04:00
|
|
|
assert_equal "en", job.locale
|
2015-07-07 15:52:28 -04:00
|
|
|
end
|
2016-09-22 11:17:28 -04:00
|
|
|
|
|
|
|
test "serialize stores provider_job_id" do
|
|
|
|
job = HelloJob.new
|
|
|
|
assert_nil job.serialize["provider_job_id"]
|
|
|
|
|
|
|
|
job.provider_job_id = "some value set by adapter"
|
|
|
|
assert_equal job.provider_job_id, job.serialize["provider_job_id"]
|
|
|
|
end
|
2018-02-22 09:14:42 -05:00
|
|
|
|
|
|
|
test "serialize stores the current timezone" do
|
|
|
|
Time.use_zone "Hawaii" do
|
|
|
|
job = HelloJob.new
|
|
|
|
assert_equal "Hawaii", job.serialize["timezone"]
|
|
|
|
end
|
|
|
|
end
|
2014-05-19 06:06:09 -04:00
|
|
|
end
|