summaryrefslogtreecommitdiffstats
path: root/src/test
diff options
context:
space:
mode:
authorPavel Aharoni <pa0916@att.com>2017-09-05 18:57:07 +0300
committerPavel Aharoni <pa0916@att.com>2017-09-05 18:57:07 +0300
commit2225b30cd1f3f41348712278510ec6c0f2adb638 (patch)
tree85f3dd67db20dae768dd3dc6622b2767c232f368 /src/test
parentd18b66dcc4fc540e2f62b79e33bf954df2dff58b (diff)
[SDC-243] adding value to SdcTypes
Change-Id: I7e1236d9cecbf2d44744766eb7f27d7145d5a537 Signed-off-by: Pavel Aharoni <pa0916@att.com>
Diffstat (limited to 'src/test')
-rw-r--r--src/test/java/org/openecomp/sdc/impl/SdcToscaParserBasicTest.java5
-rw-r--r--src/test/java/org/openecomp/sdc/impl/ToscaParserNodeTemplateTest.java9
-rw-r--r--src/test/resources/csars/service-PortMirroring.csarbin0 -> 56821 bytes
3 files changed, 12 insertions, 2 deletions
diff --git a/src/test/java/org/openecomp/sdc/impl/SdcToscaParserBasicTest.java b/src/test/java/org/openecomp/sdc/impl/SdcToscaParserBasicTest.java
index a73f121..90124c5 100644
--- a/src/test/java/org/openecomp/sdc/impl/SdcToscaParserBasicTest.java
+++ b/src/test/java/org/openecomp/sdc/impl/SdcToscaParserBasicTest.java
@@ -33,8 +33,10 @@ public abstract class SdcToscaParserBasicTest {
static ISdcCsarHelper resolveGetInputCsarFalse;
static ISdcCsarHelper resolveGetInputCsarQA;
static ISdcCsarHelper resolveReqsCapsCsarQA;
+ static ISdcCsarHelper portMirroring;
- static Map<String, HashMap<String, List<String>>> fdntCsarHelper_Data;
+
+ static Map<String, HashMap<String, List<String>>> fdntCsarHelper_Data;
@BeforeClass
public static void init() throws SdcToscaParserException, JToscaException, IOException {
@@ -53,6 +55,7 @@ public abstract class SdcToscaParserBasicTest {
resolveGetInputCsarQA = getCsarHelper("csars/service-resolve-get-input-csar_QA.csar");
QAServiceForToscaParserTests = getCsarHelper("csars/service-ServiceForToscaParserTests-csar.csar");
resolveReqsCapsCsarQA = getCsarHelper("csars/service-sunny-flow2.csar");
+ portMirroring = getCsarHelper("csars/service-PortMirroring.csar");
fdntCsarHelper_Data = new HashMap<String, HashMap<String, List<String>>>(){
{
diff --git a/src/test/java/org/openecomp/sdc/impl/ToscaParserNodeTemplateTest.java b/src/test/java/org/openecomp/sdc/impl/ToscaParserNodeTemplateTest.java
index 2c62ca2..ad240b1 100644
--- a/src/test/java/org/openecomp/sdc/impl/ToscaParserNodeTemplateTest.java
+++ b/src/test/java/org/openecomp/sdc/impl/ToscaParserNodeTemplateTest.java
@@ -483,11 +483,18 @@ public class ToscaParserNodeTemplateTest extends SdcToscaParserBasicTest {
public void testServiceNodeTemplateBySdcType() {
List<NodeTemplate> serviceVfList = fdntCsarHelper.getServiceNodeTemplateBySdcType(SdcTypes.VF);
assertNotNull(serviceVfList);
- assertEquals(2, serviceVfList.size());
+ assertEquals(serviceVfList.size(), 2);
assertEquals(serviceVfList.get(0).getName(), "FDNT 1");
}
@Test
+ public void testServiceNodeTemplateBySdcTypeServiceProxy() {
+ List<NodeTemplate> serviceProxies = portMirroring.getServiceNodeTemplateBySdcType(SdcTypes.SERVICE_PROXY);
+ assertNotNull(serviceProxies);
+ assertEquals(serviceProxies.size(), 2);
+ }
+
+ @Test
public void testServiceNodeTemplateByNullSdcType() {
List<NodeTemplate> serviceVfList = fdntCsarHelper.getServiceNodeTemplateBySdcType(null);
assertNotNull(serviceVfList);
diff --git a/src/test/resources/csars/service-PortMirroring.csar b/src/test/resources/csars/service-PortMirroring.csar
new file mode 100644
index 0000000..6186291
--- /dev/null
+++ b/src/test/resources/csars/service-PortMirroring.csar
Binary files differ