aboutsummaryrefslogtreecommitdiffstats
path: root/src/test/java
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/java')
-rw-r--r--src/test/java/org/onap/pomba/common/datatypes/ModelContextTests.java60
-rw-r--r--src/test/java/org/onap/pomba/common/datatypes/ServiceTests.java36
-rw-r--r--src/test/java/org/onap/pomba/common/datatypes/VfModuleTests.java39
-rw-r--r--src/test/java/org/onap/pomba/common/datatypes/VfTests.java112
-rw-r--r--src/test/java/org/onap/pomba/common/datatypes/VnfcTests.java37
5 files changed, 284 insertions, 0 deletions
diff --git a/src/test/java/org/onap/pomba/common/datatypes/ModelContextTests.java b/src/test/java/org/onap/pomba/common/datatypes/ModelContextTests.java
new file mode 100644
index 0000000..bad0523
--- /dev/null
+++ b/src/test/java/org/onap/pomba/common/datatypes/ModelContextTests.java
@@ -0,0 +1,60 @@
+/*
+ * ============LICENSE_START===================================================
+ * Copyright (c) 2018 Amdocs
+ * ============================================================================
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * ============LICENSE_END=====================================================
+ */
+package org.onap.pomba.common.datatypes;
+
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertTrue;
+
+import java.util.ArrayList;
+import java.util.List;
+
+import org.junit.Test;
+
+public class ModelContextTests {
+ @Test
+ public void testSetService() {
+ ModelContext modelContext = new ModelContext();
+ Service aService = new Service();
+ aService.setName("Service Name");
+ modelContext.setService(aService);
+ assertTrue("ModelContext service name doesn't match",
+ modelContext.getService().getName().equals("Service Name"));
+ }
+
+ @Test
+ public void testSetVf() {
+ ModelContext modelContext = new ModelContext();
+ List<VF> vfList = new ArrayList<VF>();
+ VF aVF = new VF();
+ aVF.setName("VF name");
+ vfList.add(aVF);
+ modelContext.setVf(vfList);
+ assertEquals(modelContext.getVf().size(), 1);
+ }
+
+ @Test
+ public void testAddVf() {
+ ModelContext modelContext = new ModelContext();
+ VF aVF = new VF();
+ aVF.setName("VF name");
+ modelContext.addVf(aVF);
+ assertEquals(modelContext.getVf().size(), 1);
+ assertTrue("ModelContext VF name doesn't match", modelContext.getVf().get(0).getName().equals("VF name"));
+ }
+
+}
diff --git a/src/test/java/org/onap/pomba/common/datatypes/ServiceTests.java b/src/test/java/org/onap/pomba/common/datatypes/ServiceTests.java
new file mode 100644
index 0000000..1f7ba50
--- /dev/null
+++ b/src/test/java/org/onap/pomba/common/datatypes/ServiceTests.java
@@ -0,0 +1,36 @@
+/*
+ * ============LICENSE_START===================================================
+ * Copyright (c) 2018 Amdocs
+ * ============================================================================
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * ============LICENSE_END=====================================================
+ */
+package org.onap.pomba.common.datatypes;
+
+import org.junit.Test;
+
+import static org.junit.Assert.assertTrue;
+
+public class ServiceTests {
+ @Test
+ public void testService() {
+ Service aService = new Service();
+ aService.setName("new service");
+ aService.setInvariantUuid("Invariant Uuid");
+ aService.setUuid("Uuid");
+
+ assertTrue("Service Name doesn't match", aService.getName().equals("new service"));
+ assertTrue("Invariant Uuid doesn't match", aService.getInvariantUuid().equals("Invariant Uuid"));
+ assertTrue("Uuid doesn't match", aService.getUuid().equals("Uuid"));
+ }
+}
diff --git a/src/test/java/org/onap/pomba/common/datatypes/VfModuleTests.java b/src/test/java/org/onap/pomba/common/datatypes/VfModuleTests.java
new file mode 100644
index 0000000..afce299
--- /dev/null
+++ b/src/test/java/org/onap/pomba/common/datatypes/VfModuleTests.java
@@ -0,0 +1,39 @@
+/*
+ * ============LICENSE_START===================================================
+ * Copyright (c) 2018 Amdocs
+ * ============================================================================
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * ============LICENSE_END=====================================================
+ */
+package org.onap.pomba.common.datatypes;
+
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertTrue;
+
+import org.junit.Test;
+
+public class VfModuleTests {
+ @Test
+ public void testVFModule() {
+ VFModule aVFModule = new VFModule();
+ aVFModule.setInvariantUuid("Invariant Uuid");
+ aVFModule.setUuid("Uuid");
+ aVFModule.setMaxInstances(10);
+ aVFModule.setMinInstances(1);
+
+ assertTrue("VFModule Invariant Uuid doesn't match", aVFModule.getInvariantUuid().equals("Invariant Uuid"));
+ assertTrue("VFModule Uuid doesn't match", aVFModule.getUuid().equals("Uuid"));
+ assertEquals(aVFModule.getMaxInstances(), 10);
+ assertEquals(aVFModule.getMinInstances(), 1);
+ }
+}
diff --git a/src/test/java/org/onap/pomba/common/datatypes/VfTests.java b/src/test/java/org/onap/pomba/common/datatypes/VfTests.java
new file mode 100644
index 0000000..8b2a255
--- /dev/null
+++ b/src/test/java/org/onap/pomba/common/datatypes/VfTests.java
@@ -0,0 +1,112 @@
+/*
+ * ============LICENSE_START===================================================
+ * Copyright (c) 2018 Amdocs
+ * ============================================================================
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * ============LICENSE_END=====================================================
+ */
+package org.onap.pomba.common.datatypes;
+
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertTrue;
+
+import java.util.ArrayList;
+import java.util.List;
+
+import org.junit.Test;
+
+public class VfTests {
+ @Test
+ public void testVF() {
+ VF aVF = new VF();
+ aVF.setName("VF name");
+ aVF.setType("Type");
+ aVF.setInvariantUuid("Invariant Uuid");
+ aVF.setUuid("Uuid");
+ aVF.setNfNamingCode("NF Naming Code");
+ assertTrue("VF name doesn't match", aVF.getName().equals("VF name"));
+ assertTrue("VF Type doesn't match", aVF.getType().equals("Type"));
+ assertTrue("VF Invariant Uuid doesn't match", aVF.getInvariantUuid().equals("Invariant Uuid"));
+ assertTrue("VF Uuid doesn't match", aVF.getUuid().equals("Uuid"));
+ assertTrue("VF NF Naming Code doesn't match", aVF.getNfNamingCode().equals("NF Naming Code"));
+ }
+
+ @Test
+ public void testSetVFModuleList() {
+ VF aVF = new VF();
+ List<VFModule> vfModuleList = new ArrayList<VFModule>();
+ assertEquals(vfModuleList.size(), 0);
+ VFModule vfModule = new VFModule();
+ vfModule.setInvariantUuid("Invariant Uuid");
+ vfModule.setMaxInstances(10);
+ vfModule.setMinInstances(1);
+ vfModule.setUuid("Uuid");
+ vfModuleList.add(vfModule);
+ aVF.setVfModules(vfModuleList);
+ assertEquals(vfModuleList.size(), 1);
+ }
+
+ @Test
+ public void testAddVfModule() {
+ VF aVF = new VF();
+ List<VFModule> vfModuleList = new ArrayList<VFModule>();
+ assertEquals(vfModuleList.size(), 0);
+ VFModule vfModule = new VFModule();
+ vfModule.setInvariantUuid("Invariant Uuid");
+ vfModule.setMaxInstances(10);
+ vfModule.setMinInstances(1);
+ vfModule.setUuid("Uuid");
+ vfModuleList.add(vfModule);
+ aVF.addVfModule(vfModule);
+ assertEquals(vfModuleList.size(), 1);
+ }
+
+ @Test
+ public void testGetVfModules() {
+ VF aVF = new VF();
+ List<VFModule> vfModuleList = new ArrayList<VFModule>();
+ assertEquals(vfModuleList.size(), 0);
+ VFModule vfModule = new VFModule();
+ vfModule.setInvariantUuid("Invariant Uuid");
+ vfModule.setMaxInstances(10);
+ vfModule.setMinInstances(1);
+ vfModule.setUuid("Uuid");
+ vfModuleList.add(vfModule);
+ aVF.addVfModule(vfModule);
+ List<VFModule> resultVFModules = aVF.getVfModules();
+ assertTrue("VF Modules doesn't match",
+ ((VFModule) resultVFModules.get(0)).getInvariantUuid().equals("Invariant Uuid"));
+ }
+
+ @Test
+ public void testSetVnfc() {
+ VF aVF = new VF();
+ List<VNFC> vnfcList = new ArrayList<VNFC>();
+ assertEquals(vnfcList.size(), 0);
+ VNFC aVNFC = new VNFC();
+ aVNFC.setName("VNFC name");
+ vnfcList.add(aVNFC);
+ aVF.setVnfc(vnfcList);
+ assertTrue("VNFC list item doesn't match", aVF.getVnfc().get(0).getName().equals("VNFC name"));
+ }
+
+ @Test
+ public void testAddVnfc() {
+ VF aVF = new VF();
+ assertEquals(aVF.getVnfc().size(), 0);
+ VNFC aVNFC = new VNFC();
+ aVNFC.setName("VNFC name");
+ aVF.addVnfc(aVNFC);
+ assertTrue("VNFC list item doesn't match", aVF.getVnfc().get(0).getName().equals("VNFC name"));
+ }
+}
diff --git a/src/test/java/org/onap/pomba/common/datatypes/VnfcTests.java b/src/test/java/org/onap/pomba/common/datatypes/VnfcTests.java
new file mode 100644
index 0000000..b1c1285
--- /dev/null
+++ b/src/test/java/org/onap/pomba/common/datatypes/VnfcTests.java
@@ -0,0 +1,37 @@
+/*
+ * ============LICENSE_START===================================================
+ * Copyright (c) 2018 Amdocs
+ * ============================================================================
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * ============LICENSE_END=====================================================
+ */
+package org.onap.pomba.common.datatypes;
+
+import static org.junit.Assert.assertTrue;
+
+import org.junit.Test;
+
+public class VnfcTests {
+ @Test
+ public void testVNFC() {
+ VNFC aVNFC = new VNFC();
+ aVNFC.setName("VNFC name");
+ aVNFC.setInvariantUuid("Invariant Uuid");
+ aVNFC.setUuid("Uuid");
+ aVNFC.setNfcNamingCode("NFC Naming Code");
+ assertTrue("VNFC name doesn't match", aVNFC.getName().equals("VNFC name"));
+ assertTrue("VNFC invariant uuid doesn't match", aVNFC.getInvariantUuid().equals("Invariant Uuid"));
+ assertTrue("VNFC NFC Naming Code doesn't match", aVNFC.getNfcNamingCode().equals("NFC Naming Code"));
+ assertTrue("VNFC uuid doesn't match", aVNFC.getUuid().equals("Uuid"));
+ }
+}