blob: 823f01d82ab9bb351e7729bf55f99583b231dc79 (
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
# frozen_string_literal: true
require "abstract_unit"
require "action_controller/metal/strong_parameters"
require "active_support/core_ext/string/strip"
class ParametersSerializationTest < ActiveSupport::TestCase
setup do
@old_permitted_parameters = ActionController::Parameters.permit_all_parameters
ActionController::Parameters.permit_all_parameters = false
end
teardown do
ActionController::Parameters.permit_all_parameters = @old_permitted_parameters
end
test "yaml serialization" do
params = ActionController::Parameters.new(key: :value)
yaml_dump = YAML.dump(params)
assert_match("--- !ruby/object:ActionController::Parameters", yaml_dump)
assert_match(/parameters: !ruby\/hash:ActiveSupport::HashWithIndifferentAccess\n\s+key: :value/, yaml_dump)
assert_match("permitted: false", yaml_dump)
end
test "yaml deserialization" do
params = ActionController::Parameters.new(key: :value)
roundtripped = YAML.load(YAML.dump(params))
assert_equal params, roundtripped
assert_not roundtripped.permitted?
end
test "yaml backwardscompatible with psych 2.0.8 format" do
params = YAML.load <<-end_of_yaml.strip_heredoc
--- !ruby/hash:ActionController::Parameters
key: :value
end_of_yaml
assert_equal :value, params[:key]
assert_not params.permitted?
end
test "yaml backwardscompatible with psych 2.0.9+ format" do
params = YAML.load(<<-end_of_yaml.strip_heredoc)
--- !ruby/hash-with-ivars:ActionController::Parameters
elements:
key: :value
ivars:
:@permitted: false
end_of_yaml
assert_equal :value, params[:key]
assert_not params.permitted?
end
end
|