From a6751002a0211f0b1d10c04183f5d35db9e83053 Mon Sep 17 00:00:00 2001 From: Yuli Shlosberg Date: Tue, 28 Nov 2017 16:08:18 +0200 Subject: add tests Change-Id: I45ce436bb369275792b6c5e8a67b22c3158686da Issue-ID: SDC-695 Signed-off-by: Yuli Shlosberg --- .../sdc/impl/ToscaParserValidationIssueTest.java | 2 +- src/test/java/org/openecomp/sdc/impl/myTest.java | 42 +++++++++++++++++++++ src/test/resources/csars/service-Oren1-csar-4.csar | Bin 0 -> 31574 bytes 3 files changed, 43 insertions(+), 1 deletion(-) create mode 100644 src/test/java/org/openecomp/sdc/impl/myTest.java create mode 100644 src/test/resources/csars/service-Oren1-csar-4.csar (limited to 'src') diff --git a/src/test/java/org/openecomp/sdc/impl/ToscaParserValidationIssueTest.java b/src/test/java/org/openecomp/sdc/impl/ToscaParserValidationIssueTest.java index 72bb5df..288cea6 100644 --- a/src/test/java/org/openecomp/sdc/impl/ToscaParserValidationIssueTest.java +++ b/src/test/java/org/openecomp/sdc/impl/ToscaParserValidationIssueTest.java @@ -46,7 +46,7 @@ public class ToscaParserValidationIssueTest extends SdcToscaParserBasicTest { public void testMultiSinceConformanceLevelIssues() throws SdcToscaParserException { ISdcCsarHelper Nfod2images = getCsarHelper("csars/service-Nfod2images-csar.csar");//conformance level 4.0 List notAnalyzedReport = factory.getNotAnalyzadExceptions(); - assertEquals( notAnalyzedReport.size(),17); + assertEquals( notAnalyzedReport.size(),2); List warningsReport = factory.getWarningExceptions(); assertEquals( warningsReport.size(),0); List criticalsReport = factory.getCriticalExceptions(); diff --git a/src/test/java/org/openecomp/sdc/impl/myTest.java b/src/test/java/org/openecomp/sdc/impl/myTest.java new file mode 100644 index 0000000..2f0da7f --- /dev/null +++ b/src/test/java/org/openecomp/sdc/impl/myTest.java @@ -0,0 +1,42 @@ +package org.openecomp.sdc.impl; + +import org.openecomp.sdc.toscaparser.api.NodeTemplate; +import org.testng.annotations.Test; +import org.openecomp.sdc.tosca.parser.api.ISdcCsarHelper; +import org.openecomp.sdc.tosca.parser.exceptions.SdcToscaParserException; +import org.openecomp.sdc.tosca.parser.impl.SdcToscaParserFactory; + +import java.io.File; +import java.util.List; + +import static org.openecomp.sdc.impl.SdcToscaParserBasicTest.getCsarHelper; + +public class myTest { + + static SdcToscaParserFactory factory; + static ISdcCsarHelper fdntCsarHelper; + + @Test + public void testNoValidationIssues() throws SdcToscaParserException { + + +// factory = SdcToscaParserFactory.getInstance(); +// fdntCsarHelper = getCsarHelper("csars/service-Oren1-csar-4.csar"); +// +// +// List serviceNodeTemplatesByType = fdntCsarHelper.getServiceNodeTemplatesByType("org.openecomp.nodes.ForwardingPath"); +// +// String target_range = fdntCsarHelper.getNodeTemplatePropertyLeafValue(serviceNodeTemplatesByType.get(0), "target_range"); + + } + + + protected static ISdcCsarHelper getCsarHelper(String path) throws SdcToscaParserException { + System.out.println("Parsing CSAR "+path+"..."); + String fileStr1 = SdcToscaParserBasicTest.class.getClassLoader().getResource(path).getFile(); + File file1 = new File(fileStr1); + ISdcCsarHelper sdcCsarHelper = factory.getSdcCsarHelper(file1.getAbsolutePath()); + return sdcCsarHelper; + } + +} diff --git a/src/test/resources/csars/service-Oren1-csar-4.csar b/src/test/resources/csars/service-Oren1-csar-4.csar new file mode 100644 index 0000000..1e1f738 Binary files /dev/null and b/src/test/resources/csars/service-Oren1-csar-4.csar differ -- cgit 1.2.3-korg