X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2FN2VC.git;a=blobdiff_plain;f=n2vc%2Ftests%2Funit%2Futils.py;h=b2d5c605d5ebf79e034801b529015bcaaf02033b;hp=ac86cdd7065735320b3b179fc072f7a92c1b13c3;hb=HEAD;hpb=667696ef11356f3267df58f2a81c6ecebb0e94b9 diff --git a/n2vc/tests/unit/utils.py b/n2vc/tests/unit/utils.py index ac86cdd..807c892 100644 --- a/n2vc/tests/unit/utils.py +++ b/n2vc/tests/unit/utils.py @@ -82,7 +82,18 @@ class FakeN2VC(MagicMock): detailed_status: str, vca_status: str, entity_type: str, + vca_id: str = None, ): + """ + Write application status to database + + :param: db_dict: DB dictionary + :param: status: Status of the application + :param: detailed_status: Detailed status + :param: vca_status: VCA status + :param: entity_type: Entity type ("application", "machine, and "action") + :param: vca_id: Id of the VCA. If None, the default VCA will be used. + """ self.last_written_values = Dict( { "n2vc_status": status, @@ -112,13 +123,13 @@ class FakeManualMachine(MagicMock): model_name = "FAKE MODEL" entity_type = "machine" safe_data = {"instance-id": "manual:myid"} + series = "FAKE SERIES" async def destroy(self, force): pass class FakeWatcher(AsyncMock): - delta_to_return = None async def Next(self): @@ -148,9 +159,15 @@ class FakeUnit(MagicMock): async def is_leader_from_status(self): return True - async def run_action(self, action_name): + async def run_action(self, action_name, **kwargs): return FakeAction() + @property + def machine_id(self): + return "existing_machine_id" + + name = "existing_unit" + class FakeApplication(AsyncMock): async def set_config(self, config): @@ -159,9 +176,18 @@ class FakeApplication(AsyncMock): async def add_unit(self, to): pass + async def destroy_unit(self, unit_name): + pass + async def get_actions(self): return ["existing_action"] + async def get_config(self): + return ["app_config"] + + async def scale(self, scale): + pass + units = [FakeUnit(), FakeUnit()]