Add vault operations.
This commit is contained in:
parent
b296294086
commit
7156df1a63
9 changed files with 208 additions and 0 deletions
21
tests/test_glacier/test_glacier_server.py
Normal file
21
tests/test_glacier/test_glacier_server.py
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
from __future__ import unicode_literals
|
||||
|
||||
import json
|
||||
import sure # noqa
|
||||
|
||||
import moto.server as server
|
||||
from moto import mock_glacier
|
||||
|
||||
'''
|
||||
Test the different server responses
|
||||
'''
|
||||
|
||||
|
||||
@mock_glacier
|
||||
def test_list_vaults():
|
||||
backend = server.create_backend_app("glacier")
|
||||
test_client = backend.test_client()
|
||||
|
||||
res = test_client.get('/1234bcd/vaults')
|
||||
|
||||
json.loads(res.data).should.equal({u'Marker': None, u'VaultList': []})
|
||||
31
tests/test_glacier/test_glacier_vaults.py
Normal file
31
tests/test_glacier/test_glacier_vaults.py
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
from __future__ import unicode_literals
|
||||
|
||||
import boto.glacier
|
||||
import sure # noqa
|
||||
|
||||
from moto import mock_glacier
|
||||
|
||||
|
||||
@mock_glacier
|
||||
def test_create_vault():
|
||||
conn = boto.glacier.connect_to_region("us-west-2")
|
||||
|
||||
conn.create_vault("my_vault")
|
||||
|
||||
vaults = conn.list_vaults()
|
||||
vaults.should.have.length_of(1)
|
||||
vaults[0].name.should.equal("my_vault")
|
||||
|
||||
|
||||
@mock_glacier
|
||||
def test_delete_vault():
|
||||
conn = boto.glacier.connect_to_region("us-west-2")
|
||||
|
||||
conn.create_vault("my_vault")
|
||||
|
||||
vaults = conn.list_vaults()
|
||||
vaults.should.have.length_of(1)
|
||||
|
||||
conn.delete_vault("my_vault")
|
||||
vaults = conn.list_vaults()
|
||||
vaults.should.have.length_of(0)
|
||||
Loading…
Add table
Add a link
Reference in a new issue