summaryrefslogtreecommitdiff
path: root/tests/test_json_generic_object.rb
blob: abeb8df78423f403d54d854557b493420a13f05e (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
#!/usr/bin/env ruby
# -*- coding: utf-8 -*-

require 'test/unit'
require File.join(File.dirname(__FILE__), 'setup_variant')
class TestJSONGenericObject < Test::Unit::TestCase
  include JSON

  def setup
    @go = GenericObject[ :a => 1, :b => 2 ]
  end

  def test_attributes
    assert_equal 1, @go.a
    assert_equal 1, @go[:a]
    assert_equal 2, @go.b
    assert_equal 2, @go[:b]
    assert_nil @go.c
    assert_nil @go[:c]
  end

  def test_generate_json
    assert_equal @go, JSON(JSON(@go))
  end

  def test_parse_json
    assert_equal @go, l = JSON('{ "json_class": "JSON::GenericObject", "a": 1, "b": 2 }')
    assert_equal 1, l.a
    assert_equal @go, l = JSON('{ "a": 1, "b": 2 }', :object_class => GenericObject)
    assert_equal 1, l.a
    assert_equal GenericObject[:a => GenericObject[:b => 2]],
      l = JSON('{ "a": { "b": 2 } }', :object_class => GenericObject)
    assert_equal 2, l.a.b
  end

  def test_from_hashes
    result  = GenericObject.from_hashes(:foo => { :bar => { :baz => true } })
    assert_kind_of GenericObject, result.foo
    assert_kind_of GenericObject, result.foo.bar
    assert_equal   true, result.foo.bar.baz
  end
end