summaryrefslogtreecommitdiff
path: root/test/json/test_json_common_interface.rb
diff options
context:
space:
mode:
authorhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-07-13 13:27:07 +0000
committerhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-07-13 13:27:07 +0000
commita7b5d454667f9926377b9f230b86bc68c7ed2c6c (patch)
treedde765297172e03671627888ffa8d38a69322c71 /test/json/test_json_common_interface.rb
parent2ac58e689131e368a0148b05856054c0e04d7409 (diff)
* test/lib/test/unit.rb: added test files with `_test` suffix for json
upstream. * test/json: merge original test files from json upstream. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55667 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/json/test_json_common_interface.rb')
-rw-r--r--test/json/test_json_common_interface.rb126
1 files changed, 0 insertions, 126 deletions
diff --git a/test/json/test_json_common_interface.rb b/test/json/test_json_common_interface.rb
deleted file mode 100644
index 3b222b35e0..0000000000
--- a/test/json/test_json_common_interface.rb
+++ /dev/null
@@ -1,126 +0,0 @@
-# frozen_string_literal: false
-require 'test_helper'
-require 'stringio'
-require 'tempfile'
-
-class TestJSONCommonInterface < Test::Unit::TestCase
- include JSON
-
- def setup
- @hash = {
- 'a' => 2,
- 'b' => 3.141,
- 'c' => 'c',
- 'd' => [ 1, "b", 3.14 ],
- 'e' => { 'foo' => 'bar' },
- 'g' => "\"\0\037",
- 'h' => 1000.0,
- 'i' => 0.001
- }
- @json = '{"a":2,"b":3.141,"c":"c","d":[1,"b",3.14],"e":{"foo":"bar"},'\
- '"g":"\\"\\u0000\\u001f","h":1000.0,"i":0.001}'
- end
-
- def test_index
- assert_equal @json, JSON[@hash]
- assert_equal @hash, JSON[@json]
- end
-
- def test_parser
- assert_match /::Parser\z/, JSON.parser.name
- end
-
- def test_generator
- assert_match /::Generator\z/, JSON.generator.name
- end
-
- def test_state
- assert_match /::Generator::State\z/, JSON.state.name
- end
-
- def test_create_id
- assert_equal 'json_class', JSON.create_id
- JSON.create_id = 'foo_bar'
- assert_equal 'foo_bar', JSON.create_id
- ensure
- JSON.create_id = 'json_class'
- end
-
- def test_deep_const_get
- assert_raise(ArgumentError) { JSON.deep_const_get('Nix::Da') }
- assert_equal File::SEPARATOR, JSON.deep_const_get('File::SEPARATOR')
- end
-
- def test_parse
- assert_equal [ 1, 2, 3, ], JSON.parse('[ 1, 2, 3 ]')
- end
-
- def test_parse_bang
- assert_equal [ 1, NaN, 3, ], JSON.parse!('[ 1, NaN, 3 ]')
- end
-
- def test_generate
- assert_equal '[1,2,3]', JSON.generate([ 1, 2, 3 ])
- end
-
- def test_fast_generate
- assert_equal '[1,2,3]', JSON.generate([ 1, 2, 3 ])
- end
-
- def test_pretty_generate
- assert_equal "[\n 1,\n 2,\n 3\n]", JSON.pretty_generate([ 1, 2, 3 ])
- end
-
- def test_load
- assert_equal @hash, JSON.load(@json)
- tempfile = Tempfile.open('@json')
- tempfile.write @json
- tempfile.rewind
- assert_equal @hash, JSON.load(tempfile)
- stringio = StringIO.new(@json)
- stringio.rewind
- assert_equal @hash, JSON.load(stringio)
- assert_equal nil, JSON.load(nil)
- assert_equal nil, JSON.load('')
- ensure
- tempfile.close!
- end
-
- def test_load_with_options
- json = '{ "foo": NaN }'
- assert JSON.load(json, nil, :allow_nan => true)['foo'].nan?
- end
-
- def test_load_null
- assert_equal nil, JSON.load(nil, nil, :allow_blank => true)
- assert_raise(TypeError) { JSON.load(nil, nil, :allow_blank => false) }
- assert_raise(JSON::ParserError) { JSON.load('', nil, :allow_blank => false) }
- end
-
- def test_dump
- too_deep = '[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]'
- assert_equal too_deep, dump(eval(too_deep))
- assert_kind_of String, Marshal.dump(eval(too_deep))
- assert_raise(ArgumentError) { dump(eval(too_deep), 100) }
- assert_raise(ArgumentError) { Marshal.dump(eval(too_deep), 100) }
- assert_equal too_deep, dump(eval(too_deep), 101)
- assert_kind_of String, Marshal.dump(eval(too_deep), 101)
- output = StringIO.new
- dump(eval(too_deep), output)
- assert_equal too_deep, output.string
- output = StringIO.new
- dump(eval(too_deep), output, 101)
- assert_equal too_deep, output.string
- end
-
- def test_dump_should_modify_defaults
- max_nesting = JSON.dump_default_options[:max_nesting]
- dump([], StringIO.new, 10)
- assert_equal max_nesting, JSON.dump_default_options[:max_nesting]
- end
-
- def test_JSON
- assert_equal @json, JSON(@hash)
- assert_equal @hash, JSON(@json)
- end
-end