1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/tests/aws/models/storage/url_tests.rb
2012-08-15 17:31:58 +01:00

28 lines
801 B
Ruby

# encoding: utf-8
Shindo.tests('AWS | url', ["aws"]) do
@expires = DateTime.parse('2013-01-01T00:00:00Z').to_time.utc.to_i
@storage = Fog::Storage.new(
:provider => 'AWS',
:aws_access_key_id => '123',
:aws_secret_access_key => 'abc',
:region => 'us-east-1'
)
@file = @storage.directories.new(:key => 'fognonbucket').files.new(:key => 'test.txt')
if Fog.mock?
signature = Fog::Storage::AWS.new.signature(nil)
else
signature = 'tajHIhKHAdFYsigmzybCpaq8N0Q%3D'
end
tests('#url w/ response-cache-control').returns(
"https://fognonbucket.s3.amazonaws.com/test.txt?response-cache-control=No-cache&AWSAccessKeyId=123&Signature=#{signature}&Expires=1356998400"
) do
@file.url(@expires, :query => { 'response-cache-control' => 'No-cache' })
end
end