Example #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()
Example #2
0
    def test_role_delete(self):
        role = Role('test-role')
        role.delete()

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

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

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