From: Lukasz Rajewski Date: Mon, 17 Jan 2022 17:06:25 +0000 (+0100) Subject: [TEST] Fixed CBA and its publish for Basic CNF macro X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F16%2F126616%2F2;p=testsuite%2Fpythonsdk-tests.git [TEST] Fixed CBA and its publish for Basic CNF macro - Fixed CBA for Basic CNF macro after bad git push of binary file. - Added nodeport exposure for cbapublish step when CBA file is already enriched Issue-ID: TEST-376 Signed-off-by: Lukasz Rajewski Change-Id: Icf4bbf94691453a5421467dc5c8ec876a0fa191a --- diff --git a/.gitattributes b/.gitattributes index 2eb6749..1fd8578 100644 --- a/.gitattributes +++ b/.gitattributes @@ -3,3 +3,4 @@ *.jpg binary *.xlsx binary *.csar -text +*.zip binary diff --git a/src/onaptests/steps/onboard/cds.py b/src/onaptests/steps/onboard/cds.py index d6645ef..13e6203 100644 --- a/src/onaptests/steps/onboard/cds.py +++ b/src/onaptests/steps/onboard/cds.py @@ -217,6 +217,8 @@ class CbaPublishStep(CDSBaseStep): """Let's skip enrichment if enriched CBA is already present""" if Path.is_file(settings.CDS_CBA_UNENRICHED): self.add_step(CbaEnrichStep(cleanup=cleanup)) + else: + self.add_step(ExposeCDSBlueprintprocessorNodePortStep(cleanup=cleanup)) @property def description(self) -> str: diff --git a/src/onaptests/templates/artifacts/basic_cnf_cba_enriched.zip b/src/onaptests/templates/artifacts/basic_cnf_cba_enriched.zip index 825160c..cadb52f 100644 Binary files a/src/onaptests/templates/artifacts/basic_cnf_cba_enriched.zip and b/src/onaptests/templates/artifacts/basic_cnf_cba_enriched.zip differ