2017-07-14 09:15:58 +03:00
|
|
|
# frozen_string_literal: true
|
2013-03-26 18:55:04 +04:00
|
|
|
require_relative 'helper'
|
2010-03-29 01:49:37 +04:00
|
|
|
|
|
|
|
module Psych
|
|
|
|
class TestJSONTree < TestCase
|
|
|
|
def test_string
|
2011-01-17 20:48:09 +03:00
|
|
|
assert_match(/"foo"/, Psych.to_json("foo"))
|
2010-03-29 01:49:37 +04:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_symbol
|
2011-01-17 20:48:09 +03:00
|
|
|
assert_match(/"foo"/, Psych.to_json(:foo))
|
2010-03-29 01:49:37 +04:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_nil
|
|
|
|
assert_match(/^null/, Psych.to_json(nil))
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_int
|
|
|
|
assert_match(/^10/, Psych.to_json(10))
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_float
|
|
|
|
assert_match(/^1.2/, Psych.to_json(1.2))
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_hash
|
|
|
|
hash = { 'one' => 'two' }
|
|
|
|
json = Psych.to_json(hash)
|
|
|
|
assert_match(/}$/, json)
|
|
|
|
assert_match(/^\{/, json)
|
|
|
|
assert_match(/['"]one['"]/, json)
|
|
|
|
assert_match(/['"]two['"]/, json)
|
|
|
|
end
|
|
|
|
|
2011-02-21 04:56:10 +03:00
|
|
|
class Bar
|
|
|
|
def encode_with coder
|
|
|
|
coder.represent_seq 'omg', %w{ a b c }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_json_list_dump_exclude_tag
|
|
|
|
json = Psych.to_json Bar.new
|
|
|
|
refute_match('omg', json)
|
|
|
|
end
|
|
|
|
|
2010-03-29 01:49:37 +04:00
|
|
|
def test_list_to_json
|
|
|
|
list = %w{ one two }
|
|
|
|
json = Psych.to_json(list)
|
2014-11-20 11:04:29 +03:00
|
|
|
assert_match(/\]$/, json)
|
2010-03-29 01:49:37 +04:00
|
|
|
assert_match(/^\[/, json)
|
2011-01-17 20:48:09 +03:00
|
|
|
assert_match(/"one"/, json)
|
|
|
|
assert_match(/"two"/, json)
|
2010-03-29 01:49:37 +04:00
|
|
|
end
|
2011-01-20 03:20:57 +03:00
|
|
|
|
|
|
|
def test_time
|
2011-01-22 05:18:21 +03:00
|
|
|
time = Time.utc(2010, 10, 10)
|
2011-05-04 03:06:19 +04:00
|
|
|
assert_equal "{\"a\": \"2010-10-10 00:00:00.000000000 Z\"}\n",
|
2011-01-22 05:18:21 +03:00
|
|
|
Psych.to_json({'a' => time })
|
2011-01-20 03:20:57 +03:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_datetime
|
|
|
|
time = Time.new(2010, 10, 10).to_datetime
|
|
|
|
assert_equal "{\"a\": \"#{time.strftime("%Y-%m-%d %H:%M:%S.%9N %:z")}\"}\n", Psych.to_json({'a' => time })
|
|
|
|
end
|
2010-03-29 01:49:37 +04:00
|
|
|
end
|
|
|
|
end
|