2017-07-14 09:15:58 +03:00
|
|
|
# frozen_string_literal: true
|
2013-03-26 18:55:04 +04:00
|
|
|
require_relative 'helper'
|
2010-03-29 01:49:37 +04:00
|
|
|
|
2010-04-01 01:09:58 +04:00
|
|
|
require 'stringio'
|
|
|
|
require 'tempfile'
|
|
|
|
|
2010-03-29 01:49:37 +04:00
|
|
|
class TestPsych < Psych::TestCase
|
2018-10-20 07:25:04 +03:00
|
|
|
|
|
|
|
def setup
|
|
|
|
@orig_verbose, $VERBOSE = $VERBOSE, nil
|
|
|
|
end
|
|
|
|
|
2010-04-24 08:11:27 +04:00
|
|
|
def teardown
|
|
|
|
Psych.domain_types.clear
|
2018-10-20 07:25:04 +03:00
|
|
|
$VERBOSE = @orig_verbose
|
2010-04-24 08:11:27 +04:00
|
|
|
end
|
|
|
|
|
2015-12-07 19:58:10 +03:00
|
|
|
def test_line_width_invalid
|
|
|
|
assert_raises(ArgumentError) { Psych.dump('x', { :line_width => -2 }) }
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_line_width_no_limit
|
|
|
|
data = { 'a' => 'a b' * 50}
|
|
|
|
expected = "---\na: #{'a b' * 50}\n"
|
|
|
|
assert_equal(expected, Psych.dump(data, { :line_width => -1 }))
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_line_width_limit
|
2010-07-08 20:10:10 +04:00
|
|
|
yml = Psych.dump('123456 7', { :line_width => 5 })
|
|
|
|
assert_match(/^\s*7/, yml)
|
|
|
|
end
|
|
|
|
|
2010-07-08 03:05:45 +04:00
|
|
|
def test_indent
|
|
|
|
yml = Psych.dump({:a => {'b' => 'c'}}, {:indentation => 5})
|
|
|
|
assert_match(/^[ ]{5}b/, yml)
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_canonical
|
|
|
|
yml = Psych.dump({:a => {'b' => 'c'}}, {:canonical => true})
|
2013-02-08 03:54:29 +04:00
|
|
|
assert_match(/\? "b/, yml)
|
2010-07-08 03:05:45 +04:00
|
|
|
end
|
|
|
|
|
2010-07-08 03:18:27 +04:00
|
|
|
def test_header
|
|
|
|
yml = Psych.dump({:a => {'b' => 'c'}}, {:header => true})
|
|
|
|
assert_match(/YAML/, yml)
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_version_array
|
|
|
|
yml = Psych.dump({:a => {'b' => 'c'}}, {:version => [1,1]})
|
|
|
|
assert_match(/1.1/, yml)
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_version_string
|
|
|
|
yml = Psych.dump({:a => {'b' => 'c'}}, {:version => '1.1'})
|
|
|
|
assert_match(/1.1/, yml)
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_version_bool
|
|
|
|
yml = Psych.dump({:a => {'b' => 'c'}}, {:version => true})
|
|
|
|
assert_match(/1.1/, yml)
|
|
|
|
end
|
|
|
|
|
2010-04-09 20:09:55 +04:00
|
|
|
def test_load_argument_error
|
|
|
|
assert_raises(TypeError) do
|
|
|
|
Psych.load nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-08-27 03:44:04 +03:00
|
|
|
def test_parse
|
|
|
|
assert_equal %w[a b], Psych.parse("- a\n- b").to_ruby
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_parse_default_fallback
|
|
|
|
assert_equal false, Psych.parse("")
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_parse_raises_on_bad_input
|
|
|
|
assert_raises(Psych::SyntaxError) { Psych.parse("--- `") }
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_parse_with_fallback
|
|
|
|
assert_equal 42, Psych.parse("", fallback: 42)
|
|
|
|
end
|
|
|
|
|
2010-06-18 22:38:19 +04:00
|
|
|
def test_non_existing_class_on_deserialize
|
|
|
|
e = assert_raises(ArgumentError) do
|
|
|
|
Psych.load("--- !ruby/object:NonExistent\nfoo: 1")
|
|
|
|
end
|
|
|
|
assert_equal 'undefined class/module NonExistent', e.message
|
|
|
|
end
|
|
|
|
|
2010-03-29 01:49:37 +04:00
|
|
|
def test_dump_stream
|
|
|
|
things = [22, "foo \n", {}]
|
|
|
|
stream = Psych.dump_stream(*things)
|
|
|
|
assert_equal things, Psych.load_stream(stream)
|
|
|
|
end
|
|
|
|
|
2010-04-01 01:09:58 +04:00
|
|
|
def test_dump_file
|
|
|
|
hash = {'hello' => 'TGIF!'}
|
* test/csv/test_features.rb, test/logger/test_logger.rb
test/mkmf/test_have_macro.rb, test/net/http/test_http.rb,
test/openssl/test_config.rb, test/psych/test_encoding.rb,
test/psych/test_exception.rb, test/psych/test_psych.rb,
test/psych/test_tainted.rb, test/readline/test_readline.rb,
test/rexml/test_contrib.rb, test/ruby/test_autoload.rb,
test/ruby/test_beginendblock.rb, test/ruby/test_exception.rb,
test/ruby/test_file.rb, test/ruby/test_io.rb,
test/ruby/test_marshal.rb, test/ruby/test_process.rb,
test/ruby/test_require.rb, test/ruby/test_rubyoptions.rb,
test/syslog/test_syslog_logger.rb, test/webrick/test_httpauth.rb,
test/zlib/test_zlib.rb: Use Tempfile.create.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@40400 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2013-04-21 03:03:52 +04:00
|
|
|
Tempfile.create('fun.yml') do |io|
|
2010-04-01 01:09:58 +04:00
|
|
|
assert_equal io, Psych.dump(hash, io)
|
|
|
|
io.rewind
|
|
|
|
assert_equal Psych.dump(hash), io.read
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_dump_io
|
|
|
|
hash = {'hello' => 'TGIF!'}
|
2017-07-14 09:15:58 +03:00
|
|
|
stringio = StringIO.new ''.dup
|
2010-04-01 01:09:58 +04:00
|
|
|
assert_equal stringio, Psych.dump(hash, stringio)
|
|
|
|
assert_equal Psych.dump(hash), stringio.string
|
|
|
|
end
|
|
|
|
|
2010-03-29 01:49:37 +04:00
|
|
|
def test_simple
|
|
|
|
assert_equal 'foo', Psych.load("--- foo\n")
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_libyaml_version
|
|
|
|
assert Psych.libyaml_version
|
|
|
|
assert_equal Psych.libyaml_version.join('.'), Psych::LIBYAML_VERSION
|
|
|
|
end
|
|
|
|
|
2017-04-05 16:16:32 +03:00
|
|
|
def test_load_stream
|
|
|
|
docs = Psych.load_stream("--- foo\n...\n--- bar\n...")
|
2010-03-29 01:49:37 +04:00
|
|
|
assert_equal %w{ foo bar }, docs
|
|
|
|
end
|
|
|
|
|
2018-08-27 03:44:04 +03:00
|
|
|
def test_load_stream_default_fallback
|
|
|
|
assert_equal [], Psych.load_stream("")
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_load_stream_raises_on_bad_input
|
|
|
|
assert_raises(Psych::SyntaxError) { Psych.load_stream("--- `") }
|
|
|
|
end
|
|
|
|
|
2010-03-29 01:49:37 +04:00
|
|
|
def test_parse_stream
|
|
|
|
docs = Psych.parse_stream("--- foo\n...\n--- bar\n...")
|
2018-08-27 03:44:04 +03:00
|
|
|
assert_equal(%w[foo bar], docs.children.map(&:transform))
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_parse_stream_with_block
|
|
|
|
docs = []
|
|
|
|
Psych.parse_stream("--- foo\n...\n--- bar\n...") do |node|
|
|
|
|
docs << node
|
|
|
|
end
|
|
|
|
|
|
|
|
assert_equal %w[foo bar], docs.map(&:to_ruby)
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_parse_stream_default_fallback
|
|
|
|
docs = Psych.parse_stream("")
|
|
|
|
assert_equal [], docs.children.map(&:to_ruby)
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_parse_stream_with_block_default_fallback
|
|
|
|
docs = []
|
|
|
|
Psych.parse_stream("") do |node|
|
|
|
|
docs << node
|
|
|
|
end
|
|
|
|
|
|
|
|
assert_equal [], docs.map(&:to_ruby)
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_parse_stream_raises_on_bad_input
|
|
|
|
assert_raises(Psych::SyntaxError) { Psych.parse_stream("--- `") }
|
2010-03-29 01:49:37 +04:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_add_builtin_type
|
|
|
|
got = nil
|
2011-03-30 07:52:07 +04:00
|
|
|
Psych.add_builtin_type 'omap' do |type, val|
|
2010-03-29 01:49:37 +04:00
|
|
|
got = val
|
|
|
|
end
|
2010-04-24 08:11:27 +04:00
|
|
|
Psych.load('--- !!omap hello')
|
2010-03-29 01:49:37 +04:00
|
|
|
assert_equal 'hello', got
|
|
|
|
ensure
|
|
|
|
Psych.remove_type 'omap'
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_domain_types
|
|
|
|
got = nil
|
2020-06-03 20:18:34 +03:00
|
|
|
Psych.add_domain_type 'foo.bar/2002', 'foo' do |type, val|
|
2010-03-29 01:49:37 +04:00
|
|
|
got = val
|
|
|
|
end
|
|
|
|
|
2020-06-03 20:18:34 +03:00
|
|
|
Psych.load('--- !foo.bar/2002:foo hello')
|
2010-03-29 01:49:37 +04:00
|
|
|
assert_equal 'hello', got
|
|
|
|
|
2020-06-03 20:18:34 +03:00
|
|
|
Psych.load("--- !foo.bar/2002:foo\n- hello\n- world")
|
2010-03-29 01:49:37 +04:00
|
|
|
assert_equal %w{ hello world }, got
|
|
|
|
|
2020-06-03 20:18:34 +03:00
|
|
|
Psych.load("--- !foo.bar/2002:foo\nhello: world")
|
2010-03-29 01:49:37 +04:00
|
|
|
assert_equal({ 'hello' => 'world' }, got)
|
|
|
|
end
|
|
|
|
|
2019-07-24 23:01:20 +03:00
|
|
|
def test_load_freeze
|
|
|
|
data = Psych.load("--- {foo: ['a']}", freeze: true)
|
|
|
|
assert_predicate data, :frozen?
|
|
|
|
assert_predicate data['foo'], :frozen?
|
|
|
|
assert_predicate data['foo'].first, :frozen?
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_load_freeze_deduplication
|
|
|
|
unless String.method_defined?(:-@) && (-("a" * 20)).equal?((-("a" * 20)))
|
|
|
|
skip "This Ruby implementation doesn't support string deduplication"
|
|
|
|
end
|
|
|
|
|
|
|
|
data = Psych.load("--- ['a']", freeze: true)
|
|
|
|
assert_same 'a', data.first
|
|
|
|
end
|
|
|
|
|
2018-08-27 03:44:04 +03:00
|
|
|
def test_load_default_fallback
|
|
|
|
assert_equal false, Psych.load("")
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_load_with_fallback
|
|
|
|
assert_equal 42, Psych.load("", "file", fallback: 42)
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_load_with_fallback_nil_or_false
|
|
|
|
assert_nil Psych.load("", "file", fallback: nil)
|
|
|
|
assert_equal false, Psych.load("", "file", fallback: false)
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_load_with_fallback_hash
|
|
|
|
assert_equal Hash.new, Psych.load("", "file", fallback: Hash.new)
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_load_with_fallback_for_nil
|
|
|
|
assert_nil Psych.load("--- null", "file", fallback: 42)
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_load_with_fallback_for_false
|
|
|
|
assert_equal false, Psych.load("--- false", "file", fallback: 42)
|
|
|
|
end
|
|
|
|
|
2010-03-29 01:49:37 +04:00
|
|
|
def test_load_file
|
* test/csv/test_features.rb, test/logger/test_logger.rb
test/mkmf/test_have_macro.rb, test/net/http/test_http.rb,
test/openssl/test_config.rb, test/psych/test_encoding.rb,
test/psych/test_exception.rb, test/psych/test_psych.rb,
test/psych/test_tainted.rb, test/readline/test_readline.rb,
test/rexml/test_contrib.rb, test/ruby/test_autoload.rb,
test/ruby/test_beginendblock.rb, test/ruby/test_exception.rb,
test/ruby/test_file.rb, test/ruby/test_io.rb,
test/ruby/test_marshal.rb, test/ruby/test_process.rb,
test/ruby/test_require.rb, test/ruby/test_rubyoptions.rb,
test/syslog/test_syslog_logger.rb, test/webrick/test_httpauth.rb,
test/zlib/test_zlib.rb: Use Tempfile.create.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@40400 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2013-04-21 03:03:52 +04:00
|
|
|
Tempfile.create(['yikes', 'yml']) {|t|
|
|
|
|
t.binmode
|
|
|
|
t.write('--- hello world')
|
|
|
|
t.close
|
|
|
|
assert_equal 'hello world', Psych.load_file(t.path)
|
|
|
|
}
|
2010-03-29 01:49:37 +04:00
|
|
|
end
|
|
|
|
|
2018-08-27 03:44:04 +03:00
|
|
|
def test_load_file_default_fallback
|
2018-04-28 04:47:58 +03:00
|
|
|
Tempfile.create(['empty', 'yml']) {|t|
|
|
|
|
assert_equal false, Psych.load_file(t.path)
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2016-06-24 12:06:08 +03:00
|
|
|
def test_load_file_with_fallback
|
2018-04-28 04:47:58 +03:00
|
|
|
Tempfile.create(['empty', 'yml']) {|t|
|
|
|
|
assert_equal 42, Psych.load_file(t.path, fallback: 42)
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_load_file_with_fallback_nil_or_false
|
|
|
|
Tempfile.create(['empty', 'yml']) {|t|
|
|
|
|
assert_nil Psych.load_file(t.path, fallback: nil)
|
|
|
|
assert_equal false, Psych.load_file(t.path, fallback: false)
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_load_file_with_fallback_hash
|
2016-08-23 04:34:42 +03:00
|
|
|
Tempfile.create(['empty', 'yml']) {|t|
|
2017-12-19 12:44:33 +03:00
|
|
|
assert_equal Hash.new, Psych.load_file(t.path, fallback: Hash.new)
|
2016-08-23 04:34:42 +03:00
|
|
|
}
|
2016-06-24 12:06:08 +03:00
|
|
|
end
|
|
|
|
|
2018-04-28 04:47:58 +03:00
|
|
|
def test_load_file_with_fallback_for_nil
|
|
|
|
Tempfile.create(['nil', 'yml']) {|t|
|
|
|
|
t.binmode
|
|
|
|
t.write('--- null')
|
|
|
|
t.close
|
|
|
|
assert_nil Psych.load_file(t.path, fallback: 42)
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_load_file_with_fallback_for_false
|
|
|
|
Tempfile.create(['false', 'yml']) {|t|
|
|
|
|
t.binmode
|
|
|
|
t.write('--- false')
|
|
|
|
t.close
|
|
|
|
assert_equal false, Psych.load_file(t.path, fallback: 42)
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2010-03-29 01:49:37 +04:00
|
|
|
def test_parse_file
|
* test/csv/test_features.rb, test/logger/test_logger.rb
test/mkmf/test_have_macro.rb, test/net/http/test_http.rb,
test/openssl/test_config.rb, test/psych/test_encoding.rb,
test/psych/test_exception.rb, test/psych/test_psych.rb,
test/psych/test_tainted.rb, test/readline/test_readline.rb,
test/rexml/test_contrib.rb, test/ruby/test_autoload.rb,
test/ruby/test_beginendblock.rb, test/ruby/test_exception.rb,
test/ruby/test_file.rb, test/ruby/test_io.rb,
test/ruby/test_marshal.rb, test/ruby/test_process.rb,
test/ruby/test_require.rb, test/ruby/test_rubyoptions.rb,
test/syslog/test_syslog_logger.rb, test/webrick/test_httpauth.rb,
test/zlib/test_zlib.rb: Use Tempfile.create.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@40400 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2013-04-21 03:03:52 +04:00
|
|
|
Tempfile.create(['yikes', 'yml']) {|t|
|
|
|
|
t.binmode
|
|
|
|
t.write('--- hello world')
|
|
|
|
t.close
|
|
|
|
assert_equal 'hello world', Psych.parse_file(t.path).transform
|
|
|
|
}
|
2010-03-29 01:49:37 +04:00
|
|
|
end
|
2010-03-30 03:57:25 +04:00
|
|
|
|
2018-08-27 03:44:04 +03:00
|
|
|
def test_parse_file_default_fallback
|
|
|
|
Tempfile.create(['empty', 'yml']) do |t|
|
|
|
|
assert_equal false, Psych.parse_file(t.path)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2010-03-30 03:57:25 +04:00
|
|
|
def test_degenerate_strings
|
|
|
|
assert_equal false, Psych.load(' ')
|
|
|
|
assert_equal false, Psych.parse(' ')
|
|
|
|
assert_equal false, Psych.load('')
|
|
|
|
assert_equal false, Psych.parse('')
|
|
|
|
end
|
2010-04-24 08:11:27 +04:00
|
|
|
|
|
|
|
def test_callbacks
|
|
|
|
types = []
|
|
|
|
appender = lambda { |*args| types << args }
|
|
|
|
|
2020-06-03 20:18:34 +03:00
|
|
|
Psych.add_domain_type('example.com:2002', 'foo', &appender)
|
2010-04-24 08:11:27 +04:00
|
|
|
Psych.load <<-eoyml
|
2020-06-03 20:18:34 +03:00
|
|
|
- !tag:example.com:2002:foo bar
|
2010-04-24 08:11:27 +04:00
|
|
|
eoyml
|
|
|
|
|
|
|
|
assert_equal [
|
2020-06-03 20:18:34 +03:00
|
|
|
["tag:example.com:2002:foo", "bar"]
|
2010-04-24 08:11:27 +04:00
|
|
|
], types
|
|
|
|
end
|
2017-11-27 06:11:18 +03:00
|
|
|
|
|
|
|
def test_symbolize_names
|
2017-12-01 04:52:26 +03:00
|
|
|
yaml = <<-eoyml
|
2017-11-27 06:11:18 +03:00
|
|
|
foo:
|
|
|
|
bar: baz
|
|
|
|
hoge:
|
|
|
|
- fuga: piyo
|
|
|
|
eoyml
|
2017-12-01 04:52:26 +03:00
|
|
|
|
|
|
|
result = Psych.load(yaml)
|
2017-11-27 06:11:18 +03:00
|
|
|
assert_equal result, { "foo" => { "bar" => "baz"}, "hoge" => [{ "fuga" => "piyo" }] }
|
|
|
|
|
2017-12-01 04:52:26 +03:00
|
|
|
result = Psych.load(yaml, symbolize_names: true)
|
|
|
|
assert_equal result, { foo: { bar: "baz" }, hoge: [{ fuga: "piyo" }] }
|
|
|
|
|
|
|
|
result = Psych.safe_load(yaml, symbolize_names: true)
|
2017-11-27 06:11:18 +03:00
|
|
|
assert_equal result, { foo: { bar: "baz" }, hoge: [{ fuga: "piyo" }] }
|
|
|
|
end
|
2010-03-29 01:49:37 +04:00
|
|
|
end
|