示例#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
class TestRoleGeneric:
    @pytest.fixture(autouse=True)
    def setup_role(self):
        self.role = Role('test-role')
        self.role.create()

    def teardown_method(self):
        self.role.delete()

    def test_role_policy_attachment(self):
        policies = get_role_policies('test-role')

        assert len(policies) == 1
        assert policies[
            0].arn == 'arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole'

    def test_role_policy_detachment(self):
        self.role.detach_policies()

        policies = get_role_policies('test-role')

        assert len(policies) == 0

        self.role.attach_policies()

    def test_repr(self):
        assert repr(self.role) == 'Role test-role'
示例#3
0
    def test_role_delete(self):
        role = Role('test-role')
        role.delete()

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

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

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