mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
58 lines
1.9 KiB
Ruby
58 lines
1.9 KiB
Ruby
Shindo.tests("Storage[:internet_archive] | files", ["internet_archive"]) do
|
|
|
|
file_attributes = {
|
|
:key => 'fog_file_tests',
|
|
:body => lorem_file,
|
|
:public => true,
|
|
:auto_make_bucket => 1,
|
|
:collections => ['test_collection']
|
|
}
|
|
|
|
directory_attributes = {
|
|
:key => "fogfilestests-#{rand(65536)}"
|
|
}
|
|
|
|
@directory = Fog::Storage[:internetarchive].directories.create(directory_attributes)
|
|
# @directory.versioning = true
|
|
|
|
model_tests(@directory.files, file_attributes, Fog.mocking?) do
|
|
|
|
@instance
|
|
# 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
|