1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Bring type casting behavior of hstore/json in line with serialized

`@raw_attributes` should not contain the type-cast, mutable version of
the value.
This commit is contained in:
Sean Griffin 2014-06-04 06:43:30 -06:00
parent 0329d59a65
commit c3bd7b57e3
9 changed files with 29 additions and 20 deletions

View file

@ -8,12 +8,6 @@ module ActiveRecord
end
def type_cast_for_write(value)
# roundtrip to ensure uniform uniform types
# TODO: This is not an efficient solution.
cast_value(type_cast_for_database(value))
end
def type_cast_for_database(value)
ConnectionAdapters::PostgreSQLColumn.hstore_to_string(value)
end

View file

@ -8,12 +8,6 @@ module ActiveRecord
end
def type_cast_for_write(value)
# roundtrip to ensure uniform uniform types
# TODO: This is not an efficient solution.
cast_value(type_cast_for_database(value))
end
def type_cast_for_database(value)
ConnectionAdapters::PostgreSQLColumn.json_to_string(value)
end

View file

@ -278,12 +278,13 @@ module ActiveRecord
# post.init_with('attributes' => { 'title' => 'hello world' })
# post.title # => 'hello world'
def init_with(coder)
@raw_attributes = coder['attributes']
@raw_attributes = coder['raw_attributes']
@column_types_override = coder['column_types']
@column_types = self.class.column_types
init_internals
@attributes = coder['attributes'] if coder['attributes']
@new_record = coder['new_record']
self.class.define_attribute_methods
@ -326,12 +327,13 @@ module ActiveRecord
@raw_attributes = cloned_attributes
@raw_attributes[self.class.primary_key] = nil
@attributes = other.clone_attributes(:read_attribute)
@attributes[self.class.primary_key] = nil
run_callbacks(:initialize) unless _initialize_callbacks.empty?
@aggregation_cache = {}
@association_cache = {}
@attributes = {}
@new_record = true
@destroyed = false
@ -352,7 +354,8 @@ module ActiveRecord
# Post.new.encode_with(coder)
# coder # => {"attributes" => {"id" => nil, ... }}
def encode_with(coder)
coder['attributes'] = @raw_attributes
coder['raw_attributes'] = @raw_attributes
coder['attributes'] = @attributes
coder['new_record'] = new_record?
end

View file

@ -50,7 +50,7 @@ module ActiveRecord
klass = discriminate_class_for_record(attributes)
column_types = klass.decorate_columns(column_types.dup)
klass.allocate.init_with(
'attributes' => attributes,
'raw_attributes' => attributes,
'column_types' => column_types,
'new_record' => false,
)

View file

@ -152,6 +152,16 @@ class PostgresqlHstoreTest < ActiveRecord::TestCase
assert_equal "GMT", y.timezone
end
def test_yaml_round_trip_with_store_accessors
x = Hstore.new(language: "fr", timezone: "GMT")
assert_equal "fr", x.language
assert_equal "GMT", x.timezone
y = YAML.load(YAML.dump(x))
assert_equal "fr", y.language
assert_equal "GMT", y.timezone
end
def test_gen1
assert_equal(%q(" "=>""), @column.class.hstore_to_string({' '=>''}))
end

View file

@ -147,6 +147,14 @@ class PostgresqlJSONTest < ActiveRecord::TestCase
assert_equal "320×480", y.resolution
end
def test_yaml_round_trip_with_store_accessors
x = JsonDataType.new(resolution: "320×480")
assert_equal "320×480", x.resolution
y = YAML.load(YAML.dump(x))
assert_equal "320×480", y.resolution
end
def test_update_all
json = JsonDataType.create! payload: { "one" => "two" }

View file

@ -1495,7 +1495,7 @@ class BasicsTest < ActiveRecord::TestCase
}
types = { 'author_name' => typecast.new }
topic = Topic.allocate.init_with 'attributes' => attrs,
topic = Topic.allocate.init_with 'raw_attributes' => attrs,
'column_types' => types
assert_equal 't.lo', topic.author_name

View file

@ -251,7 +251,7 @@ class PersistenceTest < ActiveRecord::TestCase
def test_create_columns_not_equal_attributes
topic = Topic.allocate.init_with(
'attributes' => {
'raw_attributes' => {
'title' => 'Another New Topic',
'does_not_exist' => 'test'
}
@ -302,7 +302,7 @@ class PersistenceTest < ActiveRecord::TestCase
topic_reloaded = Topic.allocate
topic_reloaded.init_with(
'attributes' => topic.attributes.merge('does_not_exist' => 'test')
'raw_attributes' => topic.attributes.merge('does_not_exist' => 'test')
)
topic_reloaded.title = 'A New Topic'
assert_nothing_raised { topic_reloaded.save }

View file

@ -31,7 +31,7 @@ class SerializedAttributeTest < ActiveRecord::TestCase
def test_serialized_attribute_init_with
topic = Topic.allocate
topic.init_with('attributes' => { 'content' => '--- foo' })
topic.init_with('raw_attributes' => { 'content' => '--- foo' })
assert_equal 'foo', topic.content
end