# # Copyright (c) 2023-2024 Wind River Systems, Inc. # # SPDX-License-Identifier: Apache-2.0 # from dcmanager.common import consts from dcmanager.tests.unit.orchestrator.states.software.test_base import \ TestSoftwareOrchestrator class TestCreateVIMSoftwareStrategyState(TestSoftwareOrchestrator): def setUp(self): super().setUp() self.on_success_state = consts.STRATEGY_STATE_SW_APPLY_VIM_STRATEGY # Add the subcloud being processed by this unit test self.subcloud = self.setup_subcloud() # Add the strategy_step state being processed by this unit test self.strategy_step = self.setup_strategy_step( self.subcloud.id, consts.STRATEGY_STATE_SW_CREATE_VIM_STRATEGY) def test_create_vim_software_strategy_success(self): """Test create vim software strategy when the API call succeeds.""" self.worker.perform_state_action(self.strategy_step) # On success, the state should transition to the next state self.assert_step_updated( self.strategy_step.subcloud_id, self.on_success_state)