Remove SNAPSHOT dependencies 01/20501/1
authorOfir Sonsino <os0695@att.com>
Wed, 25 Oct 2017 07:08:54 +0000 (10:08 +0300)
committerOfir Sonsino <os0695@att.com>
Wed, 25 Oct 2017 07:11:06 +0000 (10:11 +0300)
Change-Id: Iae31de0916f9456e135cb7b7a160f80a18643997
Issue-Id: VID-85
Signed-off-by: Ofir Sonsino <os0695@att.com>
vid-app-common/pom.xml
vid-app-common/src/test/java/org/opencomp/vid/controller/VidControllerTest.java

index 03c0317..d38ad2c 100755 (executable)
                <dependency>\r
                    <groupId>org.openecomp.sdc.sdc-tosca</groupId>\r
                    <artifactId>sdc-tosca</artifactId>\r
-                   <version>1.1.34</version>\r
+                   <version>1.1.32-SNAPSHOT</version>\r
                </dependency>\r
                <dependency>\r
                    <groupId>net.javacrumbs.json-unit</groupId>\r
index f5825ec..8596cf3 100644 (file)
@@ -87,7 +87,7 @@ public class VidControllerTest {
     }
 
 
-    /*//@Test
+    @Test
     public void assertEqualsBetweenServices() throws Exception {
         for (ToscaParserMockHelper mockHelper: getExpectedServiceModel()) {
             Service expectedService = mockHelper.getNewServiceModel().getService();
@@ -104,11 +104,11 @@ public class VidControllerTest {
                        JsonAssert.assertJsonEquals(mockHelper.getNewServiceModel(), actualServiceModel);
                        /*java.lang.AssertionError: JSON documents are different:
                        Different keys found in node "networks.ExtVL 0.commands". Expected [exVL_naming#naming_policy, network_role, network_scope], got [network_role, network_scope]. Missing: "networks.ExtVL 0.commands.exVL_naming#naming_policy"
-                       Different keys found in node "networks.ExtVL 0.inputs". Expected [exVL_naming#naming_policy, network_role, network_scope], got [network_role, network_scope]. Missing: "networks.ExtVL 0.inputs.exVL_naming#naming_policy"* /
+                       Different keys found in node "networks.ExtVL 0.inputs". Expected [exVL_naming#naming_policy, network_role, network_scope], got [network_role, network_scope]. Missing: "networks.ExtVL 0.inputs.exVL_naming#naming_policy"*/
                }
        }
 
-       //@Test
+       @Test
        public void assertEqualsBetweenNetworkNodes() throws Exception {
                for (ToscaParserMockHelper mockHelper: getExpectedServiceModel()) {
                        Map<String, Network> expectedNetworksMap = mockHelper.getNewServiceModel().getNetworks();
@@ -124,7 +124,7 @@ public class VidControllerTest {
        }
 
        //Because we are not supporting the old flow, the JSON are different by definition.
-       //@Test
+       @Test
        public void assertEqualsBetweenVnfsOfTosca() throws Exception {
                for (ToscaParserMockHelper mockHelper: getExpectedServiceModel()) {
                        Map<String, VNF> expectedVnfsMap = mockHelper.getNewServiceModel().getVnfs();
@@ -140,7 +140,7 @@ public class VidControllerTest {
                }
        }
 
-       //@Test
+       @Test
        public void assertEqualsBetweenVolumeGroups() throws Exception {
                for (ToscaParserMockHelper mockHelper: getExpectedServiceModel()) {
                        Path cSarPath = getCsarPath(mockHelper.getUuid());
@@ -153,7 +153,7 @@ public class VidControllerTest {
                }
        }
 
-       //@Test
+       @Test
        public void assertEqualsBetweenVfModules() throws Exception {
                for (ToscaParserMockHelper mockHelper: getExpectedServiceModel()) {
                        Map<String, VfModule> actualVfModules = p2.makeServiceModel(getCsarPath(mockHelper.getUuid()), getServiceByUuid(mockHelper.getUuid())).getVfModules();
@@ -189,7 +189,7 @@ public class VidControllerTest {
                        mockHelper.setNewServiceModel(newServiceModel1);
                }
                return mockHelpers;
-       }*/
+       }
 
        private Path getCsarPath(String uuid) throws AsdcCatalogException {
                return asdcClient.getServiceToscaModel(UUID.fromString(uuid));