示例#1
0
    def ensure_clean_slate(self):
        lambda_function = LambdaFunction('test-function')
        if lambda_function.exists():
            lambda_function.delete()

        lambda_role = Role('lambdapool-role-test-function')
        if lambda_role.exists():
            lambda_role.delete()
示例#2
0
    def test_role_delete(self):
        role = Role('test-role')
        role.delete()

        assert role.exists() == False
示例#3
0
 def test_role_create(self):
     role = Role('test-role')
     with pytest.raises(AWSError):
         role.create()
示例#4
0
 def test_role_exists(self):
     role = Role('test-role')
     assert role.exists() == True
示例#5
0
 def teardown_method(self):
     role = Role('test-role')
     if role.exists():
         role.delete()
示例#6
0
 def setup_role(self):
     role = Role('test-role')
     role.create()
示例#7
0
    def test_role_get_arn(self):
        role = Role('test-role')

        with pytest.raises(AWSError):
            role.get_arn()
示例#8
0
 def test_role_delete(self):
     role = Role('test-role')
     with pytest.raises(AWSError):
         role.delete()
示例#9
0
 def test_role_create(self):
     role = Role('test-role')
     role.create()
     assert role.get_role().name == 'test-role'
示例#10
0
 def setup_role(self):
     self.role = Role('test-role')
     self.role.create()
示例#11
0
    def test_role_get_arn(self):
        role = Role('test-role')

        assert role.get_arn() == get_role_arn('test-role')