1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/tests/brightbox/requests/compute/account_tests.rb
Paul Thornthwaite 4e41e00fed [Brightbox] Switches to new format helper
Using #data_matches_schema which correctly fails when a nullable
resource is absent.
2013-09-09 10:52:57 +01:00

64 lines
2.6 KiB
Ruby

Shindo.tests('Fog::Compute[:brightbox] | account requests', ['brightbox']) do
tests('success') do
tests("#list_accounts") do
pending if Fog.mocking?
result = Fog::Compute[:brightbox].list_accounts
data_matches_schema(Brightbox::Compute::Formats::Collection::ACCOUNTS, {:allow_extra_keys => true}) { result }
end
tests("#get_scoped_account") do
pending if Fog.mocking?
result = Fog::Compute[:brightbox].get_scoped_account
@scoped_account_identifier = result["id"]
data_matches_schema(Brightbox::Compute::Formats::Full::ACCOUNT, {:allow_extra_keys => true}) { result }
test("ftp password is blanked") { result["library_ftp_password"].nil? }
end
tests("#get_account(#{@scoped_account_identifier}") do
pending if Fog.mocking?
result = Fog::Compute[:brightbox].get_account(@scoped_account_identifier)
data_matches_schema(Brightbox::Compute::Formats::Full::ACCOUNT, {:allow_extra_keys => true}) { result }
test("ftp password is blanked") { result["library_ftp_password"].nil? }
end
update_options = {:name => "Fog@#{Time.now.iso8601}"}
tests("#update_scoped_account(#{update_options.inspect})") do
pending if Fog.mocking?
result = Fog::Compute[:brightbox].update_scoped_account(update_options)
data_matches_schema(Brightbox::Compute::Formats::Full::ACCOUNT, {:allow_extra_keys => true}) { result }
end
tests("#update_account(#{@scoped_account_identifier}, #{update_options.inspect})") do
pending if Fog.mocking?
result = Fog::Compute[:brightbox].update_account(@scoped_account_identifier, update_options)
data_matches_schema(Brightbox::Compute::Formats::Full::ACCOUNT, {:allow_extra_keys => true}) { result }
end
tests("#reset_ftp_password_scoped_account") do
pending if Fog.mocking?
result = Fog::Compute[:brightbox].reset_ftp_password_scoped_account
data_matches_schema(Brightbox::Compute::Formats::Full::ACCOUNT, {:allow_extra_keys => true}) { result }
test("new ftp password is visible") { ! result["library_ftp_password"].nil? }
end
tests("#reset_ftp_password_account(#{@scoped_account_identifier})") do
pending if Fog.mocking?
result = Fog::Compute[:brightbox].reset_ftp_password_account(@scoped_account_identifier)
data_matches_schema(Brightbox::Compute::Formats::Full::ACCOUNT, {:allow_extra_keys => true}) { result }
test("new ftp password is visible") { ! result["library_ftp_password"].nil? }
end
end
tests('failure') do
tests("#update_account").raises(ArgumentError) do
pending if Fog.mocking?
Fog::Compute[:brightbox].update_account
end
end
end