mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
Added tests for Fog::JSON; Added Fog::JSON::LoadError class; Updated all MultiJson references to Fog::JSON
This commit is contained in:
parent
3f0314dbd1
commit
18ce4b7eca
27 changed files with 105 additions and 30 deletions
|
@ -5,6 +5,15 @@ module Fog
|
|||
class JSON
|
||||
include Singleton
|
||||
|
||||
class LoadError < StandardError
|
||||
attr_reader :data
|
||||
def initialize(message='', backtrace=[], data='')
|
||||
super(message)
|
||||
self.set_backtrace(backtrace)
|
||||
@data = data
|
||||
end
|
||||
end
|
||||
|
||||
module LegacyJSON
|
||||
def encode(obj)
|
||||
::JSON.generate(obj)
|
||||
|
@ -12,23 +21,27 @@ module Fog
|
|||
|
||||
def decode(obj)
|
||||
::JSON.parse(obj)
|
||||
rescue ::JSON::ParserError => e
|
||||
raise LoadError.new(e.message, e.backtrace, obj)
|
||||
end
|
||||
end
|
||||
|
||||
module NewJSON
|
||||
def encode(obj)
|
||||
MultiJson.encode(obj)
|
||||
::MultiJson.encode(obj)
|
||||
end
|
||||
|
||||
def decode(obj)
|
||||
MultiJson.decode(obj)
|
||||
::MultiJson.decode(obj)
|
||||
rescue MultiJson::LoadError => e
|
||||
raise LoadError.new(e.message, e.backtrace, obj)
|
||||
end
|
||||
end
|
||||
|
||||
begin
|
||||
require 'multi_json'
|
||||
include NewJSON
|
||||
rescue LoadError
|
||||
rescue Exception => e
|
||||
Fog::Logger.deprecation "Defaulting to json library for json parsing. Please consider using multi_json library for the greatest performance/flexibility."
|
||||
require 'json'
|
||||
include LegacyJSON
|
||||
|
|
|
@ -25,7 +25,7 @@ module Fog
|
|||
if message.nil? and !data.values.first.nil?
|
||||
message = data.values.first['message']
|
||||
end
|
||||
rescue MultiJson::DecodeError
|
||||
rescue Fog::JSON::LoadError
|
||||
message = error.response.body #### body is not in JSON format, so just return as is
|
||||
end
|
||||
end
|
||||
|
|
|
@ -6,7 +6,7 @@ module Fog
|
|||
def allocate_address(pool = nil)
|
||||
|
||||
request(
|
||||
:body => MultiJson.encode({'pool' => pool}),
|
||||
:body => Fog::JSON.encode({'pool' => pool}),
|
||||
:expects => [200, 202],
|
||||
:method => 'POST',
|
||||
:path => 'os-floating-ips.json'
|
||||
|
|
|
@ -11,7 +11,7 @@ module Fog
|
|||
}
|
||||
}
|
||||
request(
|
||||
:body => MultiJson.encode(data),
|
||||
:body => Fog::JSON.encode(data),
|
||||
:expects => [200, 202],
|
||||
:method => 'POST',
|
||||
:path => "servers/%s/os-volume_attachments" % [server_id]
|
||||
|
|
|
@ -29,7 +29,7 @@ module Fog
|
|||
end
|
||||
|
||||
request(
|
||||
:body => MultiJson.encode(data),
|
||||
:body => Fog::JSON.encode(data),
|
||||
:expects => [200, 202],
|
||||
:method => 'POST',
|
||||
:path => '/os-volumes_boot.json'
|
||||
|
|
|
@ -35,7 +35,7 @@ module Fog
|
|||
}
|
||||
|
||||
request(
|
||||
:body => MultiJson.encode(data),
|
||||
:body => Fog::JSON.encode(data),
|
||||
:expects => 200,
|
||||
:method => 'POST',
|
||||
:path => 'flavors'
|
||||
|
|
|
@ -14,7 +14,7 @@ module Fog
|
|||
data['keypair']['public_key'] = public_key unless public_key.nil?
|
||||
|
||||
request(
|
||||
:body => MultiJson.encode(data),
|
||||
:body => Fog::JSON.encode(data),
|
||||
:expects => 200,
|
||||
:method => 'POST',
|
||||
:path => 'os-keypairs.json'
|
||||
|
|
|
@ -12,7 +12,7 @@ module Fog
|
|||
}
|
||||
|
||||
request(
|
||||
:body => MultiJson.encode(data),
|
||||
:body => Fog::JSON.encode(data),
|
||||
:expects => 200,
|
||||
:method => 'POST',
|
||||
:path => 'os-security-groups.json'
|
||||
|
|
|
@ -18,7 +18,7 @@ module Fog
|
|||
request(
|
||||
:expects => 200,
|
||||
:method => 'POST',
|
||||
:body => MultiJson.encode(data),
|
||||
:body => Fog::JSON.encode(data),
|
||||
:path => 'os-security-group-rules.json'
|
||||
)
|
||||
end
|
||||
|
|
|
@ -17,7 +17,7 @@ module Fog
|
|||
data['volume'][key] = options[key]
|
||||
end
|
||||
request(
|
||||
:body => MultiJson.encode(data),
|
||||
:body => Fog::JSON.encode(data),
|
||||
:expects => [200, 202],
|
||||
:method => 'POST',
|
||||
:path => "os-volumes"
|
||||
|
|
|
@ -14,7 +14,7 @@ module Fog
|
|||
}
|
||||
|
||||
request(
|
||||
:body => MultiJson.encode(data),
|
||||
:body => Fog::JSON.encode(data),
|
||||
:expects => [200, 202],
|
||||
:method => 'POST',
|
||||
:path => "os-snapshots"
|
||||
|
|
|
@ -11,7 +11,7 @@ module Fog
|
|||
:method => 'GET',
|
||||
:path => '/v2.0/tenants'
|
||||
})
|
||||
response.body = MultiJson.decode(response.body)
|
||||
response.body = Fog::JSON.decode(response.body)
|
||||
response
|
||||
end
|
||||
end
|
||||
|
|
|
@ -6,7 +6,7 @@ module Fog
|
|||
def update_quota(tenant_id, options = {})
|
||||
options['tenant_id'] = tenant_id
|
||||
request(
|
||||
:body => MultiJson.encode({ 'quota_set' => options }),
|
||||
:body => Fog::JSON.encode({ 'quota_set' => options }),
|
||||
:expects => 200,
|
||||
:method => 'PUT',
|
||||
:path => "/os-quota-sets/#{tenant_id}"
|
||||
|
|
|
@ -26,7 +26,7 @@ module Fog
|
|||
data = { 'tenant_id' => tenant_id }
|
||||
|
||||
request(
|
||||
:body => MultiJson.encode(data),
|
||||
:body => Fog::JSON.encode(data),
|
||||
:expects => [200, 202],
|
||||
:method => 'POST',
|
||||
:path => "users/#{user_id}/credentials/OS-EC2"
|
||||
|
|
|
@ -10,7 +10,7 @@ module Fog
|
|||
}
|
||||
|
||||
request(
|
||||
:body => MultiJson.encode(data),
|
||||
:body => Fog::JSON.encode(data),
|
||||
:expects => [200, 202],
|
||||
:method => 'POST',
|
||||
:path => '/OS-KSADM/roles'
|
||||
|
|
|
@ -15,7 +15,7 @@ module Fog
|
|||
}
|
||||
|
||||
request(
|
||||
:body => MultiJson.encode(data),
|
||||
:body => Fog::JSON.encode(data),
|
||||
:expects => [200, 202],
|
||||
:method => 'POST',
|
||||
:path => '/users'
|
||||
|
|
|
@ -6,7 +6,7 @@ module Fog
|
|||
def update_user(user_id, options = {})
|
||||
url = options.delete('url') || "/users/#{user_id}"
|
||||
request(
|
||||
:body => MultiJson.encode({ 'user' => options }),
|
||||
:body => Fog::JSON.encode({ 'user' => options }),
|
||||
:expects => 200,
|
||||
:method => 'PUT',
|
||||
:path => url
|
||||
|
|
|
@ -11,7 +11,7 @@ module Fog
|
|||
data = { 'memberships' => members }
|
||||
|
||||
request(
|
||||
:body => MultiJson.encode(data),
|
||||
:body => Fog::JSON.encode(data),
|
||||
:expects => [200, 202],
|
||||
:method => 'PUT',
|
||||
:path => "images/#{image_id}/members"
|
||||
|
|
|
@ -17,7 +17,7 @@ module Fog
|
|||
data['volume'][key] = options[key]
|
||||
end
|
||||
request(
|
||||
:body => MultiJson.encode(data),
|
||||
:body => Fog::JSON.encode(data),
|
||||
:expects => [200, 202],
|
||||
:method => 'POST',
|
||||
:path => "volumes"
|
||||
|
|
|
@ -14,7 +14,7 @@ module Fog
|
|||
}
|
||||
|
||||
request(
|
||||
:body => MultiJson.encode(data),
|
||||
:body => Fog::JSON.encode(data),
|
||||
:expects => [200, 202],
|
||||
:method => 'POST',
|
||||
:path => "snapshots"
|
||||
|
|
|
@ -160,7 +160,7 @@ module Fog
|
|||
unless response.body.empty?
|
||||
begin
|
||||
response.body = Fog::JSON.decode(response.body)
|
||||
rescue MultiJson::DecodeError => e
|
||||
rescue Fog::JSON::LoadError => e
|
||||
response.body = {}
|
||||
end
|
||||
end
|
||||
|
|
|
@ -71,9 +71,9 @@ module Fog
|
|||
|
||||
module UserUtils
|
||||
def update_riakcs_user(key_id, user)
|
||||
response = @s3_connection.put_object('riak-cs', "user/#{key_id}", MultiJson.encode(user), { 'Content-Type' => 'application/json' })
|
||||
response = @s3_connection.put_object('riak-cs', "user/#{key_id}", Fog::JSON.encode(user), { 'Content-Type' => 'application/json' })
|
||||
if !response.body.empty?
|
||||
response.body = MultiJson.decode(response.body)
|
||||
response.body = Fog::JSON.decode(response.body)
|
||||
end
|
||||
response
|
||||
end
|
||||
|
|
|
@ -3,7 +3,7 @@ module Fog
|
|||
class Provisioning
|
||||
class Real
|
||||
def create_user(email, name, options = {})
|
||||
payload = MultiJson.encode({ :email => email, :name => name })
|
||||
payload = Fog::JSON.encode({ :email => email, :name => name })
|
||||
headers = { 'Content-Type' => 'application/json' }
|
||||
|
||||
if(options[:anonymous])
|
||||
|
@ -20,7 +20,7 @@ module Fog
|
|||
if !response.body.empty?
|
||||
case response.headers['Content-Type']
|
||||
when 'application/json'
|
||||
response.body = MultiJson.decode(response.body)
|
||||
response.body = Fog::JSON.decode(response.body)
|
||||
end
|
||||
end
|
||||
response
|
||||
|
|
|
@ -7,7 +7,7 @@ module Fog
|
|||
|
||||
def get_user(key_id)
|
||||
response = @s3_connection.get_object('riak-cs', "user/#{key_id}", { 'Accept' => 'application/json' })
|
||||
response.body = MultiJson.decode(response.body)
|
||||
response.body = Fog::JSON.decode(response.body)
|
||||
response
|
||||
end
|
||||
end
|
||||
|
|
|
@ -10,7 +10,7 @@ module Fog
|
|||
|
||||
boundary = extract_boundary(response.headers['Content-Type'])
|
||||
parts = parse(response.body, boundary)
|
||||
decoded = parts.map { |part| MultiJson.decode(part[:body]) }
|
||||
decoded = parts.map { |part| Fog::JSON.decode(part[:body]) }
|
||||
|
||||
response.body = decoded.flatten
|
||||
|
||||
|
|
|
@ -37,7 +37,7 @@ module Fog
|
|||
response = @connection.get_object('riak-cs', ["usage", request_uri(access_key_id, options)].join("/"))
|
||||
|
||||
if !response.body.empty?
|
||||
response.body = MultiJson.decode(response.body)
|
||||
response.body = Fog::JSON.decode(response.body)
|
||||
end
|
||||
response
|
||||
end
|
||||
|
|
62
tests/core/json_tests.rb
Normal file
62
tests/core/json_tests.rb
Normal file
|
@ -0,0 +1,62 @@
|
|||
Shindo.tests('Fog#JSON', 'core') do
|
||||
|
||||
TEST_HASH = {'name' => 'fog-name', 'quantity' => 4}
|
||||
VALID_JSON = "{\"name\":\"fog-name\",\"quantity\":4}"
|
||||
|
||||
tests('LegacyJSON') do
|
||||
|
||||
begin
|
||||
require 'json'
|
||||
rescue => e
|
||||
returns('Failed to load JSON library', true) { false }
|
||||
end
|
||||
|
||||
pending? unless defined? ::JSON
|
||||
|
||||
class LegacyJSONTester
|
||||
include Fog::JSON::LegacyJSON
|
||||
end
|
||||
|
||||
@tester = LegacyJSONTester.new
|
||||
tests('encode').returns(VALID_JSON) do
|
||||
@tester.encode(TEST_HASH)
|
||||
end
|
||||
|
||||
tests('decode').returns(TEST_HASH) do
|
||||
@tester.decode(VALID_JSON)
|
||||
end
|
||||
|
||||
tests('invalid decode').raises(Fog::JSON::LoadError) do
|
||||
@tester.decode("I am not json")
|
||||
end
|
||||
end
|
||||
|
||||
tests('NewJSON') do
|
||||
|
||||
begin
|
||||
require 'multi_json'
|
||||
rescue => e
|
||||
returns('Failed to load multi_json library', true) { false }
|
||||
end
|
||||
|
||||
pending unless defined? ::MultiJson
|
||||
|
||||
class NewJSONTester
|
||||
include Fog::JSON::NewJSON
|
||||
end
|
||||
|
||||
@tester = NewJSONTester.new
|
||||
tests('encode').returns(VALID_JSON) do
|
||||
@tester.encode(TEST_HASH)
|
||||
end
|
||||
|
||||
tests('decode').returns(TEST_HASH) do
|
||||
@tester.decode(VALID_JSON)
|
||||
end
|
||||
|
||||
tests('invalid decode').raises(Fog::JSON::LoadError) do
|
||||
@tester.decode("I am not json")
|
||||
end
|
||||
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue