From af63861d32daac92cfaf1e00842fa23bc6ba7c6b Mon Sep 17 00:00:00 2001 From: Michal Jagiello Date: Wed, 25 Nov 2020 10:52:03 +0000 Subject: PNF macro instantiation Issue-ID: TEST-280 Change-Id: I6d18b90c3f4c66ddf8c9a4ebe3de7182481e331f Signed-off-by: Michal Jagiello --- tests/data/service_macro_template_pnfs.yaml | 4 +++ tests/data/service_macro_template_vnfs.yaml | 6 +++++ tests/test_service_macro_instantiation.py | 42 +++++++++++++++++++++++++++++ 3 files changed, 52 insertions(+) create mode 100644 tests/data/service_macro_template_pnfs.yaml create mode 100644 tests/data/service_macro_template_vnfs.yaml create mode 100644 tests/test_service_macro_instantiation.py (limited to 'tests') diff --git a/tests/data/service_macro_template_pnfs.yaml b/tests/data/service_macro_template_pnfs.yaml new file mode 100644 index 0000000..b0559b6 --- /dev/null +++ b/tests/data/service_macro_template_pnfs.yaml @@ -0,0 +1,4 @@ +--- +test_pnfs: + pnfs: + - pnf_name: pnf diff --git a/tests/data/service_macro_template_vnfs.yaml b/tests/data/service_macro_template_vnfs.yaml new file mode 100644 index 0000000..28fcc49 --- /dev/null +++ b/tests/data/service_macro_template_vnfs.yaml @@ -0,0 +1,6 @@ +--- +test_vnfs: + vnfs: + - vnf_name: vnf + pnfs: + - pnf_name: pnf diff --git a/tests/test_service_macro_instantiation.py b/tests/test_service_macro_instantiation.py new file mode 100644 index 0000000..382a86e --- /dev/null +++ b/tests/test_service_macro_instantiation.py @@ -0,0 +1,42 @@ +from unittest import mock + +from onaptests.steps.instantiate.service_macro import ( + YamlTemplateServiceMacroInstantiateStep +) + +VNFS_PNFS_YAML = './tests/data/service_macro_template_vnfs.yaml' +PNFS_YAML = './tests/data/service_macro_template_pnfs.yaml' + + +@mock.patch("onaptests.steps.base.BaseStep.add_step") +@mock.patch("onaptests.steps.instantiate.service_macro.settings") +@mock.patch("onaptests.steps.instantiate.service_macro.YamlTemplateServiceOnboardStep") +@mock.patch("onaptests.steps.instantiate.service_macro.ConnectServiceSubToCloudRegionStep") +@mock.patch("onaptests.steps.instantiate.service_macro.CustomerServiceSubscriptionCreateStep") +def test_are_vnfs(CustomerStep, CloudStep, OnboardStep, settings, add_step): + + settings.SERVICE_YAML_TEMPLATE = VNFS_PNFS_YAML + settings.ONLY_INSTANTIATE = False + + YamlTemplateServiceMacroInstantiateStep() + + CustomerStep.assert_not_called() + assert add_step.mock_calls == [ + mock.call(OnboardStep()), mock.call(CloudStep())] + + +@mock.patch("onaptests.steps.base.BaseStep.add_step") +@mock.patch("onaptests.steps.instantiate.service_macro.settings") +@mock.patch("onaptests.steps.instantiate.service_macro.YamlTemplateServiceOnboardStep") +@mock.patch("onaptests.steps.instantiate.service_macro.ConnectServiceSubToCloudRegionStep") +@mock.patch("onaptests.steps.instantiate.service_macro.CustomerServiceSubscriptionCreateStep") +def test_are_pnfs(CustomerStep, CloudStep, OnboardStep, settings, add_step): + + settings.SERVICE_YAML_TEMPLATE = PNFS_YAML + settings.ONLY_INSTANTIATE = False + + YamlTemplateServiceMacroInstantiateStep() + + CloudStep.assert_not_called() + assert add_step.mock_calls == [ + mock.call(OnboardStep()), mock.call(CustomerStep())] -- cgit 1.2.3-korg