mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
617f9908e3
This is following a recent discussion on Basecamp. So far Rails haven't tried to preserve Marshal compatibilty of Active Record instances, and it probably shouldn't as it isn't as controllable as other serialization formats. However it's common to store ActiveRecord instances in Rails.cache, and when the Marshal format changes, it causes problems during Rails upgrade. Process using the new Rails version might not be able to deserialize the existing cache, and also older process that weren't restarted yet my fail to load the cache entries written by newer processes. The goal of this PR is not to freeze the Marshal format, but to have a better visibility when it changes, so that's it's done on purpose with good reasons rather than accidentally. Note that this only test forward compatibility (AR vN reading entries written by AR vN-1), ideally we'd also test backward compatibility (AR vN-1 reading entries written by AR vN), but it means installing and loading and older Active Record as part of the test suite.
39 lines
1.1 KiB
Ruby
39 lines
1.1 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require "cases/helper"
|
|
require "models/topic"
|
|
require "models/reply"
|
|
|
|
class MarshalSerializationTest < ActiveRecord::TestCase
|
|
fixtures :topics
|
|
|
|
def test_deserializing_rails_6_0_marshal_basic
|
|
topic = Marshal.load(marshal_fixture("rails_6_0_topic"))
|
|
|
|
assert_not_predicate topic, :new_record?
|
|
assert_equal 1, topic.id
|
|
assert_equal "The First Topic", topic.title
|
|
assert_equal "Have a nice day", topic.content
|
|
end
|
|
|
|
def test_deserializing_rails_6_0_marshal_with_loaded_association_cache
|
|
topic = Marshal.load(marshal_fixture("rails_6_0_topic_associations"))
|
|
|
|
assert_not_predicate topic, :new_record?
|
|
assert_equal 1, topic.id
|
|
assert_equal "The First Topic", topic.title
|
|
assert_equal "Have a nice day", topic.content
|
|
end
|
|
|
|
private
|
|
def marshal_fixture(file_name)
|
|
File.binread(marshal_fixture_path(file_name))
|
|
end
|
|
|
|
def marshal_fixture_path(file_name)
|
|
File.expand_path(
|
|
"support/marshal_compatibility_fixtures/#{ActiveRecord::Base.connection.adapter_name}/#{file_name}.dump",
|
|
TEST_ROOT
|
|
)
|
|
end
|
|
end
|