Skip to content

Commit fd4c51c

Browse files
Rada Bogdan Rauldinomite
Rada Bogdan Raul
authored andcommittedJan 28, 2016
Use MultiJson to produce HashWithIndifferentAccess
From bogdanRada's patch #61 (comment)
1 parent 7293600 commit fd4c51c

File tree

5 files changed

+11
-5
lines changed

5 files changed

+11
-5
lines changed
 

‎Rakefile

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#!/usr/bin/env rake
2+
require 'bundler/setup'
23
require "bundler/gem_tasks"
34
require 'rake/testtask'
45

‎activerecord-session_store.gemspec

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ Gem::Specification.new do |s|
2020
s.add_dependency('activerecord', '>= 4.0.0', '< 5')
2121
s.add_dependency('actionpack', '>= 4.0.0', '< 5')
2222
s.add_dependency('railties', '>= 4.0.0', '< 5')
23+
s.add_dependency('multi_json', '~> 1.11', '>= 1.11.2')
2324

2425
s.add_development_dependency('sqlite3')
2526
s.add_development_dependency('appraisal')

‎lib/active_record/session_store.rb

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
require 'action_dispatch/session/active_record_store'
22
require "active_record/session_store/extension/logger_silencer"
33
require 'active_support/core_ext/hash/keys'
4+
require 'multi_json'
45

56
module ActiveRecord
67
module SessionStore
@@ -57,12 +58,12 @@ def self.dump(value)
5758
# Uses built-in JSON library to encode/decode session
5859
class JsonSerializer
5960
def self.load(value)
60-
hash = JSON.parse(value, quirks_mode: true).with_indifferent_access
61+
hash = MultiJson.load(value).with_indifferent_access
6162
hash[:value]
6263
end
6364

6465
def self.dump(value)
65-
JSON.generate({value: value}, quirks_mode: true)
66+
MultiJson.dump(value: value)
6667
end
6768
end
6869

‎test/action_controller_test.rb

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
class ActionControllerTest < ActionDispatch::IntegrationTest
44
class TestController < ActionController::Base
5+
protect_from_forgery
56
def no_session_access
67
head :ok
78
end

‎test/session_test.rb

+5-3
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ def setup
1313
ActiveRecord::Base.connection.schema_cache.clear!
1414
Session.drop_table! if Session.table_exists?
1515
@session_klass = Class.new(Session)
16+
ActiveRecord::SessionStore::Session.serializer = :json
1617
end
1718

1819
def test_data_column_name
@@ -38,7 +39,8 @@ def test_json_serialization
3839
s = session_klass.create!(:data => 'world', :session_id => '7')
3940

4041
sessions = ActiveRecord::Base.connection.execute("SELECT * FROM #{Session.table_name}")
41-
assert_equal JSON.generate({value: s.data}, quirks_mode: true), sessions[0][Session.data_column_name]
42+
data = Session.deserialize(sessions[0][Session.data_column_name])
43+
assert_equal s.data, data
4244
end
4345

4446
def test_hybrid_serialization
@@ -54,7 +56,7 @@ def test_hybrid_serialization
5456
# Check that first was serialized with Marshal and second as JSON
5557
sessions = ActiveRecord::Base.connection.execute("SELECT * FROM #{Session.table_name}")
5658
assert_equal ::Base64.encode64(Marshal.dump(s1.data)), sessions[0][Session.data_column_name]
57-
assert_equal JSON.generate({value: s2.data}, quirks_mode: true), sessions[1][Session.data_column_name]
59+
assert_equal s2.data, Session.deserialize(sessions[1][Session.data_column_name])
5860
end
5961

6062
def test_hybrid_deserialization
@@ -77,7 +79,7 @@ def test_hybrid_deserialization
7779
# and reserializes as JSON
7880
session.save
7981
sessions = ActiveRecord::Base.connection.execute("SELECT * FROM #{Session.table_name}")
80-
assert_equal JSON.generate({value: s.data}, quirks_mode: true), sessions[0][Session.data_column_name]
82+
assert_equal s.data,Session.deserialize(sessions[0][Session.data_column_name])
8183
end
8284

8385
def test_find_by_sess_id_compat

0 commit comments

Comments
 (0)
Please sign in to comment.