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/files_tests.rb
Paul Thornthwaite d50512ee72 Added check if Fog.mock! should be used in AWS tests
Without the check all tests were assumed mocked regardless of the
users environment setting.
2012-02-06 11:49:30 +00:00

58 lines
1.8 KiB
Ruby

Fog.mock! if ENV['FOG_MOCK']
Shindo.tests("Storage[:aws] | files", [:aws]) do
file_attributes = {
:key => 'fog_file_tests',
:body => lorem_file,
:public => true
}
directory_attributes = {
:key => 'fogfilestests'
}
@directory = Fog::Storage[:aws].directories.create(directory_attributes)
@directory.versioning = true
model_tests(@directory.files, file_attributes, Fog.mocking?) do
v1 = @instance.version
v2 = @directory.connection.put_object(@directory.key, @instance.key, 'version 2 content').headers['x-amz-version-id']
v3 = @directory.connection.delete_object(@directory.key, @instance.key).headers['x-amz-version-id']
v4 = @directory.connection.put_object(@directory.key, @instance.key, 'version 3 content').headers['x-amz-version-id']
tests("#get") do
tests("#get without version fetches the latest version").returns(v4) do
@directory.files.get(@instance.key).version
end
tests("#get with version fetches that exact version").returns(v2) do
@directory.files.get(@instance.key, 'versionId' => v2).version
end
tests("#get with a deleted version returns nil").returns(nil) do
@directory.files.get(@instance.key, 'versionId' => v3)
end
end
tests("#head") do
tests("#head without version fetches the latest version").returns(v4) do
@directory.files.head(@instance.key).version
end
tests("#head with version fetches that exact version").returns(v2) do
@directory.files.head(@instance.key, 'versionId' => v2).version
end
tests("#head with a deleted version returns nil").returns(nil) do
@directory.files.head(@instance.key, 'versionId' => v3)
end
end
end
@directory.versions.each(&:destroy)
@directory.destroy
end