mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
8f671120f1
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
151 lines
3.3 KiB
Ruby
151 lines
3.3 KiB
Ruby
require_relative 'helper'
|
|
|
|
module Psych
|
|
class TestException < TestCase
|
|
class Wups < Exception
|
|
attr_reader :foo, :bar
|
|
def initialize *args
|
|
super
|
|
@foo = 1
|
|
@bar = 2
|
|
end
|
|
end
|
|
|
|
def setup
|
|
super
|
|
@wups = Wups.new
|
|
end
|
|
|
|
def test_load_takes_file
|
|
ex = assert_raises(Psych::SyntaxError) do
|
|
Psych.load '--- `'
|
|
end
|
|
assert_nil ex.file
|
|
|
|
ex = assert_raises(Psych::SyntaxError) do
|
|
Psych.load '--- `', 'meow'
|
|
end
|
|
assert_equal 'meow', ex.file
|
|
end
|
|
|
|
def test_psych_parse_stream_takes_file
|
|
ex = assert_raises(Psych::SyntaxError) do
|
|
Psych.parse_stream '--- `'
|
|
end
|
|
assert_nil ex.file
|
|
assert_match '(<unknown>)', ex.message
|
|
|
|
ex = assert_raises(Psych::SyntaxError) do
|
|
Psych.parse_stream '--- `', 'omg!'
|
|
end
|
|
assert_equal 'omg!', ex.file
|
|
assert_match 'omg!', ex.message
|
|
end
|
|
|
|
def test_load_stream_takes_file
|
|
ex = assert_raises(Psych::SyntaxError) do
|
|
Psych.load_stream '--- `'
|
|
end
|
|
assert_nil ex.file
|
|
assert_match '(<unknown>)', ex.message
|
|
|
|
ex = assert_raises(Psych::SyntaxError) do
|
|
Psych.load_stream '--- `', 'omg!'
|
|
end
|
|
assert_equal 'omg!', ex.file
|
|
end
|
|
|
|
def test_parse_file_exception
|
|
Tempfile.create(['parsefile', 'yml']) {|t|
|
|
t.binmode
|
|
t.write '--- `'
|
|
t.close
|
|
ex = assert_raises(Psych::SyntaxError) do
|
|
Psych.parse_file t.path
|
|
end
|
|
assert_equal t.path, ex.file
|
|
}
|
|
end
|
|
|
|
def test_load_file_exception
|
|
Tempfile.create(['loadfile', 'yml']) {|t|
|
|
t.binmode
|
|
t.write '--- `'
|
|
t.close
|
|
ex = assert_raises(Psych::SyntaxError) do
|
|
Psych.load_file t.path
|
|
end
|
|
assert_equal t.path, ex.file
|
|
}
|
|
end
|
|
|
|
def test_psych_parse_takes_file
|
|
ex = assert_raises(Psych::SyntaxError) do
|
|
Psych.parse '--- `'
|
|
end
|
|
assert_match '(<unknown>)', ex.message
|
|
assert_nil ex.file
|
|
|
|
ex = assert_raises(Psych::SyntaxError) do
|
|
Psych.parse '--- `', 'omg!'
|
|
end
|
|
assert_match 'omg!', ex.message
|
|
end
|
|
|
|
def test_attributes
|
|
e = assert_raises(Psych::SyntaxError) {
|
|
Psych.load '--- `foo'
|
|
}
|
|
|
|
assert_nil e.file
|
|
assert_equal 1, e.line
|
|
assert_equal 5, e.column
|
|
# FIXME: offset isn't being set correctly by libyaml
|
|
# assert_equal 5, e.offset
|
|
|
|
assert e.problem
|
|
assert e.context
|
|
end
|
|
|
|
def test_convert
|
|
w = Psych.load(Psych.dump(@wups))
|
|
assert_equal @wups, w
|
|
assert_equal 1, w.foo
|
|
assert_equal 2, w.bar
|
|
end
|
|
|
|
def test_to_yaml_properties
|
|
class << @wups
|
|
def to_yaml_properties
|
|
[:@foo]
|
|
end
|
|
end
|
|
|
|
w = Psych.load(Psych.dump(@wups))
|
|
assert_equal @wups, w
|
|
assert_equal 1, w.foo
|
|
assert_nil w.bar
|
|
end
|
|
|
|
def test_psych_syntax_error
|
|
Tempfile.create(['parsefile', 'yml']) do |t|
|
|
t.binmode
|
|
t.write '--- `'
|
|
t.close
|
|
|
|
begin
|
|
Psych.parse_file t.path
|
|
rescue StandardError
|
|
assert true # count assertion
|
|
ensure
|
|
return unless $!
|
|
|
|
ancestors = $!.class.ancestors.inspect
|
|
|
|
flunk "Psych::SyntaxError not rescued by StandardError: #{ancestors}"
|
|
end
|
|
end
|
|
end
|
|
|
|
end
|
|
end
|