Skip to content

Commit

Permalink
Update conductor RPC server unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Dany9966 committed Sep 5, 2024
1 parent 82cb460 commit bb45028
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions coriolis/tests/conductor/rpc/test_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -3770,8 +3770,6 @@ def test_delete_migration(
)
mock_delete_migration.assert_not_called()

@mock.patch.object(server.ConductorServerEndpoint,
'_check_delete_reservation_for_transfer')
@mock.patch.object(server.ConductorServerEndpoint,
'_cancel_tasks_execution')
@mock.patch.object(lockutils, 'lock')
Expand All @@ -3783,7 +3781,6 @@ def test_cancel_migration(
mock_get_migration,
mock_lock,
mock_cancel_tasks_execution,
mock_check_delete_reservation_for_transfer,
config,
raises_exception
):
Expand Down Expand Up @@ -3822,8 +3819,6 @@ def test_cancel_migration(
execution,
force=force
)
mock_check_delete_reservation_for_transfer.assert_called_once_with(
migration)

mock_get_migration.assert_called_once_with(
mock.sentinel.context,
Expand Down Expand Up @@ -5018,6 +5013,9 @@ def test_cancel_execution_for_osmorphing_debugging(

@mock.patch.object(server.ConductorServerEndpoint,
"_advance_execution_state")
@mock.patch.object(server.ConductorServerEndpoint,
"_check_delete_reservation_for_transfer")
@mock.patch.object(db_api, "get_action")
@mock.patch.object(db_api, "get_tasks_execution")
@mock.patch.object(db_api, "set_task_status")
@mock.patch.object(db_api, "get_task")
Expand All @@ -5028,6 +5026,8 @@ def test_confirm_task_cancellation(
mock_get_task,
mock_set_task_status,
mock_get_tasks_execution,
mock_get_action,
mock_check_delete_reservation,
mock_advance_execution_state,
task_status,
expected_final_status,
Expand All @@ -5037,6 +5037,9 @@ def test_confirm_task_cancellation(
task.status = getattr(constants, task_status)
expected_final_status = getattr(constants, expected_final_status)
mock_get_task.return_value = task
mock_execution = mock.MagicMock()
mock_execution.type = constants.EXECUTION_TYPE_MIGRATION
mock_get_tasks_execution.return_value = mock_execution

testutils.get_wrapped_function(self.server.confirm_task_cancellation)(
self.server,
Expand All @@ -5054,6 +5057,11 @@ def test_confirm_task_cancellation(
if expected_advance_execution_state_call:
mock_get_tasks_execution.assert_called_once_with(
mock.sentinel.context, task.execution_id)
mock_get_action.assert_called_once_with(
mock.sentinel.context, mock_execution.action_id,
include_task_info=False)
mock_check_delete_reservation.assert_called_once_with(
mock_get_action.return_value)
mock_advance_execution_state.assert_called_once_with(
mock.sentinel.context,
mock_get_tasks_execution.return_value,
Expand Down

0 comments on commit bb45028

Please sign in to comment.