mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
867581dd75
* Update bundled libyaml-0.2.1 from 0.1.7. https://github.com/ruby/psych/pull/368 * Unify Psych's API: To use keyword arguments with method call. https://github.com/ruby/psych/pull/358 git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64544 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
163 lines
4.2 KiB
Ruby
163 lines
4.2 KiB
Ruby
# frozen_string_literal: true
|
|
require 'psych/helper'
|
|
|
|
module Psych
|
|
class TestSafeLoad < TestCase
|
|
class Foo; end
|
|
|
|
[1, 2.2, {}, [], "foo"].each do |obj|
|
|
define_method(:"test_basic_#{obj.class}") do
|
|
assert_safe_cycle obj
|
|
end
|
|
end
|
|
|
|
def test_no_recursion
|
|
x = []
|
|
x << x
|
|
assert_raises(Psych::BadAlias) do
|
|
Psych.safe_load Psych.dump(x)
|
|
end
|
|
end
|
|
|
|
def test_explicit_recursion
|
|
x = []
|
|
x << x
|
|
assert_equal(x, Psych.safe_load(Psych.dump(x), whitelist_classes: [], whitelist_symbols: [], aliases: true))
|
|
# deprecated interface
|
|
assert_equal(x, Psych.safe_load(Psych.dump(x), [], [], true))
|
|
end
|
|
|
|
def test_symbol_whitelist
|
|
yml = Psych.dump :foo
|
|
assert_raises(Psych::DisallowedClass) do
|
|
Psych.safe_load yml
|
|
end
|
|
assert_equal(
|
|
:foo,
|
|
Psych.safe_load(
|
|
yml,
|
|
whitelist_classes: [Symbol],
|
|
whitelist_symbols: [:foo]
|
|
)
|
|
)
|
|
|
|
# deprecated interface
|
|
assert_equal(:foo, Psych.safe_load(yml, [Symbol], [:foo]))
|
|
end
|
|
|
|
def test_symbol
|
|
assert_raises(Psych::DisallowedClass) do
|
|
assert_safe_cycle :foo
|
|
end
|
|
assert_raises(Psych::DisallowedClass) do
|
|
Psych.safe_load '--- !ruby/symbol foo', whitelist_classes: []
|
|
end
|
|
|
|
# deprecated interface
|
|
assert_raises(Psych::DisallowedClass) do
|
|
Psych.safe_load '--- !ruby/symbol foo', []
|
|
end
|
|
|
|
assert_safe_cycle :foo, whitelist_classes: [Symbol]
|
|
assert_safe_cycle :foo, whitelist_classes: %w{ Symbol }
|
|
assert_equal :foo, Psych.safe_load('--- !ruby/symbol foo', whitelist_classes: [Symbol])
|
|
|
|
# deprecated interface
|
|
assert_equal :foo, Psych.safe_load('--- !ruby/symbol foo', [Symbol])
|
|
end
|
|
|
|
def test_foo
|
|
assert_raises(Psych::DisallowedClass) do
|
|
Psych.safe_load '--- !ruby/object:Foo {}', whitelist_classes: [Foo]
|
|
end
|
|
|
|
# deprecated interface
|
|
assert_raises(Psych::DisallowedClass) do
|
|
Psych.safe_load '--- !ruby/object:Foo {}', [Foo]
|
|
end
|
|
|
|
assert_raises(Psych::DisallowedClass) do
|
|
assert_safe_cycle Foo.new
|
|
end
|
|
assert_kind_of(Foo, Psych.safe_load(Psych.dump(Foo.new), whitelist_classes: [Foo]))
|
|
|
|
# deprecated interface
|
|
assert_kind_of(Foo, Psych.safe_load(Psych.dump(Foo.new), [Foo]))
|
|
end
|
|
|
|
X = Struct.new(:x)
|
|
def test_struct_depends_on_sym
|
|
assert_safe_cycle(X.new, whitelist_classes: [X, Symbol])
|
|
assert_raises(Psych::DisallowedClass) do
|
|
cycle X.new, whitelist_classes: [X]
|
|
end
|
|
end
|
|
|
|
def test_anon_struct
|
|
assert Psych.safe_load(<<-eoyml, whitelist_classes: [Struct, Symbol])
|
|
--- !ruby/struct
|
|
foo: bar
|
|
eoyml
|
|
|
|
assert_raises(Psych::DisallowedClass) do
|
|
Psych.safe_load(<<-eoyml, whitelist_classes: [Struct])
|
|
--- !ruby/struct
|
|
foo: bar
|
|
eoyml
|
|
end
|
|
|
|
assert_raises(Psych::DisallowedClass) do
|
|
Psych.safe_load(<<-eoyml, whitelist_classes: [Symbol])
|
|
--- !ruby/struct
|
|
foo: bar
|
|
eoyml
|
|
end
|
|
end
|
|
|
|
def test_deprecated_anon_struct
|
|
assert Psych.safe_load(<<-eoyml, [Struct, Symbol])
|
|
--- !ruby/struct
|
|
foo: bar
|
|
eoyml
|
|
|
|
assert_raises(Psych::DisallowedClass) do
|
|
Psych.safe_load(<<-eoyml, [Struct])
|
|
--- !ruby/struct
|
|
foo: bar
|
|
eoyml
|
|
end
|
|
|
|
assert_raises(Psych::DisallowedClass) do
|
|
Psych.safe_load(<<-eoyml, [Symbol])
|
|
--- !ruby/struct
|
|
foo: bar
|
|
eoyml
|
|
end
|
|
end
|
|
|
|
def test_safe_load_default_fallback
|
|
assert_nil Psych.safe_load("")
|
|
end
|
|
|
|
def test_safe_load
|
|
assert_equal %w[a b], Psych.safe_load("- a\n- b")
|
|
end
|
|
|
|
def test_safe_load_raises_on_bad_input
|
|
assert_raises(Psych::SyntaxError) { Psych.safe_load("--- `") }
|
|
end
|
|
|
|
private
|
|
|
|
def cycle object, whitelist_classes: []
|
|
Psych.safe_load(Psych.dump(object), whitelist_classes: whitelist_classes)
|
|
# deprecated interface test
|
|
Psych.safe_load(Psych.dump(object), whitelist_classes)
|
|
end
|
|
|
|
def assert_safe_cycle object, whitelist_classes: []
|
|
other = cycle object, whitelist_classes: whitelist_classes
|
|
assert_equal object, other
|
|
end
|
|
end
|
|
end
|