1
0
Fork 0
mirror of https://github.com/fog/fog-aws.git synced 2022-11-09 13:50:52 -05:00
fog--fog-aws/tests/requests/simpledb/domain_tests.rb
2015-01-02 09:42:20 -08:00

51 lines
1.5 KiB
Ruby

Shindo.tests('AWS::SimpleDB | domain requests', ['aws']) do
@domain_metadata_format = AWS::SimpleDB::Formats::BASIC.merge({
'AttributeNameCount' => Integer,
'AttributeNamesSizeBytes' => Integer,
'AttributeValueCount' => Integer,
'AttributeValuesSizeBytes' => Integer,
'ItemCount' => Integer,
'ItemNamesSizeBytes' => Integer,
'Timestamp' => Time
})
@domain_name = "fog_domain_#{Time.now.to_f.to_s.gsub('.','')}"
tests('success') do
tests("#create_domain(#{@domain_name})").formats(AWS::SimpleDB::Formats::BASIC) do
Fog::AWS[:simpledb].create_domain(@domain_name).body
end
tests("#create_domain(#{@domain_name})").succeeds do
Fog::AWS[:simpledb].create_domain(@domain_name)
end
tests("#domain_metadata(#{@domain_name})").formats(@domain_metadata_format) do
Fog::AWS[:simpledb].domain_metadata(@domain_name).body
end
tests("#list_domains").formats(AWS::SimpleDB::Formats::BASIC.merge('Domains' => [String])) do
Fog::AWS[:simpledb].list_domains.body
end
tests("#delete_domain(#{@domain_name})").formats(AWS::SimpleDB::Formats::BASIC) do
Fog::AWS[:simpledb].delete_domain(@domain_name).body
end
tests("#delete_domain(#{@domain_name})").succeeds do
Fog::AWS[:simpledb].delete_domain(@domain_name)
end
end
tests('failure') do
tests("#domain_metadata('notadomain')").raises(Excon::Errors::BadRequest) do
Fog::AWS[:simpledb].domain_metadata('notadomain')
end
end
end