2009-05-24 12:11:32 -04:00
|
|
|
require File.dirname(__FILE__) + '/../../spec_helper'
|
|
|
|
|
|
|
|
describe 'S3.put_bucket' do
|
|
|
|
|
2009-06-05 19:51:17 -04:00
|
|
|
after(:all) do
|
|
|
|
s3.delete_bucket('fogputbucket')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should not include fogputbucket in get_service buckets before put_bucket' do
|
2009-07-16 02:37:22 -04:00
|
|
|
eventually do
|
|
|
|
actual = s3.get_service
|
2009-07-29 22:50:51 -04:00
|
|
|
actual.body['Buckets'].collect { |bucket| bucket['Name'] }.should_not include('fogputbucket')
|
2009-07-16 02:37:22 -04:00
|
|
|
end
|
2009-06-05 19:51:17 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'should return proper attributes' do
|
2009-06-25 03:32:27 -04:00
|
|
|
actual = s3.put_bucket('fogputbucket')
|
|
|
|
actual.status.should == 200
|
2009-05-24 12:11:32 -04:00
|
|
|
end
|
|
|
|
|
2009-06-05 19:51:17 -04:00
|
|
|
it 'should include fogputbucket in get_service buckets after put_bucket' do
|
2009-07-16 02:37:22 -04:00
|
|
|
eventually do
|
|
|
|
actual = s3.get_service
|
2009-07-29 22:50:51 -04:00
|
|
|
actual.body['Buckets'].collect { |bucket| bucket['Name'] }.should include('fogputbucket')
|
2009-07-16 02:37:22 -04:00
|
|
|
end
|
2009-06-05 19:51:17 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|