summaryrefslogtreecommitdiff
path: root/test/syck
diff options
context:
space:
mode:
Diffstat (limited to 'test/syck')
-rw-r--r--test/syck/test_array.rb24
-rw-r--r--test/syck/test_boolean.rb37
-rw-r--r--test/syck/test_class.rb27
-rw-r--r--test/syck/test_engine_manager.rb3
-rw-r--r--test/syck/test_exception.rb46
-rw-r--r--test/syck/test_hash.rb29
-rw-r--r--test/syck/test_null.rb20
-rw-r--r--test/syck/test_omap.rb56
-rw-r--r--test/syck/test_set.rb31
-rw-r--r--test/syck/test_string.rb45
-rw-r--r--test/syck/test_struct.rb42
-rw-r--r--test/syck/test_symbol.rb22
-rw-r--r--test/syck/test_time.rb24
-rw-r--r--test/syck/test_yaml.rb1414
-rw-r--r--test/syck/test_yaml_properties.rb64
-rw-r--r--test/syck/test_yamldbm.rb194
-rw-r--r--test/syck/test_yamlstore.rb87
17 files changed, 0 insertions, 2165 deletions
diff --git a/test/syck/test_array.rb b/test/syck/test_array.rb
deleted file mode 100644
index 59c9f469ce..0000000000
--- a/test/syck/test_array.rb
+++ /dev/null
@@ -1,24 +0,0 @@
-require 'test/unit'
-require 'yaml'
-
-module Syck
- class TestArray < Test::Unit::TestCase
- def setup
- @current_engine = YAML::ENGINE.yamler
- YAML::ENGINE.yamler = 'syck'
- @list = [{ :a => 'b' }, 'foo']
- end
-
- def teardown
- YAML::ENGINE.yamler = @current_engine
- 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
diff --git a/test/syck/test_boolean.rb b/test/syck/test_boolean.rb
deleted file mode 100644
index 615b0b0c8f..0000000000
--- a/test/syck/test_boolean.rb
+++ /dev/null
@@ -1,37 +0,0 @@
-require 'test/unit'
-require 'yaml'
-
-module Syck
- ###
- # Test booleans from YAML spec:
- # http://yaml.org/type/bool.html
- class TestBoolean < Test::Unit::TestCase
- %w{ yes Yes YES true True TRUE on On ON }.each do |truth|
- define_method(:"test_#{truth}") do
- assert_equal true, YAML.load("--- #{truth}")
- end
- end
-
- %w{ no No NO false False FALSE off Off OFF }.each do |truth|
- define_method(:"test_#{truth}") do
- assert_equal false, YAML.load("--- #{truth}")
- end
- end
-
- ###
- # YAML spec says "y" and "Y" may be used as true, but Syck treats them
- # as literal strings
- def test_y
- assert_equal "y", YAML.load("--- y")
- assert_equal "Y", YAML.load("--- Y")
- end
-
- ###
- # YAML spec says "n" and "N" may be used as false, but Syck treats them
- # as literal strings
- def test_n
- assert_equal "n", YAML.load("--- n")
- assert_equal "N", YAML.load("--- N")
- end
- end
-end
diff --git a/test/syck/test_class.rb b/test/syck/test_class.rb
deleted file mode 100644
index 983cf4192c..0000000000
--- a/test/syck/test_class.rb
+++ /dev/null
@@ -1,27 +0,0 @@
-require 'test/unit'
-require 'yaml'
-
-module Syck
- class TestClass < Test::Unit::TestCase
- def setup
- @engine = YAML::ENGINE.yamler
- YAML::ENGINE.yamler = 'syck'
- end
-
- def teardown
- YAML::ENGINE.yamler = @engine
- end
-
- 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
diff --git a/test/syck/test_engine_manager.rb b/test/syck/test_engine_manager.rb
deleted file mode 100644
index 529fc49d38..0000000000
--- a/test/syck/test_engine_manager.rb
+++ /dev/null
@@ -1,3 +0,0 @@
-require 'test/unit'
-require 'yaml'
-
diff --git a/test/syck/test_exception.rb b/test/syck/test_exception.rb
deleted file mode 100644
index b8ac14e293..0000000000
--- a/test/syck/test_exception.rb
+++ /dev/null
@@ -1,46 +0,0 @@
-require 'test/unit'
-require 'yaml'
-
-module Syck
- 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('test_message')
- 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
diff --git a/test/syck/test_hash.rb b/test/syck/test_hash.rb
deleted file mode 100644
index 0690f77ec3..0000000000
--- a/test/syck/test_hash.rb
+++ /dev/null
@@ -1,29 +0,0 @@
-require 'test/unit'
-require 'yaml'
-
-module Syck
- 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
-
- def test_ref_append
- hash = YAML.load(<<-eoyml)
----
-foo: &foo
- hello: world
-bar:
- <<: *foo
-eoyml
- assert_equal({"foo"=>{"hello"=>"world"}, "bar"=>{"hello"=>"world"}}, hash)
- end
- end
-end
diff --git a/test/syck/test_null.rb b/test/syck/test_null.rb
deleted file mode 100644
index 8bd710fe5e..0000000000
--- a/test/syck/test_null.rb
+++ /dev/null
@@ -1,20 +0,0 @@
-require 'test/unit'
-require 'yaml'
-
-module Syck
- ###
- # Test null from YAML spec:
- # http://yaml.org/type/null.html
- class TestNull < Test::Unit::TestCase
- def test_null_list
- assert_equal [nil] * 5, YAML.load(<<-eoyml)
----
-- ~
-- null
--
-- Null
-- NULL
- eoyml
- end
- end
-end
diff --git a/test/syck/test_omap.rb b/test/syck/test_omap.rb
deleted file mode 100644
index 8a2d7075b6..0000000000
--- a/test/syck/test_omap.rb
+++ /dev/null
@@ -1,56 +0,0 @@
-require 'test/unit'
-require 'yaml'
-
-module Syck
- class TestOmap < Test::Unit::TestCase
- def test_keys
- map = YAML::Omap.new
- map['foo'] = 'bar'
- assert_equal 'bar', map['foo']
- end
-
- def test_order
- map = YAML::Omap.new
- map['a'] = 'b'
- map['b'] = 'c'
- assert_equal [%w{a b}, %w{b c}], map.to_a
- end
-
- def test_square
- list = [["a", "b"], ["b", "c"]]
- map = YAML::Omap[*list.flatten]
- assert_equal list, map.to_a
- assert_equal 'b', map['a']
- assert_equal 'c', map['b']
- end
-
- def test_to_yaml
- map = YAML::Omap['a', 'b', 'c', 'd']
- yaml = map.to_yaml
- assert_match('!omap', yaml)
- assert_match('- a: b', yaml)
- assert_match('- c: d', yaml)
- end
-
- def test_round_trip
- list = [["a", "b"], ["b", "c"]]
- map = YAML::Omap[*list.flatten]
- loaded = YAML.load(YAML.dump(map))
-
- assert_equal map, loaded
- assert_equal list, loaded.to_a
- end
-
- ###
- # FIXME: Syck should also support !!omap as shorthand
- def test_load
- list = [["a", "b"], ["c", "d"]]
- map = YAML.load(<<-eoyml)
---- !omap
-- a: b
-- c: d
- eoyml
- assert_equal list, map.to_a
- end
- end
-end
diff --git a/test/syck/test_set.rb b/test/syck/test_set.rb
deleted file mode 100644
index d58f92e53f..0000000000
--- a/test/syck/test_set.rb
+++ /dev/null
@@ -1,31 +0,0 @@
-require 'test/unit'
-require 'yaml'
-
-module Syck
- class TestSet < Test::Unit::TestCase
- def setup
- @set = YAML::Set.new
- @set['foo'] = 'bar'
- @set['bar'] = 'baz'
- end
-
- def test_to_yaml
- assert_match(/!set/, @set.to_yaml)
- end
-
- def test_roundtrip
- assert_equal(@set, YAML.load(YAML.dump(@set)))
- end
-
- ###
- # FIXME: Syck should also support !!set as shorthand
- def test_load_from_yaml
- loaded = YAML.load(<<-eoyml)
---- !set
-foo: bar
-bar: baz
- eoyml
- assert_equal(@set, loaded)
- end
- end
-end
diff --git a/test/syck/test_string.rb b/test/syck/test_string.rb
deleted file mode 100644
index adea4c51ce..0000000000
--- a/test/syck/test_string.rb
+++ /dev/null
@@ -1,45 +0,0 @@
-require 'test/unit'
-require 'yaml'
-
-module Syck
- 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
- assert_not_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
diff --git a/test/syck/test_struct.rb b/test/syck/test_struct.rb
deleted file mode 100644
index 8d4c538d98..0000000000
--- a/test/syck/test_struct.rb
+++ /dev/null
@@ -1,42 +0,0 @@
-require 'test/unit'
-require 'yaml'
-
-class StructWithIvar < Struct.new(:foo)
- attr_reader :bar
- def initialize *args
- super
- @bar = 'hello'
- end
-end
-
-module Syck
- class TestStruct < MiniTest::Unit::TestCase
- def setup
- @current_engine = YAML::ENGINE.yamler
- YAML::ENGINE.yamler = 'syck'
- end
-
- def teardown
- YAML::ENGINE.yamler = @current_engine
- end
-
- def test_roundtrip
- thing = StructWithIvar.new('bar')
- struct = YAML.load(YAML.dump(thing))
-
- assert_equal 'hello', struct.bar
- assert_equal 'bar', struct.foo
- end
-
- def test_load
- obj = YAML.load(<<-eoyml)
---- !ruby/struct:StructWithIvar
-foo: bar
-@bar: hello
-eoyml
-
- assert_equal 'hello', obj.bar
- assert_equal 'bar', obj.foo
- end
- end
-end
diff --git a/test/syck/test_symbol.rb b/test/syck/test_symbol.rb
deleted file mode 100644
index 39ffa8bb03..0000000000
--- a/test/syck/test_symbol.rb
+++ /dev/null
@@ -1,22 +0,0 @@
-require 'test/unit'
-require 'yaml'
-
-module Syck
- 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
diff --git a/test/syck/test_time.rb b/test/syck/test_time.rb
deleted file mode 100644
index e3d27121b0..0000000000
--- a/test/syck/test_time.rb
+++ /dev/null
@@ -1,24 +0,0 @@
-require 'test/unit'
-require 'yaml'
-
-module Syck
- class TestString < Test::Unit::TestCase
- def test_usec_long
- bug4571 = '[ruby-core:35713]'
- assert_equal(34, YAML.load("2011-03-22t23:32:11.0000342222+01:00").usec, bug4571)
- end
-
- def test_usec_very_long
- t = "2011-03-22t23:32:11.0000342"+"0"*1000+"1+01:00"
- assert_equal(34, YAML.load(t).usec)
- end
-
- def test_usec_full
- assert_equal(342222, YAML.load("2011-03-22t23:32:11.342222+01:00").usec)
- end
-
- def test_usec_short
- assert_equal(330000, YAML.load("2011-03-22t23:32:11.33+01:00").usec)
- end
- end
-end
diff --git a/test/syck/test_yaml.rb b/test/syck/test_yaml.rb
deleted file mode 100644
index 132bc926c8..0000000000
--- a/test/syck/test_yaml.rb
+++ /dev/null
@@ -1,1414 +0,0 @@
-# -*- mode: ruby; ruby-indent-level: 4; tab-width: 4; indent-tabs-mode: t -*-
-# vim:sw=4:ts=4
-# $Id$
-#
-require 'test/unit'
-require 'syck'
-require 'yaml'
-require 'syck/ypath'
-
-# [ruby-core:01946]
-module YAML_Tests
- StructTest = Struct::new( :c )
-end
-
-module Syck
-class YAML_Unit_Tests < Test::Unit::TestCase
- def setup
- @current_engine = YAML::ENGINE.yamler
- YAML::ENGINE.yamler = 'syck'
- end
-
- def teardown
- YAML::ENGINE.yamler = @current_engine
- end
-
- # [ruby-core:34969]
- def test_regexp_with_n
- assert_cycle(Regexp.new('',0,'n'))
- end
-
- #
- # Convert between YAML and the object to verify correct parsing and
- # emitting
- #
- def assert_to_yaml( obj, yaml, msg = nil )
- assert_equal( obj, YAML::load( yaml ), msg )
- assert_equal( obj, YAML::parse( yaml ).transform, msg )
- assert_equal( obj, YAML::load( obj.to_yaml ), msg )
- assert_equal( obj, YAML::parse( obj.to_yaml ).transform, msg )
- assert_equal( obj, YAML::load(
- obj.to_yaml( :UseVersion => true, :UseHeader => true, :SortKeys => true )
- ), msg )
- end
-
- #
- # Test parser only
- #
- def assert_parse_only( obj, yaml, msg = nil )
- assert_equal( obj, YAML::load( yaml ), msg )
- assert_equal( obj, YAML::parse( yaml ).transform, msg )
- end
-
- def assert_cycle( obj, msg = nil )
- assert_equal( obj, YAML::load( obj.to_yaml ), msg )
- end
-
- def assert_path_segments( path, segments, msg = nil )
- YAML::YPath.each_path( path ) { |choice|
- assert_equal( choice.segments, segments.shift, msg )
- }
- assert_equal( segments.length, 0, "Some segments leftover: #{ segments.inspect }" )
- end
-
- #
- # Make a time with the time zone
- #
- def mktime( year, mon, day, hour, min, sec, usec, zone = "Z" )
- usec = Rational(usec.to_s) * 1000000
- val = Time::utc( year.to_i, mon.to_i, day.to_i, hour.to_i, min.to_i, sec.to_i, usec )
- if zone != "Z"
- hour = zone[0,3].to_i * 3600
- min = zone[3,2].to_i * 60
- ofs = (hour + min)
- val = Time.at( val.tv_sec - ofs, val.tv_nsec / 1000.0 )
- end
- return val
- end
-
- #
- # Tests modified from 00basic.t in YAML.pm
- #
- def test_basic_map
- # Simple map
- assert_parse_only(
- { 'one' => 'foo', 'three' => 'baz', 'two' => 'bar' }, <<EOY
-one: foo
-two: bar
-three: baz
-EOY
- )
- end
-
- def test_basic_strings
- # Common string types
- assert_cycle("x")
- assert_cycle(":x")
- assert_cycle(":")
- assert_parse_only(
- { 1 => 'simple string', 2 => 42, 3 => '1 Single Quoted String',
- 4 => 'YAML\'s Double "Quoted" String', 5 => "A block\n with several\n lines.\n",
- 6 => "A \"chomped\" block", 7 => "A folded\n string\n", 8 => ": started string" },
- <<EOY
-1: simple string
-2: 42
-3: '1 Single Quoted String'
-4: "YAML's Double \\\"Quoted\\\" String"
-5: |
- A block
- with several
- lines.
-6: |-
- A "chomped" block
-7: >
- A
- folded
- string
-8: ": started string"
-EOY
- )
- end
-
- #
- # Test the specification examples
- # - Many examples have been changes because of whitespace problems that
- # caused the two to be inequivalent, or keys to be sorted wrong
- #
-
- def test_spec_simple_implicit_sequence
- # Simple implicit sequence
- assert_to_yaml(
- [ 'Mark McGwire', 'Sammy Sosa', 'Ken Griffey' ], <<EOY
-- Mark McGwire
-- Sammy Sosa
-- Ken Griffey
-EOY
- )
- end
-
- def test_spec_simple_implicit_map
- # Simple implicit map
- assert_to_yaml(
- { 'hr' => 65, 'avg' => 0.278, 'rbi' => 147 }, <<EOY
-avg: 0.278
-hr: 65
-rbi: 147
-EOY
- )
- end
-
- def test_spec_simple_map_with_nested_sequences
- # Simple mapping with nested sequences
- assert_to_yaml(
- { 'american' =>
- [ 'Boston Red Sox', 'Detroit Tigers', 'New York Yankees' ],
- 'national' =>
- [ 'New York Mets', 'Chicago Cubs', 'Atlanta Braves' ] }, <<EOY
-american:
- - Boston Red Sox
- - Detroit Tigers
- - New York Yankees
-national:
- - New York Mets
- - Chicago Cubs
- - Atlanta Braves
-EOY
- )
- end
-
- def test_spec_simple_sequence_with_nested_map
- # Simple sequence with nested map
- assert_to_yaml(
- [
- {'name' => 'Mark McGwire', 'hr' => 65, 'avg' => 0.278},
- {'name' => 'Sammy Sosa', 'hr' => 63, 'avg' => 0.288}
- ], <<EOY
--
- avg: 0.278
- hr: 65
- name: Mark McGwire
--
- avg: 0.288
- hr: 63
- name: Sammy Sosa
-EOY
- )
- end
-
- def test_spec_sequence_of_sequences
- # Simple sequence with inline sequences
- assert_parse_only(
- [
- [ 'name', 'hr', 'avg' ],
- [ 'Mark McGwire', 65, 0.278 ],
- [ 'Sammy Sosa', 63, 0.288 ]
- ], <<EOY
-- [ name , hr , avg ]
-- [ Mark McGwire , 65 , 0.278 ]
-- [ Sammy Sosa , 63 , 0.288 ]
-EOY
- )
- end
-
- def test_spec_mapping_of_mappings
- # Simple map with inline maps
- assert_parse_only(
- { 'Mark McGwire' =>
- { 'hr' => 65, 'avg' => 0.278 },
- 'Sammy Sosa' =>
- { 'hr' => 63, 'avg' => 0.288 }
- }, <<EOY
-Mark McGwire: {hr: 65, avg: 0.278}
-Sammy Sosa: {hr: 63,
- avg: 0.288}
-EOY
- )
- end
-
- def test_ambiguous_comments
- # [ruby-talk:88012]
- assert_to_yaml( "Call the method #dave", <<EOY )
---- "Call the method #dave"
-EOY
- end
-
- def test_spec_nested_comments
- # Map and sequences with comments
- assert_parse_only(
- { 'hr' => [ 'Mark McGwire', 'Sammy Sosa' ],
- 'rbi' => [ 'Sammy Sosa', 'Ken Griffey' ] }, <<EOY
-hr: # 1998 hr ranking
- - Mark McGwire
- - Sammy Sosa
-rbi:
- # 1998 rbi ranking
- - Sammy Sosa
- - Ken Griffey
-EOY
- )
- end
-
- def test_spec_anchors_and_aliases
- # Anchors and aliases
- assert_parse_only(
- { 'hr' =>
- [ 'Mark McGwire', 'Sammy Sosa' ],
- 'rbi' =>
- [ 'Sammy Sosa', 'Ken Griffey' ] }, <<EOY
-hr:
- - Mark McGwire
- # Name "Sammy Sosa" scalar SS
- - &SS Sammy Sosa
-rbi:
- # So it can be referenced later.
- - *SS
- - Ken Griffey
-EOY
- )
-
- assert_to_yaml(
- [{"arrival"=>"EDI", "departure"=>"LAX", "fareref"=>"DOGMA", "currency"=>"GBP"}, {"arrival"=>"MEL", "departure"=>"SYD", "fareref"=>"MADF", "currency"=>"AUD"}, {"arrival"=>"MCO", "departure"=>"JFK", "fareref"=>"DFSF", "currency"=>"USD"}], <<EOY
- -
- &F fareref: DOGMA
- &C currency: GBP
- &D departure: LAX
- &A arrival: EDI
- - { *F: MADF, *C: AUD, *D: SYD, *A: MEL }
- - { *F: DFSF, *C: USD, *D: JFK, *A: MCO }
-EOY
- )
-
- assert_to_yaml(
- {"ALIASES"=>["fareref", "currency", "departure", "arrival"], "FARES"=>[{"arrival"=>"EDI", "departure"=>"LAX", "fareref"=>"DOGMA", "currency"=>"GBP"}, {"arrival"=>"MEL", "departure"=>"SYD", "fareref"=>"MADF", "currency"=>"AUD"}, {"arrival"=>"MCO", "departure"=>"JFK", "fareref"=>"DFSF", "currency"=>"USD"}]}, <<EOY
----
-ALIASES: [&f fareref, &c currency, &d departure, &a arrival]
-FARES:
-- *f: DOGMA
- *c: GBP
- *d: LAX
- *a: EDI
-
-- *f: MADF
- *c: AUD
- *d: SYD
- *a: MEL
-
-- *f: DFSF
- *c: USD
- *d: JFK
- *a: MCO
-
-EOY
- )
-
- end
-
- def test_spec_mapping_between_sequences
- # Complex key #1
- dj = Date.new( 2001, 7, 23 )
- assert_parse_only(
- { [ 'Detroit Tigers', 'Chicago Cubs' ] => [ Date.new( 2001, 7, 23 ) ],
- [ 'New York Yankees', 'Atlanta Braves' ] => [ Date.new( 2001, 7, 2 ), Date.new( 2001, 8, 12 ), Date.new( 2001, 8, 14 ) ] }, <<EOY
-? # PLAY SCHEDULE
- - Detroit Tigers
- - Chicago Cubs
-:
- - 2001-07-23
-
-? [ New York Yankees,
- Atlanta Braves ]
-: [ 2001-07-02, 2001-08-12,
- 2001-08-14 ]
-EOY
- )
-
- # Complex key #2
- assert_parse_only(
- { [ 'New York Yankees', 'Atlanta Braves' ] =>
- [ Date.new( 2001, 7, 2 ), Date.new( 2001, 8, 12 ),
- Date.new( 2001, 8, 14 ) ],
- [ 'Detroit Tigers', 'Chicago Cubs' ] =>
- [ Date.new( 2001, 7, 23 ) ]
- }, <<EOY
-?
- - New York Yankees
- - Atlanta Braves
-:
- - 2001-07-02
- - 2001-08-12
- - 2001-08-14
-?
- - Detroit Tigers
- - Chicago Cubs
-:
- - 2001-07-23
-EOY
- )
- end
-
- def test_spec_sequence_key_shortcut
- # Shortcut sequence map
- assert_parse_only(
- { 'invoice' => 34843, 'date' => Date.new( 2001, 1, 23 ),
- 'bill-to' => 'Chris Dumars', 'product' =>
- [ { 'item' => 'Super Hoop', 'quantity' => 1 },
- { 'item' => 'Basketball', 'quantity' => 4 },
- { 'item' => 'Big Shoes', 'quantity' => 1 } ] }, <<EOY
-invoice: 34843
-date : 2001-01-23
-bill-to: Chris Dumars
-product:
- - item : Super Hoop
- quantity: 1
- - item : Basketball
- quantity: 4
- - item : Big Shoes
- quantity: 1
-EOY
- )
- end
-
- def test_spec_sequence_in_sequence_shortcut
- # Seq-in-seq
- assert_parse_only( [ [ [ 'one', 'two', 'three' ] ] ], <<EOY )
-- - - one
- - two
- - three
-EOY
- end
-
- def test_spec_sequence_shortcuts
- # Sequence shortcuts combined
- assert_parse_only(
-[
- [
- [ [ 'one' ] ],
- [ 'two', 'three' ],
- { 'four' => nil },
- [ { 'five' => [ 'six' ] } ],
- [ 'seven' ]
- ],
- [ 'eight', 'nine' ]
-], <<EOY )
-- - - - one
- - - two
- - three
- - four:
- - - five:
- - six
- - - seven
-- - eight
- - nine
-EOY
- end
-
- def test_spec_single_literal
- # Literal scalar block
- assert_parse_only( [ "\\/|\\/|\n/ | |_\n" ], <<EOY )
-- |
- \\/|\\/|
- / | |_
-EOY
- end
-
- def test_spec_single_folded
- # Folded scalar block
- assert_parse_only(
- [ "Mark McGwire's year was crippled by a knee injury.\n" ], <<EOY
-- >
- Mark McGwire\'s
- year was crippled
- by a knee injury.
-EOY
- )
- end
-
- def test_spec_preserve_indent
- # Preserve indented spaces
- assert_parse_only(
- "Sammy Sosa completed another fine season with great stats.\n\n 63 Home Runs\n 0.288 Batting Average\n\nWhat a year!\n", <<EOY
---- >
- Sammy Sosa completed another
- fine season with great stats.
-
- 63 Home Runs
- 0.288 Batting Average
-
- What a year!
-EOY
- )
- end
-
- def test_spec_indentation_determines_scope
- assert_parse_only(
- { 'name' => 'Mark McGwire', 'accomplishment' => "Mark set a major league home run record in 1998.\n",
- 'stats' => "65 Home Runs\n0.278 Batting Average\n" }, <<EOY
-name: Mark McGwire
-accomplishment: >
- Mark set a major league
- home run record in 1998.
-stats: |
- 65 Home Runs
- 0.278 Batting Average
-EOY
- )
- end
-
- #
- # Reports from N.Easterly & J.Trupiano : Tests with patch from daz
- # [ruby-core:23006] [Bug #1311] http://bugs.ruby-lang.org/issues/show/1311
- #
- def test_scan_scalar_nl
- bug1311 = '[ruby-core:23006]'
- assert_cycle(<<EoY, bug1311)
-
- a
-b
-EoY
- assert_cycle(<<EoY, bug1311)
-
- a
- b
-c
-EoY
- assert_cycle(<<EoY, bug1311)
-
- a
- b
-EoY
- assert_cycle(" Do I work?\nNo indent", bug1311)
- assert_cycle(" \n Do I work?\nNo indent", bug1311)
- assert_cycle("\n Do I work?\nNo indent", bug1311)
- assert_cycle("\n", bug1311)
- assert_cycle("\n\n", bug1311)
- assert_cycle("\r\n", bug1311)
-
- assert_cycle <<EoY, '[ruby-core:28777]'
- Domain name:
- ckgteam.co.uk
-
- Registrant:
- James Gregory
-
- Registrant type:
- UK Individual
-
- Registrant's address:
- The registrant is a non-trading individual who has opted to have their
- address omitted from the WHOIS service.
-
- Registrar:
- Webfusion Ltd t/a 123-Reg.co.uk [Tag = 123-REG]
- URL: http://www.123-reg.co.uk
-
- Relevant dates:
- Registered on: 16-Nov-2009
- Renewal date: 16-Nov-2011
- Last updated: 25-Nov-2009
-
- Registration status:
- Registered until renewal date.
-
- Name servers:
- ns1.slicehost.net
- ns2.slicehost.net
- ns3.slicehost.net
-
- WHOIS lookup made at 11:56:46 19-Mar-2010
-
---
-This WHOIS information is provided for free by Nominet UK the central registry
-for .uk domain names. This information and the .uk WHOIS are:
-
- Copyright Nominet UK 1996 - 2010.
-
-You may not access the .uk WHOIS or use any data from it except as permitted
-by the terms of use available in full at http://www.nominet.org.uk/whois, which
-includes restrictions on: (A) use of the data for advertising, or its
-repackaging, recompilation, redistribution or reuse (B) obscuring, removing
-or hiding any or all of this notice and (C) exceeding query rate or volume
-limits. The data is provided on an 'as-is' basis and may lag behind the
-register. Access may be withdrawn or restricted at any time.
-EoY
-
- end
-
- def test_spec_multiline_scalars
- # Multiline flow scalars
- assert_parse_only(
- { 'plain' => 'This unquoted scalar spans many lines.',
- 'quoted' => "So does this quoted scalar.\n" }, <<EOY
-plain: This unquoted
- scalar spans
- many lines.
-quoted: "\\
- So does this quoted
- scalar.\\n"
-EOY
- )
- end
-
- def test_spec_type_int
- assert_parse_only(
- { 'canonical' => 12345, 'decimal' => 12345, 'octal' => '014'.oct, 'hexadecimal' => '0xC'.hex }, <<EOY
-canonical: 12345
-decimal: +12,345
-octal: 014
-hexadecimal: 0xC
-EOY
- )
- assert_parse_only(
- { 'canonical' => 685230, 'decimal' => 685230, 'octal' => 02472256, 'hexadecimal' => 0x0A74AE, 'sexagesimal' => 685230 }, <<EOY)
-canonical: 685230
-decimal: +685,230
-octal: 02472256
-hexadecimal: 0x0A,74,AE
-sexagesimal: 190:20:30
-EOY
- end
-
- def test_spec_type_float
- assert_parse_only(
- { 'canonical' => 1230.15, 'exponential' => 1230.15, 'fixed' => 1230.15,
- 'negative infinity' => -1.0/0.0 }, <<EOY)
-canonical: 1.23015e+3
-exponential: 12.3015e+02
-fixed: 1,230.15
-negative infinity: -.inf
-EOY
- nan = YAML::load( <<EOY )
-not a number: .NaN
-EOY
- assert( nan['not a number'].nan? )
- end
-
- def test_spec_type_misc
- assert_parse_only(
- { nil => nil, true => true, false => false, 'string' => '12345' }, <<EOY
-null: ~
-true: yes
-false: no
-string: '12345'
-EOY
- )
- end
-
- def test_spec_complex_invoice
- # Complex invoice type
- id001 = { 'given' => 'Chris', 'family' => 'Dumars', 'address' =>
- { 'lines' => "458 Walkman Dr.\nSuite #292\n", 'city' => 'Royal Oak',
- 'state' => 'MI', 'postal' => 48046 } }
- assert_parse_only(
- { 'invoice' => 34843, 'date' => Date.new( 2001, 1, 23 ),
- 'bill-to' => id001, 'ship-to' => id001, 'product' =>
- [ { 'sku' => 'BL394D', 'quantity' => 4,
- 'description' => 'Basketball', 'price' => 450.00 },
- { 'sku' => 'BL4438H', 'quantity' => 1,
- 'description' => 'Super Hoop', 'price' => 2392.00 } ],
- 'tax' => 251.42, 'total' => 4443.52,
- 'comments' => "Late afternoon is best. Backup contact is Nancy Billsmer @ 338-4338.\n" }, <<EOY
-invoice: 34843
-date : 2001-01-23
-bill-to: &id001
- given : Chris
- family : !str Dumars
- address:
- lines: |
- 458 Walkman Dr.
- Suite #292
- city : Royal Oak
- state : MI
- postal : 48046
-ship-to: *id001
-product:
- - !map
- sku : BL394D
- quantity : 4
- description : Basketball
- price : 450.00
- - sku : BL4438H
- quantity : 1
- description : Super Hoop
- price : 2392.00
-tax : 251.42
-total: 4443.52
-comments: >
- Late afternoon is best.
- Backup contact is Nancy
- Billsmer @ 338-4338.
-EOY
- )
- end
-
- def test_spec_log_file
- doc_ct = 0
- YAML::load_documents( <<EOY
----
-Time: 2001-11-23 15:01:42 -05:00
-User: ed
-Warning: >
- This is an error message
- for the log file
----
-Time: 2001-11-23 15:02:31 -05:00
-User: ed
-Warning: >
- A slightly different error
- message.
----
-Date: 2001-11-23 15:03:17 -05:00
-User: ed
-Fatal: >
- Unknown variable "bar"
-Stack:
- - file: TopClass.py
- line: 23
- code: |
- x = MoreObject("345\\n")
- - file: MoreClass.py
- line: 58
- code: |-
- foo = bar
-EOY
- ) { |doc|
- case doc_ct
- when 0
- assert_equal( doc, { 'Time' => mktime( 2001, 11, 23, 15, 01, 42, 00, "-05:00" ),
- 'User' => 'ed', 'Warning' => "This is an error message for the log file\n" } )
- when 1
- assert_equal( doc, { 'Time' => mktime( 2001, 11, 23, 15, 02, 31, 00, "-05:00" ),
- 'User' => 'ed', 'Warning' => "A slightly different error message.\n" } )
- when 2
- assert_equal( doc, { 'Date' => mktime( 2001, 11, 23, 15, 03, 17, 00, "-05:00" ),
- 'User' => 'ed', 'Fatal' => "Unknown variable \"bar\"\n",
- 'Stack' => [
- { 'file' => 'TopClass.py', 'line' => 23, 'code' => "x = MoreObject(\"345\\n\")\n" },
- { 'file' => 'MoreClass.py', 'line' => 58, 'code' => "foo = bar" } ] } )
- end
- doc_ct += 1
- }
- assert_equal( doc_ct, 3 )
- end
-
- def test_spec_root_fold
- y = YAML::load( <<EOY
---- >
-This YAML stream contains a single text value.
-The next stream is a log file - a sequence of
-log entries. Adding an entry to the log is a
-simple matter of appending it at the end.
-EOY
- )
- assert_equal( y, "This YAML stream contains a single text value. The next stream is a log file - a sequence of log entries. Adding an entry to the log is a simple matter of appending it at the end.\n" )
- end
-
- def test_spec_root_mapping
- y = YAML::load( <<EOY
-# This stream is an example of a top-level mapping.
-invoice : 34843
-date : 2001-01-23
-total : 4443.52
-EOY
- )
- assert_equal( y, { 'invoice' => 34843, 'date' => Date.new( 2001, 1, 23 ), 'total' => 4443.52 } )
- end
-
- def test_spec_oneline_docs
- doc_ct = 0
- YAML::load_documents( <<EOY
-# The following is a sequence of three documents.
-# The first contains an empty mapping, the second
-# an empty sequence, and the last an empty string.
---- {}
---- [ ]
---- ''
-EOY
- ) { |doc|
- case doc_ct
- when 0
- assert_equal( doc, {} )
- when 1
- assert_equal( doc, [] )
- when 2
- assert_equal( doc, '' )
- end
- doc_ct += 1
- }
- assert_equal( doc_ct, 3 )
- end
-
- def test_spec_domain_prefix
- customer_proc = proc { |type, val|
- if Hash === val
- scheme, domain, type = type.split( ':', 3 )
- val['type'] = "domain #{type}"
- val
- else
- raise ArgumentError, "Not a Hash in domain.tld,2002/invoice: " + val.inspect
- end
- }
- YAML.add_domain_type( "domain.tld,2002", 'invoice', &customer_proc )
- YAML.add_domain_type( "domain.tld,2002", 'customer', &customer_proc )
- assert_parse_only( { "invoice"=> { "customers"=> [ { "given"=>"Chris", "type"=>"domain customer", "family"=>"Dumars" } ], "type"=>"domain invoice" } }, <<EOY
-# 'http://domain.tld,2002/invoice' is some type family.
-invoice: !domain.tld,2002/^invoice
- # 'seq' is shorthand for 'http://yaml.org/seq'.
- # This does not effect '^customer' below
- # because it is does not specify a prefix.
- customers: !seq
- # '^customer' is shorthand for the full
- # notation 'http://domain.tld,2002/customer'.
- - !^customer
- given : Chris
- family : Dumars
-EOY
- )
- end
-
- def test_spec_throwaway
- assert_parse_only(
- {"this"=>"contains three lines of text.\nThe third one starts with a\n# character. This isn't a comment.\n"}, <<EOY
-### These are four throwaway comment ###
-
-### lines (the second line is empty). ###
-this: | # Comments may trail lines.
- contains three lines of text.
- The third one starts with a
- # character. This isn't a comment.
-
-# These are three throwaway comment
-# lines (the first line is empty).
-EOY
- )
- end
-
- def test_spec_force_implicit
- # Force implicit
- assert_parse_only(
- { 'integer' => 12, 'also int' => 12, 'string' => '12' }, <<EOY
-integer: 12
-also int: ! "12"
-string: !str 12
-EOY
- )
- end
-
- def test_spec_private_types
- doc_ct = 0
- YAML::parse_documents( <<EOY
-# Private types are per-document.
----
-pool: !!ball
- number: 8
- color: black
----
-bearing: !!ball
- material: steel
-EOY
- ) { |doc|
- case doc_ct
- when 0
- assert_equal( doc['pool'].type_id, 'x-private:ball' )
- assert_equal( doc['pool'].transform.value, { 'number' => 8, 'color' => 'black' } )
- when 1
- assert_equal( doc['bearing'].type_id, 'x-private:ball' )
- assert_equal( doc['bearing'].transform.value, { 'material' => 'steel' } )
- end
- doc_ct += 1
- }
- assert_equal( doc_ct, 2 )
- end
-
- def test_spec_url_escaping
- YAML.add_domain_type( "domain.tld,2002", "type0" ) { |type, val|
- "ONE: #{val}"
- }
- YAML.add_domain_type( "domain.tld,2002", "type%30" ) { |type, val|
- "TWO: #{val}"
- }
- assert_parse_only(
- { 'same' => [ 'ONE: value', 'ONE: value' ], 'different' => [ 'TWO: value' ] }, <<EOY
-same:
- - !domain.tld,2002/type\\x30 value
- - !domain.tld,2002/type0 value
-different: # As far as the YAML parser is concerned
- - !domain.tld,2002/type%30 value
-EOY
- )
- end
-
- def test_spec_override_anchor
- # Override anchor
- a001 = "The alias node below is a repeated use of this value.\n"
- assert_parse_only(
- { 'anchor' => 'This scalar has an anchor.', 'override' => a001, 'alias' => a001 }, <<EOY
-anchor : &A001 This scalar has an anchor.
-override : &A001 >
- The alias node below is a
- repeated use of this value.
-alias : *A001
-EOY
- )
- end
-
- def test_spec_explicit_families
- YAML.add_domain_type( "somewhere.com,2002", 'type' ) { |type, val|
- "SOMEWHERE: #{val}"
- }
- assert_parse_only(
- { 'not-date' => '2002-04-28', 'picture' => "GIF89a\f\000\f\000\204\000\000\377\377\367\365\365\356\351\351\345fff\000\000\000\347\347\347^^^\363\363\355\216\216\216\340\340\340\237\237\237\223\223\223\247\247\247\236\236\236i^\020' \202\n\001\000;", 'hmm' => "SOMEWHERE: family above is short for\nhttp://somewhere.com/type\n" }, <<EOY
-not-date: !str 2002-04-28
-picture: !binary |
- R0lGODlhDAAMAIQAAP//9/X
- 17unp5WZmZgAAAOfn515eXv
- Pz7Y6OjuDg4J+fn5OTk6enp
- 56enmleECcgggoBADs=
-
-hmm: !somewhere.com,2002/type |
- family above is short for
- http://somewhere.com/type
-EOY
- )
- end
-
- def test_spec_application_family
- # Testing the clarkevans.com graphs
- YAML.add_domain_type( "clarkevans.com,2002", 'graph/shape' ) { |type, val|
- if Array === val
- val << "Shape Container"
- val
- else
- raise ArgumentError, "Invalid graph of type #{val.class}: " + val.inspect
- end
- }
- one_shape_proc = Proc.new { |type, val|
- if Hash === val
- type = type.split( /:/ )
- val['TYPE'] = "Shape: #{type[2]}"
- val
- else
- raise ArgumentError, "Invalid graph of type #{val.class}: " + val.inspect
- end
- }
- YAML.add_domain_type( "clarkevans.com,2002", 'graph/circle', &one_shape_proc )
- YAML.add_domain_type( "clarkevans.com,2002", 'graph/line', &one_shape_proc )
- YAML.add_domain_type( "clarkevans.com,2002", 'graph/text', &one_shape_proc )
- assert_parse_only(
- [[{"radius"=>7, "center"=>{"x"=>73, "y"=>129}, "TYPE"=>"Shape: graph/circle"}, {"finish"=>{"x"=>89, "y"=>102}, "TYPE"=>"Shape: graph/line", "start"=>{"x"=>73, "y"=>129}}, {"TYPE"=>"Shape: graph/text", "value"=>"Pretty vector drawing.", "start"=>{"x"=>73, "y"=>129}, "color"=>16772795}, "Shape Container"]], <<EOY
-- !clarkevans.com,2002/graph/^shape
- - !^circle
- center: &ORIGIN {x: 73, y: 129}
- radius: 7
- - !^line # !clarkevans.com,2002/graph/line
- start: *ORIGIN
- finish: { x: 89, y: 102 }
- - !^text
- start: *ORIGIN
- color: 0xFFEEBB
- value: Pretty vector drawing.
-EOY
- )
- end
-
- def test_spec_float_explicit
- assert_parse_only(
- [ 10.0, 10.0, 10.0, 10.0 ], <<EOY
-# All entries in the sequence
-# have the same type and value.
-- 10.0
-- !float 10
-- !yaml.org,2002/^float '10'
-- !yaml.org,2002/float "\\
- 1\\
- 0"
-EOY
- )
- end
-
- def test_spec_builtin_seq
- # Assortment of sequences
- assert_parse_only(
- { 'empty' => [], 'in-line' => [ 'one', 'two', 'three', 'four', 'five' ],
- 'nested' => [ 'First item in top sequence', [ 'Subordinate sequence entry' ],
- "A multi-line sequence entry\n", 'Sixth item in top sequence' ] }, <<EOY
-empty: []
-in-line: [ one, two, three # May span lines,
- , four, # indentation is
- five ] # mostly ignored.
-nested:
- - First item in top sequence
- -
- - Subordinate sequence entry
- - >
- A multi-line
- sequence entry
- - Sixth item in top sequence
-EOY
- )
- end
-
- def test_spec_builtin_map
- # Assortment of mappings
- assert_parse_only(
- { 'empty' => {}, 'in-line' => { 'one' => 1, 'two' => 2 },
- 'spanning' => { 'one' => 1, 'two' => 2 },
- 'nested' => { 'first' => 'First entry', 'second' =>
- { 'key' => 'Subordinate mapping' }, 'third' =>
- [ 'Subordinate sequence', {}, 'Previous mapping is empty.',
- { 'A key' => 'value pair in a sequence.', 'A second' => 'key:value pair.' },
- 'The previous entry is equal to the following one.',
- { 'A key' => 'value pair in a sequence.', 'A second' => 'key:value pair.' } ],
- 12.0 => 'This key is a float.', "?\n" => 'This key had to be protected.',
- "\a" => 'This key had to be escaped.',
- "This is a multi-line folded key\n" => "Whose value is also multi-line.\n",
- [ 'This key', 'is a sequence' ] => [ 'With a sequence value.' ] } }, <<EOY
-
-empty: {}
-in-line: { one: 1, two: 2 }
-spanning: { one: 1,
- two: 2 }
-nested:
- first : First entry
- second:
- key: Subordinate mapping
- third:
- - Subordinate sequence
- - { }
- - Previous mapping is empty.
- - A key: value pair in a sequence.
- A second: key:value pair.
- - The previous entry is equal to the following one.
- -
- A key: value pair in a sequence.
- A second: key:value pair.
- !float 12 : This key is a float.
- ? >
- ?
- : This key had to be protected.
- "\\a" : This key had to be escaped.
- ? >
- This is a
- multi-line
- folded key
- : >
- Whose value is
- also multi-line.
- ?
- - This key
- - is a sequence
- :
- - With a sequence value.
-# The following parses correctly,
-# but Ruby 1.6.* fails the comparison!
-# ?
-# This: key
-# is a: mapping
-# :
-# with a: mapping value.
-EOY
- )
- end
-
- def test_spec_builtin_literal_blocks
- # Assortment of literal scalar blocks
- assert_parse_only(
- {"both are equal to"=>" This has no newline.", "is equal to"=>"The \\ ' \" characters may be\nfreely used. Leading white\n space is significant.\n\nLine breaks are significant.\nThus this value contains one\nempty line and ends with a\nsingle line break, but does\nnot start with one.\n", "also written as"=>" This has no newline.", "indented and chomped"=>" This has no newline.", "empty"=>"", "literal"=>"The \\ ' \" characters may be\nfreely used. Leading white\n space is significant.\n\nLine breaks are significant.\nThus this value contains one\nempty line and ends with a\nsingle line break, but does\nnot start with one.\n"}, <<EOY
-empty: |
-
-literal: |
- The \\ ' " characters may be
- freely used. Leading white
- space is significant.
-
- Line breaks are significant.
- Thus this value contains one
- empty line and ends with a
- single line break, but does
- not start with one.
-
-is equal to: "The \\ ' \\" characters may \\
- be\\nfreely used. Leading white\\n space \\
- is significant.\\n\\nLine breaks are \\
- significant.\\nThus this value contains \\
- one\\nempty line and ends with a\\nsingle \\
- line break, but does\\nnot start with one.\\n"
-
-# Comments may follow a nested
-# scalar value. They must be
-# less indented.
-
-# Modifiers may be combined in any order.
-indented and chomped: |2-
- This has no newline.
-
-also written as: |-2
- This has no newline.
-
-both are equal to: " This has no newline."
-EOY
- )
-
- str1 = "This has one newline.\n"
- str2 = "This has no newline."
- str3 = "This has two newlines.\n\n"
- assert_parse_only(
- { 'clipped' => str1, 'same as "clipped" above' => str1,
- 'stripped' => str2, 'same as "stripped" above' => str2,
- 'kept' => str3, 'same as "kept" above' => str3 }, <<EOY
-clipped: |
- This has one newline.
-
-same as "clipped" above: "This has one newline.\\n"
-
-stripped: |-
- This has no newline.
-
-same as "stripped" above: "This has no newline."
-
-kept: |+
- This has two newlines.
-
-same as "kept" above: "This has two newlines.\\n\\n"
-
-EOY
- )
- end
-
- def test_spec_span_single_quote
- assert_parse_only( {"third"=>"a single quote ' must be escaped.", "second"=>"! : \\ etc. can be used freely.", "is same as"=>"this contains six spaces\nand one line break", "empty"=>"", "span"=>"this contains six spaces\nand one line break"}, <<EOY
-empty: ''
-second: '! : \\ etc. can be used freely.'
-third: 'a single quote '' must be escaped.'
-span: 'this contains
- six spaces
-
- and one
- line break'
-is same as: "this contains six spaces\\nand one line break"
-EOY
- )
- end
-
- def test_spec_span_double_quote
- assert_parse_only( {"is equal to"=>"this contains four spaces", "third"=>"a \" or a \\ must be escaped.", "second"=>"! : etc. can be used freely.", "empty"=>"", "fourth"=>"this value ends with an LF.\n", "span"=>"this contains four spaces"}, <<EOY
-empty: ""
-second: "! : etc. can be used freely."
-third: "a \\\" or a \\\\ must be escaped."
-fourth: "this value ends with an LF.\\n"
-span: "this contains
- four \\
- spaces"
-is equal to: "this contains four spaces"
-EOY
- )
- end
-
- def test_spec_builtin_time
- # Time
- assert_parse_only(
- { "space separated" => mktime( 2001, 12, 14, 21, 59, 43, ".10", "-05:00" ),
- "canonical" => mktime( 2001, 12, 15, 2, 59, 43, ".10" ),
- "date (noon UTC)" => Date.new( 2002, 12, 14),
- "valid iso8601" => mktime( 2001, 12, 14, 21, 59, 43, ".10", "-05:00" ) }, <<EOY
-canonical: 2001-12-15T02:59:43.1Z
-valid iso8601: 2001-12-14t21:59:43.10-05:00
-space separated: 2001-12-14 21:59:43.10 -05:00
-date (noon UTC): 2002-12-14
-EOY
- )
- end
-
- def test_spec_builtin_binary
- arrow_gif = "GIF89a\f\000\f\000\204\000\000\377\377\367\365\365\356\351\351\345fff\000\000\000\347\347\347^^^\363\363\355\216\216\216\340\340\340\237\237\237\223\223\223\247\247\247\236\236\236iiiccc\243\243\243\204\204\204\377\376\371\377\376\371\377\376\371\377\376\371\377\376\371\377\376\371\377\376\371\377\376\371\377\376\371\377\376\371\377\376\371\377\376\371\377\376\371\377\376\371!\376\016Made with GIMP\000,\000\000\000\000\f\000\f\000\000\005, \216\2010\236\343@\024\350i\020\304\321\212\010\034\317\200M$z\357\3770\205p\270\2601f\r\e\316\001\303\001\036\020' \202\n\001\000;"
- assert_parse_only(
- { 'canonical' => arrow_gif, 'base64' => arrow_gif,
- 'description' => "The binary value above is a tiny arrow encoded as a gif image.\n" }, <<EOY
-canonical: !binary "\\
- R0lGODlhDAAMAIQAAP//9/X17unp5WZmZgAAAOf\\
- n515eXvPz7Y6OjuDg4J+fn5OTk6enp56enmlpaW\\
- NjY6Ojo4SEhP/++f/++f/++f/++f/++f/++f/++\\
- f/++f/++f/++f/++f/++f/++f/++SH+Dk1hZGUg\\
- d2l0aCBHSU1QACwAAAAADAAMAAAFLCAgjoEwnuN\\
- AFOhpEMTRiggcz4BNJHrv/zCFcLiwMWYNG84Bww\\
- EeECcgggoBADs="
-base64: !binary |
- R0lGODlhDAAMAIQAAP//9/X17unp5WZmZgAAAOf
- n515eXvPz7Y6OjuDg4J+fn5OTk6enp56enmlpaW
- NjY6Ojo4SEhP/++f/++f/++f/++f/++f/++f/++
- f/++f/++f/++f/++f/++f/++f/++SH+Dk1hZGUg
- d2l0aCBHSU1QACwAAAAADAAMAAAFLCAgjoEwnuN
- AFOhpEMTRiggcz4BNJHrv/zCFcLiwMWYNG84Bww
- EeECcgggoBADs=
-description: >
- The binary value above is a tiny arrow
- encoded as a gif image.
-EOY
- )
- end
- def test_ruby_regexp
- # Test Ruby regular expressions
- assert_to_yaml(
- { 'simple' => /a.b/, 'complex' => %r'\A"((?:[^"]|\")+)"',
- 'case-insensitive' => /George McFly/i }, <<EOY
-case-insensitive: !ruby/regexp "/George McFly/i"
-complex: !ruby/regexp "/\\\\A\\"((?:[^\\"]|\\\\\\")+)\\"/"
-simple: !ruby/regexp "/a.b/"
-EOY
- )
- end
-
- #
- # Test of Ranges
- #
- def test_ranges
-
- # Simple numeric
- assert_to_yaml( 1..3, <<EOY )
---- !ruby/range 1..3
-EOY
-
- # Simple alphabetic
- assert_to_yaml( 'a'..'z', <<EOY )
---- !ruby/range a..z
-EOY
-
- # Float
- assert_to_yaml( 10.5...30.3, <<EOY )
---- !ruby/range 10.5...30.3
-EOY
-
- end
-
- def test_ruby_struct
- # Ruby structures
- book_struct = Struct::new( "BookStruct", :author, :title, :year, :isbn )
- assert_to_yaml(
- [ book_struct.new( "Yukihiro Matsumoto", "Ruby in a Nutshell", 2002, "0-596-00214-9" ),
- book_struct.new( [ 'Dave Thomas', 'Andy Hunt' ], "The Pickaxe", 2002,
- book_struct.new( "This should be the ISBN", "but I have another struct here", 2002, "None" )
- ) ], <<EOY
-- !ruby/struct:BookStruct
- author: Yukihiro Matsumoto
- title: Ruby in a Nutshell
- year: 2002
- isbn: 0-596-00214-9
-- !ruby/struct:BookStruct
- author:
- - Dave Thomas
- - Andy Hunt
- title: The Pickaxe
- year: 2002
- isbn: !ruby/struct:BookStruct
- author: This should be the ISBN
- title: but I have another struct here
- year: 2002
- isbn: None
-EOY
- )
-
- assert_to_yaml( YAML_Tests::StructTest.new( 123 ), <<EOY )
---- !ruby/struct:YAML_Tests::StructTest
-c: 123
-EOY
-
- end
-
- def test_ruby_rational
- assert_to_yaml( Rational(1, 2), <<EOY )
---- !ruby/object:Rational
-numerator: 1
-denominator: 2
-EOY
-
- # Read YAML dumped by the ruby 1.8.3.
- assert_to_yaml( Rational(1, 2), "!ruby/object:Rational 1/2\n" )
- assert_raise( ArgumentError ) { YAML.load("!ruby/object:Rational INVALID/RATIONAL\n") }
- end
-
- def test_ruby_complex
- assert_to_yaml( Complex(3, 4), <<EOY )
---- !ruby/object:Complex
-image: 4
-real: 3
-EOY
-
- # Read YAML dumped by the ruby 1.8.3.
- assert_to_yaml( Complex(3, 4), "!ruby/object:Complex 3+4i\n" )
- assert_raise( ArgumentError ) { YAML.load("!ruby/object:Complex INVALID+COMPLEXi\n") }
- end
-
- def test_emitting_indicators
- assert_to_yaml( "Hi, from Object 1. You passed: please, pretty please", <<EOY
---- "Hi, from Object 1. You passed: please, pretty please"
-EOY
- )
- end
-
- #
- # Test the YAML::Stream class -- INACTIVE at the moment
- #
- def test_document
- y = YAML::Stream.new( :Indent => 2, :UseVersion => 0 )
- y.add(
- { 'hi' => 'hello', 'map' =>
- { 'good' => 'two' },
- 'time' => Time.now,
- 'try' => /^po(.*)$/,
- 'bye' => 'goodbye'
- }
- )
- y.add( { 'po' => 'nil', 'oper' => 90 } )
- y.add( { 'hi' => 'wow!', 'bye' => 'wow!' } )
- y.add( { [ 'Red Socks', 'Boston' ] => [ 'One', 'Two', 'Three' ] } )
- y.add( [ true, false, false ] )
- end
-
- #
- # Test YPath choices parsing
- #
- def test_ypath_parsing
- assert_path_segments( "/*/((one|three)/name|place)|//place",
- [ ["*", "one", "name"],
- ["*", "three", "name"],
- ["*", "place"],
- ["/", "place"] ]
- )
- end
-
- #
- # Tests from Tanaka Akira on [ruby-core]
- #
- def test_akira
-
- # Commas in plain scalars [ruby-core:1066]
- assert_to_yaml(
- {"A"=>"A,","B"=>"B"}, <<EOY
-A: "A,"
-B: B
-EOY
- )
-
- # Double-quoted keys [ruby-core:1069]
- assert_to_yaml(
- {"1"=>2, "2"=>3}, <<EOY
-'1': 2
-"2": 3
-EOY
- )
-
- # Anchored mapping [ruby-core:1071]
- assert_to_yaml(
- [{"a"=>"b"}] * 2, <<EOY
-- &id001
- a: b
-- *id001
-EOY
- )
-
- # Stress test [ruby-core:1071]
- # a = []; 1000.times { a << {"a"=>"b", "c"=>"d"} }
- # YAML::load( a.to_yaml )
-
- end
-
- #
- # Test Time.now cycle
- #
- def test_time_now_cycle
- #
- # From Minero Aoki [ruby-core:2305]
- #
- require 'yaml'
- t = Time.now
- t = Time.at(t.tv_sec, t.tv_usec)
- 5.times do
- assert_cycle(t)
- end
- end
-
- #
- # Test Range cycle
- #
- def test_range_cycle
- #
- # From Minero Aoki [ruby-core:02306]
- #
- assert_cycle("a".."z")
-
- #
- # From Nobu Nakada [ruby-core:02311]
- #
- assert_cycle(0..1)
- assert_cycle(1.0e20 .. 2.0e20)
- assert_cycle("0".."1")
- assert_cycle(".."..."...")
- assert_cycle(".rb"..".pl")
- assert_cycle(".rb"...".pl")
- assert_cycle('"'...".")
- assert_cycle("'"...".")
- end
-
- #
- # Circular references
- #
- def test_circular_references
- a = []; a[0] = a; a[1] = a
- inspect_str = "[[...], [...]]"
- assert_equal( inspect_str, YAML::load( a.to_yaml ).inspect )
- end
-
- #
- # Test Symbol cycle
- #
- def test_symbol_cycle
- #
- # From Aaron Schrab [ruby-Bugs:2535]
- #
- assert_cycle(:"^foo")
- end
-
- #
- # Test Numeric cycle
- #
- class NumericTest < Numeric
- def initialize(value)
- @value = value
- end
- def ==(other)
- @value == other.instance_eval{ @value }
- end
- end
- def test_numeric_cycle
- assert_cycle(1) # Fixnum
- assert_cycle(111111111111111111111111111111111) # Bignum
- assert_cycle(NumericTest.new(3)) # Subclass of Numeric
- end
-
- #
- # Test empty map/seq in map cycle
- #
- def test_empty_map_key
- #
- # empty seq as key
- #
- o = YAML.load({[]=>""}.to_yaml)
- assert_equal(Hash, o.class)
- assert_equal([[]], o.keys)
-
- #
- # empty map as key
- #
- o = YAML.load({{}=>""}.to_yaml)
- assert_equal(Hash, o.class)
- assert_equal([{}], o.keys)
- end
-
- #
- # contributed by riley lynch [ruby-Bugs-8548]
- #
- def test_object_id_collision
- omap = YAML::Omap.new
- 1000.times { |i| omap["key_#{i}"] = { "value" => i } }
- raise "id collision in ordered map" if omap.to_yaml =~ /id\d+/
- end
-
- def test_date_out_of_range
- assert_nothing_raised{YAML::load('1900-01-01T00:00:00+00:00')}
- end
-
- def test_normal_exit
- YAML.load("2000-01-01 00:00:00.#{"0"*1000} +00:00\n")
- # '[ruby-core:13735]'
- end
-end
-end
diff --git a/test/syck/test_yaml_properties.rb b/test/syck/test_yaml_properties.rb
deleted file mode 100644
index 2df2e1cf76..0000000000
--- a/test/syck/test_yaml_properties.rb
+++ /dev/null
@@ -1,64 +0,0 @@
-require 'test/unit'
-require 'yaml'
-
-module Syck
- 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
diff --git a/test/syck/test_yamldbm.rb b/test/syck/test_yamldbm.rb
deleted file mode 100644
index a736f20a33..0000000000
--- a/test/syck/test_yamldbm.rb
+++ /dev/null
@@ -1,194 +0,0 @@
-# -*- coding: UTF-8 -*-
-begin
- require 'test/unit'
- require 'yaml/dbm'
- require 'tmpdir'
-rescue LoadError
-end
-
-module Syck
- ::Syck::DBM = ::YAML::DBM unless defined?(::Syck::DBM)
-
- class YAMLDBMTest < Test::Unit::TestCase
- def setup
- @engine, YAML::ENGINE.yamler = YAML::ENGINE.yamler, 'syck'
- @dir = Dir.mktmpdir("rubytest-file")
- File.chown(-1, Process.gid, @dir)
- @yamldbm_file = make_tmp_filename("yamldbm")
- @yamldbm = YAML::DBM.new(@yamldbm_file)
- end
-
- def teardown
- YAML::ENGINE.yamler = @engine
- @yamldbm.clear
- @yamldbm.close
- FileUtils.remove_entry_secure @dir
- end
-
- def make_tmp_filename(prefix)
- @dir + "/" + prefix + File.basename(__FILE__) + ".#{$$}.test"
- end
-
- def test_store
- @yamldbm.store('a','b')
- @yamldbm.store('c','d')
- assert_equal 'b', @yamldbm['a']
- assert_equal 'd', @yamldbm['c']
- assert_nil @yamldbm['e']
- end
-
- def test_store_using_carret
- @yamldbm['a'] = 'b'
- @yamldbm['c'] = 'd'
- assert_equal 'b', @yamldbm['a']
- assert_equal 'd', @yamldbm['c']
- assert_nil @yamldbm['e']
- end
-
- def test_to_a
- @yamldbm['a'] = 'b'
- @yamldbm['c'] = 'd'
- assert_equal([['a','b'],['c','d']], @yamldbm.to_a.sort)
- end
-
- def test_to_hash
- @yamldbm['a'] = 'b'
- @yamldbm['c'] = 'd'
- assert_equal({'a'=>'b','c'=>'d'}, @yamldbm.to_hash)
- end
-
- def test_has_value?
- @yamldbm['a'] = 'b'
- @yamldbm['c'] = 'd'
- assert_equal true, @yamldbm.has_value?('b')
- assert_equal true, @yamldbm.has_value?('d')
- assert_equal false, @yamldbm.has_value?('f')
- end
-
- # Note:
- # YAML::DBM#index makes warning from internal of ::DBM#index.
- # It says 'DBM#index is deprecated; use DBM#key', but DBM#key
- # behaves not same as DBM#index.
- #
- # def test_index
- # @yamldbm['a'] = 'b'
- # @yamldbm['c'] = 'd'
- # assert_equal 'a', @yamldbm.index('b')
- # assert_equal 'c', @yamldbm.index('d')
- # assert_nil @yamldbm.index('f')
- # end
-
- def test_key
- @yamldbm['a'] = 'b'
- @yamldbm['c'] = 'd'
- assert_equal 'a', @yamldbm.key('b')
- assert_equal 'c', @yamldbm.key('d')
- assert_nil @yamldbm.key('f')
- end
-
- def test_fetch
- assert_equal('bar', @yamldbm['foo']='bar')
- assert_equal('bar', @yamldbm.fetch('foo'))
- assert_nil @yamldbm.fetch('bar')
- assert_equal('baz', @yamldbm.fetch('bar', 'baz'))
- assert_equal('foobar', @yamldbm.fetch('bar') {|key| 'foo' + key })
- end
-
- def test_shift
- @yamldbm['a'] = 'b'
- @yamldbm['c'] = 'd'
- assert_equal([['a','b'], ['c','d']],
- [@yamldbm.shift, @yamldbm.shift].sort)
- assert_nil @yamldbm.shift
- end
-
- def test_invert
- @yamldbm['a'] = 'b'
- @yamldbm['c'] = 'd'
- assert_equal({'b'=>'a','d'=>'c'}, @yamldbm.invert)
- end
-
- def test_update
- @yamldbm['a'] = 'b'
- @yamldbm['c'] = 'd'
- @yamldbm.update({'c'=>'d','e'=>'f'})
- assert_equal 'b', @yamldbm['a']
- assert_equal 'd', @yamldbm['c']
- assert_equal 'f', @yamldbm['e']
- end
-
- def test_replace
- @yamldbm['a'] = 'b'
- @yamldbm['c'] = 'd'
- @yamldbm.replace({'c'=>'d','e'=>'f'})
- assert_nil @yamldbm['a']
- assert_equal 'd', @yamldbm['c']
- assert_equal 'f', @yamldbm['e']
- end
-
- def test_delete
- @yamldbm['a'] = 'b'
- @yamldbm['c'] = 'd'
- assert_equal 'b', @yamldbm.delete('a')
- assert_nil @yamldbm['a']
- assert_equal 'd', @yamldbm['c']
- assert_nil @yamldbm.delete('e')
- end
-
- def test_delete_if
- @yamldbm['a'] = 'b'
- @yamldbm['c'] = 'd'
- @yamldbm['e'] = 'f'
-
- @yamldbm.delete_if {|k,v| k == 'a'}
- assert_nil @yamldbm['a']
- assert_equal 'd', @yamldbm['c']
- assert_equal 'f', @yamldbm['e']
-
- @yamldbm.delete_if {|k,v| v == 'd'}
- assert_nil @yamldbm['c']
- assert_equal 'f', @yamldbm['e']
-
- @yamldbm.delete_if {|k,v| false }
- assert_equal 'f', @yamldbm['e']
- end
-
- def test_reject
- @yamldbm['a'] = 'b'
- @yamldbm['c'] = 'd'
- @yamldbm['e'] = 'f'
- assert_equal({'c'=>'d','e'=>'f'}, @yamldbm.reject {|k,v| k == 'a'})
- assert_equal({'a'=>'b','e'=>'f'}, @yamldbm.reject {|k,v| v == 'd'})
- assert_equal({'a'=>'b','c'=>'d','e'=>'f'}, @yamldbm.reject {false})
- end
-
- def test_values
- assert_equal [], @yamldbm.values
- @yamldbm['a'] = 'b'
- @yamldbm['c'] = 'd'
- assert_equal ['b','d'], @yamldbm.values.sort
- end
-
- def test_values_at
- @yamldbm['a'] = 'b'
- @yamldbm['c'] = 'd'
- assert_equal ['b','d'], @yamldbm.values_at('a','c')
- end
-
- def test_selsct
- @yamldbm['a'] = 'b'
- @yamldbm['c'] = 'd'
- @yamldbm['e'] = 'f'
- assert_equal(['b','d'], @yamldbm.select('a','c'))
- end
-
- def test_selsct_with_block
- @yamldbm['a'] = 'b'
- @yamldbm['c'] = 'd'
- @yamldbm['e'] = 'f'
- assert_equal([['a','b']], @yamldbm.select {|k,v| k == 'a'})
- assert_equal([['c','d']], @yamldbm.select {|k,v| v == 'd'})
- assert_equal([], @yamldbm.select {false})
- end
- end
-end if defined?(YAML::DBM)
diff --git a/test/syck/test_yamlstore.rb b/test/syck/test_yamlstore.rb
deleted file mode 100644
index 932e28152a..0000000000
--- a/test/syck/test_yamlstore.rb
+++ /dev/null
@@ -1,87 +0,0 @@
-require 'test/unit'
-require 'yaml/store'
-require 'tmpdir'
-
-module Syck
- Store = YAML::Store unless defined?(Store)
-
- class YAMLStoreTest < Test::Unit::TestCase
- def setup
- @engine, YAML::ENGINE.yamler = YAML::ENGINE.yamler, 'syck'
- @dir = Dir.mktmpdir("rubytest-file")
- File.chown(-1, Process.gid, @dir)
- @yamlstore_file = make_tmp_filename("yamlstore")
- @yamlstore = YAML::Store.new(@yamlstore_file)
- end
-
- def teardown
- YAML::ENGINE.yamler = @engine
- FileUtils.remove_entry_secure @dir
- end
-
- def make_tmp_filename(prefix)
- @dir + "/" + prefix + File.basename(__FILE__) + ".#{$$}.test"
- end
-
- def test_opening_new_file_in_readonly_mode_should_result_in_empty_values
- @yamlstore.transaction(true) do
- assert_nil @yamlstore[:foo]
- assert_nil @yamlstore[:bar]
- end
- end
-
- def test_opening_new_file_in_readwrite_mode_should_result_in_empty_values
- @yamlstore.transaction do
- assert_nil @yamlstore[:foo]
- assert_nil @yamlstore[:bar]
- end
- end
-
- def test_data_should_be_loaded_correctly_when_in_readonly_mode
- @yamlstore.transaction do
- @yamlstore[:foo] = "bar"
- end
- @yamlstore.transaction(true) do
- assert_equal "bar", @yamlstore[:foo]
- end
- end
-
- def test_data_should_be_loaded_correctly_when_in_readwrite_mode
- @yamlstore.transaction do
- @yamlstore[:foo] = "bar"
- end
- @yamlstore.transaction do
- assert_equal "bar", @yamlstore[:foo]
- end
- end
-
- def test_changes_after_commit_are_discarded
- @yamlstore.transaction do
- @yamlstore[:foo] = "bar"
- @yamlstore.commit
- @yamlstore[:foo] = "baz"
- end
- @yamlstore.transaction(true) do
- assert_equal "bar", @yamlstore[:foo]
- end
- end
-
- def test_changes_are_not_written_on_abort
- @yamlstore.transaction do
- @yamlstore[:foo] = "bar"
- @yamlstore.abort
- end
- @yamlstore.transaction(true) do
- assert_nil @yamlstore[:foo]
- end
- end
-
- def test_writing_inside_readonly_transaction_raises_error
- assert_raise(PStore::Error) do
- @yamlstore.transaction(true) do
- @yamlstore[:foo] = "bar"
- end
- end
- end
- end
-end