123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636 |
- # -*- coding: utf-8 -*-
- # Import Python libs
- from __future__ import absolute_import, print_function, unicode_literals
- import logging
- import random
- import string
- import pytest
- # Import Salt libs
- import salt.config
- import salt.loader
- import salt.states.boto_cognitoidentity as boto_cognitoidentity
- from salt.ext.six.moves import range
- from salt.utils.versions import LooseVersion
- # Import Salt Testing libs
- from tests.support.mixins import LoaderModuleMockMixin
- from tests.support.mock import MagicMock, patch
- from tests.support.unit import TestCase, skipIf
- # pylint: disable=import-error,no-name-in-module
- from tests.unit.modules.test_boto_cognitoidentity import (
- BotoCognitoIdentityTestCaseMixin,
- )
- # Import 3rd-party libs
- try:
- import boto3
- from botocore.exceptions import ClientError
- HAS_BOTO = True
- except ImportError:
- HAS_BOTO = False
- # pylint: enable=import-error,no-name-in-module
- # the boto_cognitoidentity module relies on the connect_to_region() method
- # which was added in boto 2.8.0
- # https://github.com/boto/boto/commit/33ac26b416fbb48a60602542b4ce15dcc7029f12
- required_boto3_version = "1.2.1"
- region = "us-east-1"
- access_key = "GKTADJGHEIQSXMKKRBJ08H"
- secret_key = "askdjghsdfjkghWupUjasdflkdfklgjsdfjajkghs"
- conn_parameters = {
- "region": region,
- "key": access_key,
- "keyid": secret_key,
- "profile": {},
- }
- error_message = (
- "An error occurred (101) when calling the {0} operation: Test-defined error"
- )
- error_content = {"Error": {"Code": 101, "Message": "Test-defined error"}}
- first_pool_id = "first_pool_id"
- first_pool_name = "first_pool"
- second_pool_id = "second_pool_id"
- second_pool_name = "second_pool"
- second_pool_name_updated = "second_pool_updated"
- third_pool_id = "third_pool_id"
- third_pool_name = first_pool_name
- default_pool_name = "default_pool_name"
- default_pool_id = "default_pool_id"
- default_dev_provider = "test_provider_default"
- identity_pools_ret = dict(
- IdentityPools=[
- dict(IdentityPoolId=first_pool_id, IdentityPoolName=first_pool_name),
- dict(IdentityPoolId=second_pool_id, IdentityPoolName=second_pool_name),
- dict(IdentityPoolId=third_pool_id, IdentityPoolName=third_pool_name),
- ]
- )
- first_pool_ret = dict(
- IdentityPoolId=first_pool_id,
- IdentityPoolName=first_pool_name,
- AllowUnauthenticatedIdentities=False,
- SupportedLoginProviders={
- "accounts.google.com": "testing123",
- "api.twitter.com": "testing123",
- "graph.facebook.com": "testing123",
- "www.amazon.com": "testing123",
- },
- DeveloperProviderName="test_provider",
- OpenIdConnectProviderARNs=["some_provider_arn", "another_provider_arn"],
- )
- first_pool_role_ret = dict(
- IdentityPoolId=first_pool_id,
- Roles=dict(
- authenticated="first_pool_auth_role", unauthenticated="first_pool_unauth_role"
- ),
- )
- second_pool_ret = dict(
- IdentityPoolId=second_pool_id,
- IdentityPoolName=second_pool_name,
- AllowUnauthenticatedIdentities=False,
- )
- second_pool_role_ret = dict(
- IdentityPoolId=second_pool_id, Roles=dict(authenticated="second_pool_auth_role")
- )
- second_pool_update_ret = dict(
- IdentityPoolId=second_pool_id,
- IdentityPoolName=second_pool_name,
- AllowUnauthenticatedIdentities=True,
- )
- third_pool_ret = dict(
- IdentityPoolId=third_pool_id,
- IdentityPoolName=third_pool_name,
- AllowUnauthenticatedIdentities=False,
- DeveloperProviderName="test_provider2",
- )
- third_pool_role_ret = dict(IdentityPoolId=third_pool_id)
- default_pool_ret = dict(
- IdentityPoolId=default_pool_id,
- IdentityPoolName=default_pool_name,
- AllowUnauthenticatedIdentities=False,
- DeveloperProviderName=default_dev_provider,
- )
- default_pool_role_ret = dict(IdentityPoolId=default_pool_id)
- log = logging.getLogger(__name__)
- def _has_required_boto():
- """
- Returns True/False boolean depending on if Boto is installed and correct
- version.
- """
- if not HAS_BOTO:
- return False
- elif LooseVersion(boto3.__version__) < LooseVersion(required_boto3_version):
- return False
- else:
- return True
- class BotoCognitoIdentityStateTestCaseBase(TestCase, LoaderModuleMockMixin):
- conn = None
- def setup_loader_modules(self):
- ctx = {}
- utils = salt.loader.utils(
- self.opts,
- whitelist=["boto", "boto3", "args", "systemd", "path", "platform", "reg"],
- context=ctx,
- )
- serializers = salt.loader.serializers(self.opts)
- self.funcs = funcs = salt.loader.minion_mods(
- self.opts, context=ctx, utils=utils, whitelist=["boto_cognitoidentity"]
- )
- self.salt_states = salt.loader.states(
- opts=self.opts,
- functions=funcs,
- utils=utils,
- whitelist=["boto_cognitoidentity"],
- serializers=serializers,
- )
- return {
- boto_cognitoidentity: {
- "__opts__": self.opts,
- "__salt__": funcs,
- "__utils__": utils,
- "__states__": self.salt_states,
- "__serializers__": serializers,
- }
- }
- @classmethod
- def setUpClass(cls):
- cls.opts = salt.config.DEFAULT_MINION_OPTS.copy()
- cls.opts["grains"] = salt.loader.grains(cls.opts)
- @classmethod
- def tearDownClass(cls):
- del cls.opts
- def setUp(self):
- self.addCleanup(delattr, self, "funcs")
- self.addCleanup(delattr, self, "salt_states")
- # Set up MagicMock to replace the boto3 session
- # connections keep getting cached from prior tests, can't find the
- # correct context object to clear it. So randomize the cache key, to prevent any
- # cache hits
- conn_parameters["key"] = "".join(
- random.choice(string.ascii_lowercase + string.digits) for _ in range(50)
- )
- self.patcher = patch("boto3.session.Session")
- self.addCleanup(self.patcher.stop)
- self.addCleanup(delattr, self, "patcher")
- mock_session = self.patcher.start()
- session_instance = mock_session.return_value
- self.conn = MagicMock()
- self.addCleanup(delattr, self, "conn")
- session_instance.client.return_value = self.conn
- @skipIf(HAS_BOTO is False, "The boto module must be installed.")
- @skipIf(
- _has_required_boto() is False,
- "The boto3 module must be greater than"
- " or equal to version {0}".format(required_boto3_version),
- )
- class BotoCognitoIdentityTestCase(
- BotoCognitoIdentityStateTestCaseBase, BotoCognitoIdentityTestCaseMixin
- ):
- """
- TestCase for salt.states.boto_cognitoidentity state.module
- """
- def _describe_identity_pool_side_effect(self, *args, **kwargs):
- if kwargs.get("IdentityPoolId") == first_pool_id:
- return first_pool_ret
- elif kwargs.get("IdentityPoolId") == second_pool_id:
- return second_pool_ret
- elif kwargs.get("IdentityPoolId") == third_pool_id:
- return third_pool_ret
- else:
- return default_pool_ret
- @pytest.mark.slow_test(seconds=1) # Test takes >0.1 and <=1 seconds
- def test_present_when_failing_to_describe_identity_pools(self):
- """
- Tests exceptions when describing identity pools
- """
- self.conn.list_identity_pools.return_value = identity_pools_ret
- self.conn.describe_identity_pool.side_effect = ClientError(
- error_content, "error on describe identity pool"
- )
- result = self.salt_states["boto_cognitoidentity.pool_present"](
- name="test pool present",
- IdentityPoolName=first_pool_name,
- AuthenticatedRole="my_auth_role",
- **conn_parameters
- )
- self.assertEqual(result.get("result"), False)
- self.assertTrue("error on describe identity pool" in result.get("comment", {}))
- @pytest.mark.slow_test(seconds=1) # Test takes >0.1 and <=1 seconds
- def test_present_when_multiple_pools_with_same_name_exist(self):
- """
- Tests present on an identity pool name where it matched
- multiple pools. The result should fail.
- """
- self.conn.list_identity_pools.return_value = identity_pools_ret
- self.conn.describe_identity_pool.side_effect = (
- self._describe_identity_pool_side_effect
- )
- result = self.salt_states["boto_cognitoidentity.pool_present"](
- name="test pool present",
- IdentityPoolName=first_pool_name,
- AuthenticatedRole="my_auth_role",
- **conn_parameters
- )
- self.assertEqual(result.get("result"), False)
- self.assertIn(
- "{0}".format([first_pool_ret, third_pool_ret]), result.get("comment", "")
- )
- @pytest.mark.slow_test(seconds=1) # Test takes >0.1 and <=1 seconds
- def test_present_when_failing_to_create_a_new_identity_pool(self):
- """
- Tests present on an identity pool name that doesn't exist and
- an error is thrown on creation.
- """
- self.conn.list_identity_pools.return_value = identity_pools_ret
- self.conn.describe_identity_pool.side_effect = (
- self._describe_identity_pool_side_effect
- )
- self.conn.create_identity_pool.side_effect = ClientError(
- error_content, "error on create_identity_pool"
- )
- result = self.salt_states["boto_cognitoidentity.pool_present"](
- name="test pool present",
- IdentityPoolName=default_pool_name,
- AuthenticatedRole="my_auth_role",
- **conn_parameters
- )
- self.assertEqual(result.get("result"), False)
- self.assertTrue("error on create_identity_pool" in result.get("comment", ""))
- self.assertTrue(self.conn.update_identity_pool.call_count == 0)
- @pytest.mark.slow_test(seconds=1) # Test takes >0.1 and <=1 seconds
- def test_present_when_failing_to_update_an_existing_identity_pool(self):
- """
- Tests present on a unique instance of identity pool having the matching
- IdentityPoolName, and an error is thrown on updating the pool properties.
- """
- self.conn.list_identity_pools.return_value = identity_pools_ret
- self.conn.describe_identity_pool.side_effect = (
- self._describe_identity_pool_side_effect
- )
- self.conn.update_identity_pool.side_effect = ClientError(
- error_content, "error on update_identity_pool"
- )
- result = self.salt_states["boto_cognitoidentity.pool_present"](
- name="test pool present",
- IdentityPoolName=second_pool_name,
- AuthenticatedRole="my_auth_role",
- AllowUnauthenticatedIdentities=True,
- **conn_parameters
- )
- self.assertEqual(result.get("result"), False)
- self.assertTrue("error on update_identity_pool" in result.get("comment", ""))
- self.assertTrue(self.conn.create_identity_pool.call_count == 0)
- def _get_identity_pool_roles_side_effect(self, *args, **kwargs):
- if kwargs.get("IdentityPoolId") == first_pool_id:
- return first_pool_role_ret
- elif kwargs.get("IdentityPoolId") == second_pool_id:
- return second_pool_role_ret
- elif kwargs.get("IdentityPoolId") == third_pool_id:
- return third_pool_role_ret
- else:
- return default_pool_role_ret
- @pytest.mark.slow_test(seconds=1) # Test takes >0.1 and <=1 seconds
- def test_present_when_failing_to_get_identity_pool_roles(self):
- """
- Tests present on a unique instance of identity pool having the matching
- IdentityPoolName, where update_identity_pool succeeded, but an error
- is thrown on getting the identity pool role prior to setting the roles.
- """
- self.conn.list_identity_pools.return_value = identity_pools_ret
- self.conn.describe_identity_pool.side_effect = (
- self._describe_identity_pool_side_effect
- )
- self.conn.update_identity_pool.return_value = second_pool_update_ret
- self.conn.get_identity_pool_roles.side_effect = ClientError(
- error_content, "error on get_identity_pool_roles"
- )
- result = self.salt_states["boto_cognitoidentity.pool_present"](
- name="test pool present",
- IdentityPoolName=second_pool_name,
- AuthenticatedRole="my_auth_role",
- AllowUnauthenticatedIdentities=True,
- **conn_parameters
- )
- self.assertEqual(result.get("result"), False)
- self.assertTrue("error on get_identity_pool_roles" in result.get("comment", ""))
- self.assertTrue(self.conn.create_identity_pool.call_count == 0)
- self.assertTrue(self.conn.set_identity_pool_roles.call_count == 0)
- @pytest.mark.slow_test(seconds=60) # Test takes >30 and <=60 seconds
- def test_present_when_failing_to_set_identity_pool_roles(self):
- """
- Tests present on a unique instance of identity pool having the matching
- IdentityPoolName, where update_identity_pool succeeded, but an error
- is thrown on setting the identity pool role.
- """
- self.conn.list_identity_pools.return_value = identity_pools_ret
- self.conn.describe_identity_pool.side_effect = (
- self._describe_identity_pool_side_effect
- )
- self.conn.update_identity_pool.return_value = second_pool_update_ret
- self.conn.get_identity_pool_roles.return_value = second_pool_role_ret
- self.conn.set_identity_pool_roles.side_effect = ClientError(
- error_content, "error on set_identity_pool_roles"
- )
- with patch.dict(
- self.funcs,
- {
- "boto_iam.describe_role": MagicMock(
- return_value={"arn": "my_auth_role_arn"}
- )
- },
- ):
- result = self.salt_states["boto_cognitoidentity.pool_present"](
- name="test pool present",
- IdentityPoolName=second_pool_name,
- AuthenticatedRole="my_auth_role",
- AllowUnauthenticatedIdentities=True,
- **conn_parameters
- )
- self.assertEqual(result.get("result"), False)
- self.assertTrue(
- "error on set_identity_pool_roles" in result.get("comment", "")
- )
- expected_call_args = (
- dict(
- IdentityPoolId=second_pool_id,
- Roles={"authenticated": "my_auth_role_arn"},
- ),
- )
- self.assertTrue(
- self.conn.set_identity_pool_roles.call_args == expected_call_args
- )
- @pytest.mark.slow_test(seconds=60) # Test takes >30 and <=60 seconds
- def test_present_when_pool_name_does_not_exist(self):
- """
- Tests the successful case of creating a new instance, and updating its
- roles
- """
- self.conn.list_identity_pools.return_value = identity_pools_ret
- self.conn.create_identity_pool.side_effect = (
- self._describe_identity_pool_side_effect
- )
- self.conn.get_identity_pool_roles.return_value = default_pool_role_ret
- self.conn.set_identity_pool_roles.return_value = None
- with patch.dict(
- self.funcs,
- {
- "boto_iam.describe_role": MagicMock(
- return_value={"arn": "my_auth_role_arn"}
- )
- },
- ):
- result = self.salt_states["boto_cognitoidentity.pool_present"](
- name="test pool present",
- IdentityPoolName=default_pool_name,
- AuthenticatedRole="my_auth_role",
- AllowUnauthenticatedIdentities=True,
- DeveloperProviderName=default_dev_provider,
- **conn_parameters
- )
- self.assertEqual(result.get("result"), True)
- expected_call_args = (
- dict(
- AllowUnauthenticatedIdentities=True,
- IdentityPoolName=default_pool_name,
- DeveloperProviderName=default_dev_provider,
- SupportedLoginProviders={},
- OpenIdConnectProviderARNs=[],
- ),
- )
- self.assertTrue(
- self.conn.create_identity_pool.call_args == expected_call_args
- )
- expected_call_args = (
- dict(
- IdentityPoolId=default_pool_id,
- Roles={"authenticated": "my_auth_role_arn"},
- ),
- )
- self.assertTrue(
- self.conn.set_identity_pool_roles.call_args == expected_call_args
- )
- self.assertTrue(self.conn.update_identity_pool.call_count == 0)
- @pytest.mark.slow_test(seconds=60) # Test takes >30 and <=60 seconds
- def test_present_when_pool_name_exists(self):
- """
- Tests the successful case of updating a single instance with matching
- IdentityPoolName and its roles.
- """
- self.conn.list_identity_pools.return_value = identity_pools_ret
- self.conn.describe_identity_pool.side_effect = (
- self._describe_identity_pool_side_effect
- )
- self.conn.update_identity_pool.return_value = second_pool_update_ret
- self.conn.get_identity_pool_roles.return_value = second_pool_role_ret
- self.conn.set_identity_pool_roles.return_value = None
- with patch.dict(
- self.funcs,
- {
- "boto_iam.describe_role": MagicMock(
- return_value={"arn": "my_auth_role_arn"}
- )
- },
- ):
- result = self.salt_states["boto_cognitoidentity.pool_present"](
- name="test pool present",
- IdentityPoolName=second_pool_name,
- AuthenticatedRole="my_auth_role",
- AllowUnauthenticatedIdentities=True,
- **conn_parameters
- )
- self.assertEqual(result.get("result"), True)
- expected_call_args = (
- dict(
- AllowUnauthenticatedIdentities=True,
- IdentityPoolId=second_pool_id,
- IdentityPoolName=second_pool_name,
- ),
- )
- self.assertTrue(
- self.conn.update_identity_pool.call_args == expected_call_args
- )
- expected_call_args = (
- dict(
- IdentityPoolId=second_pool_id,
- Roles={"authenticated": "my_auth_role_arn"},
- ),
- )
- self.assertTrue(
- self.conn.set_identity_pool_roles.call_args == expected_call_args
- )
- self.assertTrue(self.conn.create_identity_pool.call_count == 0)
- @pytest.mark.slow_test(seconds=1) # Test takes >0.1 and <=1 seconds
- def test_absent_when_pool_does_not_exist(self):
- """
- Tests absent on an identity pool that does not exist.
- """
- self.conn.list_identity_pools.return_value = identity_pools_ret
- result = self.salt_states["boto_cognitoidentity.pool_absent"](
- name="test pool absent",
- IdentityPoolName="no_such_pool_name",
- RemoveAllMatched=False,
- **conn_parameters
- )
- self.assertEqual(result.get("result"), True)
- self.assertEqual(result["changes"], {})
- @pytest.mark.slow_test(seconds=1) # Test takes >0.1 and <=1 seconds
- def test_absent_when_removeallmatched_is_false_and_multiple_pools_matched(self):
- """
- Tests absent on when RemoveAllMatched flag is false and there are multiple matches
- for the given pool name
- first_pool_name is matched to first and third pool with different id's
- """
- self.conn.list_identity_pools.return_value = identity_pools_ret
- self.conn.describe_identity_pool.side_effect = (
- self._describe_identity_pool_side_effect
- )
- result = self.salt_states["boto_cognitoidentity.pool_absent"](
- name="test pool absent",
- IdentityPoolName=first_pool_name,
- RemoveAllMatched=False,
- **conn_parameters
- )
- self.assertEqual(result.get("result"), False)
- self.assertEqual(result["changes"], {})
- self.assertTrue(
- "{0}".format([first_pool_ret, third_pool_ret]) in result.get("comment", "")
- )
- @pytest.mark.slow_test(seconds=1) # Test takes >0.1 and <=1 seconds
- def test_absent_when_failing_to_describe_identity_pools(self):
- """
- Tests exceptions when describing identity pools
- """
- self.conn.list_identity_pools.return_value = identity_pools_ret
- self.conn.describe_identity_pool.side_effect = ClientError(
- error_content, "error on describe identity pool"
- )
- result = self.salt_states["boto_cognitoidentity.pool_absent"](
- name="test pool absent",
- IdentityPoolName=first_pool_name,
- RemoveAllMatched=False,
- **conn_parameters
- )
- self.assertEqual(result.get("result"), False)
- self.assertTrue("error on describe identity pool" in result.get("comment", {}))
- @pytest.mark.slow_test(seconds=1) # Test takes >0.1 and <=1 seconds
- def test_absent_when_erroring_on_delete_identity_pool(self):
- """
- Tests error due to delete_identity_pools
- """
- self.conn.list_identity_pools.return_value = identity_pools_ret
- self.conn.describe_identity_pool.side_effect = (
- self._describe_identity_pool_side_effect
- )
- self.conn.delete_identity_pool.side_effect = ClientError(
- error_content, "error on delete identity pool"
- )
- result = self.salt_states["boto_cognitoidentity.pool_absent"](
- name="test pool absent",
- IdentityPoolName=first_pool_name,
- RemoveAllMatched=True,
- **conn_parameters
- )
- self.assertEqual(result.get("result"), False)
- self.assertEqual(result["changes"], {})
- self.assertTrue("error on delete identity pool" in result.get("comment", ""))
- @pytest.mark.slow_test(seconds=1) # Test takes >0.1 and <=1 seconds
- def test_absent_when_a_single_pool_exists(self):
- """
- Tests absent succeeds on delete when a single pool matched and
- RemoveAllMatched is False
- """
- self.conn.list_identity_pools.return_value = identity_pools_ret
- self.conn.describe_identity_pool.return_value = second_pool_ret
- self.conn.delete_identity_pool.return_value = None
- result = self.salt_states["boto_cognitoidentity.pool_absent"](
- name="test pool absent",
- IdentityPoolName=second_pool_name,
- RemoveAllMatched=False,
- **conn_parameters
- )
- self.assertEqual(result.get("result"), True)
- expected_changes = {
- "new": {"Identity Pool Id {0}".format(second_pool_id): None},
- "old": {"Identity Pool Id {0}".format(second_pool_id): second_pool_name},
- }
- self.assertEqual(result["changes"], expected_changes)
- @pytest.mark.slow_test(seconds=1) # Test takes >0.1 and <=1 seconds
- def test_absent_when_multiple_pool_exists_and_removeallmatched_flag_is_true(self):
- """
- Tests absent succeeds on delete when a multiple pools matched and
- RemoveAllMatched is True
- first_pool_name should match to first_pool_id and third_pool_id
- """
- self.conn.list_identity_pools.return_value = identity_pools_ret
- self.conn.describe_identity_pool.side_effect = (
- self._describe_identity_pool_side_effect
- )
- self.conn.delete_identity_pool.return_value = None
- result = self.salt_states["boto_cognitoidentity.pool_absent"](
- name="test pool absent",
- IdentityPoolName=first_pool_name,
- RemoveAllMatched=True,
- **conn_parameters
- )
- self.assertEqual(result.get("result"), True)
- expected_changes = {
- "new": {
- "Identity Pool Id {0}".format(first_pool_id): None,
- "Identity Pool Id {0}".format(third_pool_id): None,
- },
- "old": {
- "Identity Pool Id {0}".format(first_pool_id): first_pool_name,
- "Identity Pool Id {0}".format(third_pool_id): third_pool_name,
- },
- }
- self.assertEqual(result["changes"], expected_changes)
|