moto/tests/test_glacier/test_glacier_archives.py
2021-09-23 17:22:16 +00:00

64 lines
1.9 KiB
Python

from __future__ import unicode_literals
from tempfile import NamedTemporaryFile
import boto3
import boto.glacier
import sure # noqa
import pytest
from moto import mock_glacier_deprecated, mock_glacier
@mock_glacier_deprecated
def test_create_and_delete_archive():
the_file = NamedTemporaryFile(delete=False)
the_file.write(b"some stuff")
the_file.close()
conn = boto.glacier.connect_to_region("us-west-2")
vault = conn.create_vault("my_vault")
archive_id = vault.upload_archive(the_file.name)
vault.delete_archive(archive_id)
@mock_glacier
def test_upload_archive():
client = boto3.client("glacier", region_name="us-west-2")
client.create_vault(vaultName="asdf")
res = client.upload_archive(
vaultName="asdf", archiveDescription="my archive", body=b"body of archive"
)
res["ResponseMetadata"]["HTTPStatusCode"].should.equal(201)
headers = res["ResponseMetadata"]["HTTPHeaders"]
headers.should.have.key("x-amz-archive-id")
headers.should.have.key("x-amz-sha256-tree-hash")
res.should.have.key("checksum")
res.should.have.key("archiveId")
@mock_glacier
def test_delete_archive():
client = boto3.client("glacier", region_name="us-west-2")
client.create_vault(vaultName="asdf")
archive = client.upload_archive(vaultName="asdf", body=b"body of archive")
delete = client.delete_archive(vaultName="asdf", archiveId=archive["archiveId"])
delete["ResponseMetadata"]["HTTPStatusCode"].should.equal(204)
with pytest.raises(Exception):
# Not ideal - but this will throw an error if the archvie does not exist
# Which is a good indication that the deletion went through
client.initiate_job(
vaultName="myname",
jobParameters={
"ArchiveId": archive["archiveId"],
"Type": "archive-retrieval",
},
)