mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Adding yaml tests [ruby-core:26732]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@25804 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
31ee9fd966
commit
8f90252c52
7 changed files with 231 additions and 0 deletions
18
test/yaml/test_array.rb
Normal file
18
test/yaml/test_array.rb
Normal file
|
@ -0,0 +1,18 @@
|
|||
require 'test/unit'
|
||||
require 'yaml'
|
||||
|
||||
module YAML
|
||||
class TestArray < Test::Unit::TestCase
|
||||
def setup
|
||||
@list = [{ :a => 'b' }, 'foo']
|
||||
end
|
||||
|
||||
def test_to_yaml
|
||||
assert_equal @list, YAML.load(@list.to_yaml)
|
||||
end
|
||||
|
||||
def test_dump
|
||||
assert_equal @list, YAML.load(YAML.dump(@list))
|
||||
end
|
||||
end
|
||||
end
|
18
test/yaml/test_class.rb
Normal file
18
test/yaml/test_class.rb
Normal file
|
@ -0,0 +1,18 @@
|
|||
require 'test/unit'
|
||||
require 'yaml'
|
||||
|
||||
module YAML
|
||||
class TestClass < Test::Unit::TestCase
|
||||
def test_to_yaml
|
||||
assert_raises(::TypeError) do
|
||||
TestClass.to_yaml
|
||||
end
|
||||
end
|
||||
|
||||
def test_dump
|
||||
assert_raises(::TypeError) do
|
||||
YAML.dump TestClass
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
46
test/yaml/test_exception.rb
Normal file
46
test/yaml/test_exception.rb
Normal file
|
@ -0,0 +1,46 @@
|
|||
require 'test/unit'
|
||||
require 'yaml'
|
||||
|
||||
module YAML
|
||||
class TestException < Test::Unit::TestCase
|
||||
class Wups < Exception
|
||||
attr_reader :foo, :bar
|
||||
def initialize *args
|
||||
super
|
||||
@foo = 1
|
||||
@bar = 2
|
||||
end
|
||||
end
|
||||
|
||||
def setup
|
||||
@wups = Wups.new
|
||||
end
|
||||
|
||||
def test_to_yaml
|
||||
w = YAML.load(@wups.to_yaml)
|
||||
assert_equal @wups, w
|
||||
assert_equal 1, w.foo
|
||||
assert_equal 2, w.bar
|
||||
end
|
||||
|
||||
def test_dump
|
||||
w = YAML.load(@wups.to_yaml)
|
||||
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 = YAML.load(YAML.dump(@wups))
|
||||
assert_equal @wups, w
|
||||
assert_equal 1, w.foo
|
||||
assert_nil w.bar
|
||||
end
|
||||
end
|
||||
end
|
18
test/yaml/test_hash.rb
Normal file
18
test/yaml/test_hash.rb
Normal file
|
@ -0,0 +1,18 @@
|
|||
require 'test/unit'
|
||||
require 'yaml'
|
||||
|
||||
module YAML
|
||||
class TestHash < Test::Unit::TestCase
|
||||
def setup
|
||||
@hash = { :a => 'b' }
|
||||
end
|
||||
|
||||
def test_to_yaml
|
||||
assert_equal @hash, YAML.load(@hash.to_yaml)
|
||||
end
|
||||
|
||||
def test_dump
|
||||
assert_equal @hash, YAML.load(YAML.dump(@hash))
|
||||
end
|
||||
end
|
||||
end
|
45
test/yaml/test_string.rb
Normal file
45
test/yaml/test_string.rb
Normal file
|
@ -0,0 +1,45 @@
|
|||
require 'test/unit'
|
||||
require 'yaml'
|
||||
|
||||
module YAML
|
||||
class TestString < Test::Unit::TestCase
|
||||
def test_binary_string_null
|
||||
string = "\x00"
|
||||
yml = YAML.dump string
|
||||
assert_match(/binary/, yml)
|
||||
assert_equal string, YAML.load(yml)
|
||||
end
|
||||
|
||||
def test_binary_string
|
||||
string = binary_string
|
||||
yml = YAML.dump string
|
||||
assert_match(/binary/, yml)
|
||||
assert_equal string, YAML.load(yml)
|
||||
end
|
||||
|
||||
def test_non_binary_string
|
||||
string = binary_string(0.29)
|
||||
yml = YAML.dump string
|
||||
refute_match(/binary/, yml)
|
||||
assert_equal string, YAML.load(yml)
|
||||
end
|
||||
|
||||
def test_string_with_ivars
|
||||
food = "is delicious"
|
||||
ivar = "on rock and roll"
|
||||
food.instance_variable_set(:@we_built_this_city, ivar)
|
||||
|
||||
str = YAML.load YAML.dump food
|
||||
assert_equal ivar, food.instance_variable_get(:@we_built_this_city)
|
||||
end
|
||||
|
||||
def binary_string percentage = 0.31, length = 100
|
||||
string = ''
|
||||
(percentage * length).to_i.times do |i|
|
||||
string << "\b"
|
||||
end
|
||||
string << 'a' * (length - string.length)
|
||||
string
|
||||
end
|
||||
end
|
||||
end
|
22
test/yaml/test_symbol.rb
Normal file
22
test/yaml/test_symbol.rb
Normal file
|
@ -0,0 +1,22 @@
|
|||
require 'test/unit'
|
||||
require 'yaml'
|
||||
|
||||
module YAML
|
||||
class TestSymbol < Test::Unit::TestCase
|
||||
def test_to_yaml
|
||||
assert_equal :a, YAML.load(:a.to_yaml)
|
||||
end
|
||||
|
||||
def test_dump
|
||||
assert_equal :a, YAML.load(YAML.dump(:a))
|
||||
end
|
||||
|
||||
def test_stringy
|
||||
assert_equal :"1", YAML.load(YAML.dump(:"1"))
|
||||
end
|
||||
|
||||
def test_load_quoted
|
||||
assert_equal :"1", YAML.load("--- :'1'\n")
|
||||
end
|
||||
end
|
||||
end
|
64
test/yaml/test_yaml_properties.rb
Normal file
64
test/yaml/test_yaml_properties.rb
Normal file
|
@ -0,0 +1,64 @@
|
|||
require 'test/unit'
|
||||
require 'yaml'
|
||||
|
||||
module YAML
|
||||
class TestYamlProperties < Test::Unit::TestCase
|
||||
class Foo
|
||||
attr_reader :a, :b, :c
|
||||
def initialize
|
||||
@a = 1
|
||||
@b = 2
|
||||
@c = 3
|
||||
end
|
||||
|
||||
def to_yaml_properties
|
||||
[:@a, :@b]
|
||||
end
|
||||
end
|
||||
|
||||
def test_object_dump_yaml_properties
|
||||
foo = YAML.load(YAML.dump(Foo.new))
|
||||
assert_equal 1, foo.a
|
||||
assert_equal 2, foo.b
|
||||
assert_nil foo.c
|
||||
end
|
||||
|
||||
class Bar < Struct.new(:foo, :bar)
|
||||
attr_reader :baz
|
||||
def initialize *args
|
||||
super
|
||||
@baz = 'hello'
|
||||
end
|
||||
|
||||
def to_yaml_properties
|
||||
[]
|
||||
end
|
||||
end
|
||||
|
||||
def test_struct_dump_yaml_properties
|
||||
bar = YAML.load(YAML.dump(Bar.new('a', 'b')))
|
||||
assert_equal 'a', bar.foo
|
||||
assert_equal 'b', bar.bar
|
||||
assert_nil bar.baz
|
||||
end
|
||||
|
||||
def test_string_dump
|
||||
string = "okonomiyaki"
|
||||
class << string
|
||||
def to_yaml_properties
|
||||
[:@tastes]
|
||||
end
|
||||
end
|
||||
|
||||
string.instance_variable_set(:@tastes, 'delicious')
|
||||
v = YAML.load YAML.dump string
|
||||
assert_equal 'delicious', v.instance_variable_get(:@tastes)
|
||||
end
|
||||
|
||||
def test_string_load
|
||||
str = YAML.load("--- !str \nstr: okonomiyaki\n:@tastes: delicious\n")
|
||||
assert_equal 'okonomiyaki', str
|
||||
assert_equal 'delicious', str.instance_variable_get(:@tastes)
|
||||
end
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue