2010-08-23 22:07:50 +00:00
|
|
|
# Copyright 2010 Google Inc.
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
require 'json'
|
2010-09-18 00:30:02 +00:00
|
|
|
require 'google/api_client/parsers/json_parser'
|
2010-08-23 22:07:50 +00:00
|
|
|
|
|
|
|
describe Google::APIClient::JSONParser, 'generates json from hash' do
|
|
|
|
before do
|
2010-09-18 00:30:02 +00:00
|
|
|
@parser = Google::APIClient::JSONParser
|
2010-08-23 22:07:50 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'should translate simple hash to JSON string' do
|
2010-09-18 00:30:02 +00:00
|
|
|
@parser.serialize('test' => 23).should == '{"test":23}'
|
2010-08-23 22:07:50 +00:00
|
|
|
end
|
2010-09-18 00:30:02 +00:00
|
|
|
|
2010-08-24 19:22:53 +00:00
|
|
|
it 'should translate simple nested into to nested JSON string' do
|
2010-09-18 00:30:02 +00:00
|
|
|
@parser.serialize({
|
|
|
|
'test' => 23, 'test2' => {'foo' => 'baz', 12 => 3.14 }
|
|
|
|
}).should ==
|
|
|
|
'{"test2":{"12":3.14,"foo":"baz"},"test":23}'
|
2010-08-24 19:22:53 +00:00
|
|
|
end
|
2010-08-23 22:07:50 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
describe Google::APIClient::JSONParser, 'parses json string into hash' do
|
|
|
|
before do
|
2010-09-18 00:30:02 +00:00
|
|
|
@parser = Google::APIClient::JSONParser
|
2010-08-23 22:07:50 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'should parse simple json string into hash' do
|
|
|
|
@parser.parse('{"test":23}').should == {'test' => 23}
|
|
|
|
end
|
2010-08-24 19:22:53 +00:00
|
|
|
|
|
|
|
it 'should parse nested json object into hash' do
|
2010-09-18 00:30:02 +00:00
|
|
|
@parser.parse('{"test":23, "test2":{"bar":"baz", "foo":3.14}}').should == {
|
|
|
|
'test' => 23, 'test2' => {'bar' => 'baz', 'foo' => 3.14}
|
|
|
|
}
|
2010-08-24 19:22:53 +00:00
|
|
|
end
|
2010-08-23 22:07:50 +00:00
|
|
|
end
|