summaryrefslogtreecommitdiff
path: root/test/syck/test_omap.rb
blob: 8a2d7075b6ea7a5deaa8b3a8a1d082d71bc9e391 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
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