Skip to content

Commit

Permalink
TST: fix action test
Browse files Browse the repository at this point in the history
  • Loading branch information
anish-mudaraddi committed Sep 10, 2024
1 parent 33c2d75 commit 6594994
Showing 1 changed file with 16 additions and 18 deletions.
34 changes: 16 additions & 18 deletions tests/actions/test_openstack_actions.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,24 +16,24 @@ def test_module_exists(action_name):
assert hasattr(workflow_module, action_name)


class TestWorkflowActions(OpenstackActionTestBase):
class TestOpenstackActions(OpenstackActionTestBase):
"""
Unit tests for actions that use workflow modules
"""

action_cls = WorkflowActions
action_cls = OpenstackActions
# pylint: disable=invalid-name

def setUp(self):
"""setup for tests"""
super().setUp()
self.action: WorkflowActions = self.get_action_instance()
self.action: OpenstackActions = self.get_action_instance()
self.mock_kwargs = {
"kwarg1": NonCallableMock(),
"kwarg2": NonCallableMock(),
}

@patch("src.workflow_actions.import_module")
@patch("src.openstack_actions.import_module")
def test_run(self, mock_import):
"""
Tests that run method can dispatch to workflow methods
Expand All @@ -51,39 +51,37 @@ def test_run(self, mock_import):
**mock_parse_configs.return_value
)

@patch("src.workflow_actions.import_module")
@patch("src.workflow_actions.OpenstackConnection")
@patch("src.openstack_actions.import_module")
@patch("src.openstack_actions.OpenstackConnection")
def test_run_with_openstack(self, mock_openstack_connection, mock_import):
"""
Tests that run method can dispatch to workflow methods
and sets up openstack connection when requires_openstack is True
"""
mock_kwargs = {"kwarg1": "foo", "kwarg2": "bar", "cloud_account": "prod"}

mock_action_module_name = "workflow.submodule.module.fn1"
mock_conn = MagicMock()
mock_openstack_connection.return_value.__enter__.return_value = mock_conn

with patch.object(self.action, "parse_configs") as mock_parse_configs:
mock_parse_configs.return_value = dict(
self.mock_kwargs, **{"cloud_account": "prod"}
)

mock_parse_configs.return_value = mock_kwargs
self.action.run(
lib_entry_point=mock_action_module_name,
**self.mock_kwargs,
requires_openstack=True,
**mock_kwargs,
)

mock_parse_configs.assert_called_once_with(**self.mock_kwargs)
mock_import.assert_called_once_with("workflow.submodule.module")
mock_openstack_connection.assert_called_once_with("prod")
mock_parse_configs.assert_called_once_with(**mock_kwargs)
mock_import.assert_called_once_with("workflow.submodule.module")

mock_import.return_value.fn1.assert_called_once_with(
**{
"conn": mock_openstack_connection.return_value,
"kwarg1": NonCallableMock(),
"kwarg2": NonCallableMock(),
}
conn=mock_conn, kwarg1="foo", kwarg2="bar"
)

@patch("src.workflow_actions.SMTPAccount")
@patch("src.openstack_actions.SMTPAccount")
def parse_configs_with_smtp_account(self, mock_smtp_account):
"""
tests that parse_configs parses smtp_account_name properly if provided
Expand Down

0 comments on commit 6594994

Please sign in to comment.