1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/spec/aws/requests/s3/get_object_spec.rb
2009-11-05 09:19:48 -08:00

58 lines
1.7 KiB
Ruby

require File.dirname(__FILE__) + '/../../../spec_helper'
describe 'S3.get_object' do
describe 'success' do
before(:each) do
s3.put_bucket('foggetobject')
s3.put_object('foggetobject', 'fog_get_object', lorem_file)
end
after(:each) do
s3.delete_object('foggetobject', 'fog_get_object')
s3.delete_bucket('foggetobject')
end
it 'should return proper attributes' do
actual = s3.get_object('foggetobject', 'fog_get_object')
actual.status.should == 200
data = lorem_file.read
actual.body.should == data
actual.headers['Content-Length'].should == data.length.to_s
actual.headers['Content-Type'].should be_a(String)
actual.headers['ETag'].should be_a(String)
actual.headers['Last-Modified'].should be_a(String)
end
it 'should return chunks with optional block' do
data = ''
s3.get_object('foggetobject', 'fog_get_object') do |chunk|
data << chunk
end
data.should == lorem_file.read
end
it 'should return a signed expiring url' do
url = s3.get_object_url('foggetobject', 'fog_get_object', Time.now + 60 * 10)
unless Fog.mocking?
open(url).read.should == lorem_file.read
end
end
end
describe 'failure' do
it 'should raise a NotFound error if the bucket does not exist' do
lambda {
s3.get_object('fognotabucket', 'fog_get_object')
}.should raise_error(Excon::Errors::NotFound)
end
it 'should raise a NotFound error if the object does not exist' do
lambda {
s3.get_object('foggetobject', 'fog_not_an_object')
}.should raise_error(Excon::Errors::NotFound)
end
end
end