2009-06-07 04:37:54 -04:00
|
|
|
require File.dirname(__FILE__) + '/../../spec_helper'
|
|
|
|
|
|
|
|
describe 'S3.copy_object' do
|
|
|
|
|
2009-06-08 18:49:24 -04:00
|
|
|
before(:all) do
|
|
|
|
s3.put_bucket('fogcopyobjectsource')
|
|
|
|
file = File.open(File.dirname(__FILE__) + '/../../lorem.txt', 'r')
|
|
|
|
s3.put_object('fogcopyobjectsource', 'fog_copy_object_source', file)
|
|
|
|
s3.put_bucket('fogcopyobjectdestination')
|
|
|
|
end
|
|
|
|
|
|
|
|
after(:all) do
|
|
|
|
s3.delete_object('fogcopyobjectdestination', 'fog_copy_object_destination')
|
|
|
|
s3.delete_bucket('fogcopyobjectdestination')
|
|
|
|
s3.delete_object('fogcopyobjectsource', 'fog_copy_object_source')
|
|
|
|
s3.delete_bucket('fogcopyobjectsource')
|
|
|
|
end
|
|
|
|
|
2009-06-07 04:37:54 -04:00
|
|
|
it 'should return proper attributes' do
|
2009-06-25 03:32:27 -04:00
|
|
|
actual = s3.copy_object(
|
2009-06-08 18:49:24 -04:00
|
|
|
'fogcopyobjectsource', 'fog_copy_object_source',
|
|
|
|
'fogcopyobjectdestination', 'fog_copy_object_destination'
|
2009-06-07 04:37:54 -04:00
|
|
|
)
|
2009-06-25 03:32:27 -04:00
|
|
|
actual.status.should == 200
|
2009-07-29 22:50:51 -04:00
|
|
|
actual.body['ETag'].should be_a(String)
|
|
|
|
actual.body['LastModified'].should be_a(Time)
|
2009-06-07 04:37:54 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|