2014-08-27 15:17:06 +00:00
|
|
|
from __future__ import unicode_literals
|
2014-08-25 22:09:38 +00:00
|
|
|
# Ensure 'assert_raises' context manager support for Python 2.6
|
|
|
|
import tests.backport_assert_raises
|
|
|
|
from nose.tools import assert_raises
|
|
|
|
|
2013-02-22 04:13:01 +00:00
|
|
|
import boto
|
2013-08-03 21:21:25 +00:00
|
|
|
import sure # noqa
|
2013-02-22 04:13:01 +00:00
|
|
|
|
2014-02-24 11:06:53 +00:00
|
|
|
from boto.exception import EC2ResponseError
|
2013-02-22 04:13:01 +00:00
|
|
|
from moto import mock_ec2
|
|
|
|
|
|
|
|
|
|
|
|
@mock_ec2
|
2014-02-24 10:08:00 +00:00
|
|
|
def test_key_pairs_empty():
|
|
|
|
conn = boto.connect_ec2('the_key', 'the_secret')
|
|
|
|
assert len(conn.get_all_key_pairs()) == 0
|
2014-02-24 10:24:46 +00:00
|
|
|
|
|
|
|
|
2014-08-25 17:54:47 +00:00
|
|
|
@mock_ec2
|
|
|
|
def test_key_pairs_invalid_id():
|
|
|
|
conn = boto.connect_ec2('the_key', 'the_secret')
|
|
|
|
|
|
|
|
with assert_raises(EC2ResponseError) as cm:
|
|
|
|
conn.get_all_key_pairs('foo')
|
|
|
|
cm.exception.code.should.equal('InvalidKeyPair.NotFound')
|
|
|
|
cm.exception.status.should.equal(400)
|
|
|
|
cm.exception.request_id.should_not.be.none
|
|
|
|
|
|
|
|
|
2014-02-24 10:24:46 +00:00
|
|
|
@mock_ec2
|
|
|
|
def test_key_pairs_create():
|
|
|
|
conn = boto.connect_ec2('the_key', 'the_secret')
|
|
|
|
kp = conn.create_key_pair('foo')
|
2014-02-24 11:03:26 +00:00
|
|
|
assert kp.material.startswith('---- BEGIN RSA PRIVATE KEY ----')
|
2014-02-24 11:20:47 +00:00
|
|
|
kps = conn.get_all_key_pairs()
|
|
|
|
assert len(kps) == 1
|
|
|
|
assert kps[0].name == 'foo'
|
|
|
|
|
|
|
|
|
|
|
|
@mock_ec2
|
|
|
|
def test_key_pairs_create_two():
|
|
|
|
conn = boto.connect_ec2('the_key', 'the_secret')
|
|
|
|
kp = conn.create_key_pair('foo')
|
|
|
|
kp = conn.create_key_pair('bar')
|
|
|
|
assert kp.material.startswith('---- BEGIN RSA PRIVATE KEY ----')
|
|
|
|
kps = conn.get_all_key_pairs()
|
|
|
|
assert len(kps) == 2
|
|
|
|
assert kps[0].name == 'foo'
|
|
|
|
assert kps[1].name == 'bar'
|
2014-02-24 13:22:08 +00:00
|
|
|
kps = conn.get_all_key_pairs('foo')
|
|
|
|
assert len(kps) == 1
|
|
|
|
assert kps[0].name == 'foo'
|
2014-02-24 11:06:53 +00:00
|
|
|
|
|
|
|
|
|
|
|
@mock_ec2
|
|
|
|
def test_key_pairs_create_exist():
|
|
|
|
conn = boto.connect_ec2('the_key', 'the_secret')
|
|
|
|
kp = conn.create_key_pair('foo')
|
|
|
|
assert kp.material.startswith('---- BEGIN RSA PRIVATE KEY ----')
|
2014-02-24 11:20:47 +00:00
|
|
|
assert len(conn.get_all_key_pairs()) == 1
|
2014-08-25 17:54:47 +00:00
|
|
|
|
|
|
|
with assert_raises(EC2ResponseError) as cm:
|
|
|
|
conn.create_key_pair('foo')
|
|
|
|
cm.exception.code.should.equal('InvalidKeyPair.Duplicate')
|
|
|
|
cm.exception.status.should.equal(400)
|
|
|
|
cm.exception.request_id.should_not.be.none
|
2014-02-24 11:34:39 +00:00
|
|
|
|
|
|
|
|
|
|
|
@mock_ec2
|
|
|
|
def test_key_pairs_delete_no_exist():
|
|
|
|
conn = boto.connect_ec2('the_key', 'the_secret')
|
|
|
|
assert len(conn.get_all_key_pairs()) == 0
|
|
|
|
r = conn.delete_key_pair('foo')
|
|
|
|
r.should.be.ok
|
2014-02-24 11:35:42 +00:00
|
|
|
|
|
|
|
|
|
|
|
@mock_ec2
|
|
|
|
def test_key_pairs_delete_exist():
|
|
|
|
conn = boto.connect_ec2('the_key', 'the_secret')
|
|
|
|
conn.create_key_pair('foo')
|
|
|
|
r = conn.delete_key_pair('foo')
|
|
|
|
r.should.be.ok
|
|
|
|
assert len(conn.get_all_key_pairs()) == 0
|