mirror of
https://github.com/fog/fog-aws.git
synced 2022-11-09 13:50:52 -05:00
51 lines
1.5 KiB
Ruby
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
|