Refactored Delete SchemaSet functionality
[cps.git] / cps-service / src / test / groovy / org / onap / cps / api / impl / E2ENetworkSliceSpec.groovy
index 22dc39a..d18bcf5 100755 (executable)
@@ -1,6 +1,8 @@
-/*-\r
+/*\r
  * ============LICENSE_START=======================================================\r
- *  Copyright (C) 2021 Nordix Foundation. All rights reserved.\r
+ * Copyright (C) 2021 Nordix Foundation.\r
+ * Modifications Copyright (C) 2021-2022 Bell Canada.\r
+ * Modifications Copyright (C) 2021 Pantheon.tech\r
  * ================================================================================\r
  * Licensed under the Apache License, Version 2.0 (the "License");\r
  * you may not use this file except in compliance with the License.\r
 package org.onap.cps.api.impl\r
 \r
 import org.onap.cps.TestUtils\r
+import org.onap.cps.api.CpsAdminService\r
+import org.onap.cps.notification.NotificationService\r
+import org.onap.cps.spi.CpsDataPersistenceService\r
 import org.onap.cps.spi.CpsModulePersistenceService\r
+import org.onap.cps.spi.model.Anchor\r
+import org.onap.cps.utils.YangUtils\r
+import org.onap.cps.yang.YangTextSchemaSourceSetBuilder\r
 import spock.lang.Specification\r
 \r
-\r
 class E2ENetworkSliceSpec extends Specification {\r
     def mockModuleStoreService = Mock(CpsModulePersistenceService)\r
-    def objectUnderTest = new CpsModuleServiceImpl()\r
+    def mockDataStoreService = Mock(CpsDataPersistenceService)\r
+    def mockCpsAdminService = Mock(CpsAdminService)\r
+    def mockNotificationService = Mock(NotificationService)\r
+    def cpsDataServiceImpl = new CpsDataServiceImpl()\r
+    def mockYangTextSchemaSourceSetCache = Mock(YangTextSchemaSourceSetCache)\r
+    def cpsModuleServiceImpl = new CpsModuleServiceImpl(mockModuleStoreService,\r
+            mockYangTextSchemaSourceSetCache,mockCpsAdminService )\r
+\r
+    def dataspaceName = 'someDataspace'\r
+    def anchorName = 'someAnchor'\r
+    def schemaSetName = 'someSchemaSet'\r
+    def noTimestamp = null\r
 \r
     def setup() {\r
-        objectUnderTest.cpsModulePersistenceService = mockModuleStoreService\r
+        cpsDataServiceImpl.cpsDataPersistenceService = mockDataStoreService\r
+        cpsDataServiceImpl.cpsAdminService = mockCpsAdminService\r
+        cpsDataServiceImpl.yangTextSchemaSourceSetCache = mockYangTextSchemaSourceSetCache\r
+        cpsDataServiceImpl.notificationService = mockNotificationService\r
     }\r
 \r
     def 'E2E model can be parsed by CPS.'() {\r
         given: 'Valid yang resource as name-to-content map'\r
-            def yangResourcesNameToContentMap = TestUtils.getYangResourcesAsMap('e2e/basic/ietf-inet-types.yang','e2e/basic/ietf-yang-types.yang','e2e/basic/ran-network2020-08-06.yang')\r
+            def yangResourcesNameToContentMap = TestUtils.getYangResourcesAsMap(\r
+                    'ietf/ietf-inet-types@2013-07-15.yang',\r
+                    'ietf/ietf-yang-types@2013-07-15.yang',\r
+                    'e2e/basic/ran-network2020-08-06.yang'\r
+            )\r
+        when: 'Create schema set method is invoked'\r
+            cpsModuleServiceImpl.createSchemaSet(dataspaceName, schemaSetName, yangResourcesNameToContentMap)\r
+        then: 'Parameters are validated and processing is delegated to persistence service'\r
+            1 * mockModuleStoreService.storeSchemaSet(dataspaceName, schemaSetName, yangResourcesNameToContentMap)\r
+    }\r
+\r
+    def 'E2E Coverage Area-Tracking Area & TA-Cell mapping model can be parsed by CPS.'() {\r
+        given: 'Valid yang resource as name-to-content map'\r
+            def yangResourcesNameToContentMap = TestUtils.getYangResourcesAsMap(\r
+                    'e2e/basic/cps-cavsta-onap-internal2021-01-28.yang')\r
         when: 'Create schema set method is invoked'\r
-            objectUnderTest.createSchemaSet('someDataspace', 'someSchemaSet', yangResourcesNameToContentMap)\r
+            cpsModuleServiceImpl.createSchemaSet(dataspaceName, schemaSetName, yangResourcesNameToContentMap)\r
+        then: 'Parameters are validated and processing is delegated to persistence service'\r
+            1 * mockModuleStoreService.storeSchemaSet(dataspaceName, schemaSetName, yangResourcesNameToContentMap)\r
+    }\r
+\r
+    def 'E2E Coverage Area-Tracking Area & TA-Cell mapping data can be parsed by CPS.'() {\r
+        given: 'Valid yang resource as name-to-content map'\r
+            def yangResourcesNameToContentMap = TestUtils.getYangResourcesAsMap(\r
+                    'e2e/basic/cps-cavsta-onap-internal2021-01-28.yang')\r
+            def schemaContext = YangTextSchemaSourceSetBuilder.of(yangResourcesNameToContentMap).getSchemaContext()\r
+            def dataNodeStored\r
+        and : 'a valid json is provided for the model'\r
+            def jsonData = TestUtils.getResourceFileContent('e2e/basic/cps-Cavsta-Data.txt')\r
+        and : 'all the further dependencies are mocked '\r
+            mockCpsAdminService.getAnchor(dataspaceName, anchorName) >>\r
+                    new Anchor().builder().name(anchorName).schemaSetName(schemaSetName).build()\r
+            mockYangTextSchemaSourceSetCache.get(dataspaceName, schemaSetName) >>\r
+                    YangTextSchemaSourceSetBuilder.of(yangResourcesNameToContentMap)\r
+            mockModuleStoreService.getYangSchemaResources(dataspaceName, schemaSetName) >> schemaContext\r
+        when: 'saveData method is invoked'\r
+            cpsDataServiceImpl.saveData(dataspaceName, anchorName, jsonData, noTimestamp)\r
         then: 'Parameters are validated and processing is delegated to persistence service'\r
-            1 * mockModuleStoreService.storeSchemaSet('someDataspace', 'someSchemaSet', yangResourcesNameToContentMap)\r
+            1 * mockDataStoreService.storeDataNode('someDataspace', 'someAnchor', _) >>\r
+                    { args -> dataNodeStored = args[2]}\r
+            def child = dataNodeStored.childDataNodes[0]\r
+            assert child.childDataNodes.size() == 1\r
+        and: 'list of Tracking Area for a Coverage Area are stored with correct xpath and child nodes '\r
+            def listOfTAForCoverageArea = child.childDataNodes[0]\r
+            listOfTAForCoverageArea.xpath == '/ran-coverage-area/pLMNIdList[@mcc=\'310\' and @mnc=\'410\']/' +\r
+                    'coverage-area[@coverageArea=\'Washington\']'\r
+            listOfTAForCoverageArea.childDataNodes[0].leaves.get('nRTAC') == 234\r
+        and: 'list of cells in a tracking area are stored with correct xpath and child nodes '\r
+            def listOfCellsInTrackingArea = listOfTAForCoverageArea.childDataNodes[0]\r
+            listOfCellsInTrackingArea.xpath == '/ran-coverage-area/pLMNIdList[@mcc=\'310\' and @mnc=\'410\']/' +\r
+                    'coverage-area[@coverageArea=\'Washington\']/coverageAreaTAList[@nRTAC=\'234\']'\r
+            listOfCellsInTrackingArea.childDataNodes[0].leaves.get('cellLocalId') == 15709\r
+    }\r
+\r
+    def 'E2E Coverage Area-Tracking Area & TA-Cell mapping data can be parsed for RAN inventory.'() {\r
+        def dataNodeStored\r
+        given: 'valid yang resource as name-to-content map'\r
+            def yangResourcesNameToContentMap = TestUtils.getYangResourcesAsMap(\r
+                    'e2e/basic/cps-ran-inventory@2021-01-28.yang')\r
+            def schemaContext = YangTextSchemaSourceSetBuilder.of(yangResourcesNameToContentMap).getSchemaContext()\r
+        and : 'a valid json is provided for the model'\r
+            def jsonData = TestUtils.getResourceFileContent('e2e/basic/cps-ran-inventory-data.json')\r
+        and : 'all the further dependencies are mocked '\r
+            mockCpsAdminService.getAnchor('someDataspace', 'someAnchor') >>\r
+                    new Anchor().builder().name('someAnchor').schemaSetName('someSchemaSet').build()\r
+            mockYangTextSchemaSourceSetCache.get('someDataspace', 'someSchemaSet') >> YangTextSchemaSourceSetBuilder.of(yangResourcesNameToContentMap)\r
+            mockModuleStoreService.getYangSchemaResources('someDataspace', 'someSchemaSet') >> schemaContext\r
+        when: 'saveData method is invoked'\r
+            cpsDataServiceImpl.saveData('someDataspace', 'someAnchor', jsonData, noTimestamp)\r
+        then: 'parameters are validated and processing is delegated to persistence service'\r
+            1 * mockDataStoreService.storeDataNode('someDataspace', 'someAnchor', _) >>\r
+                    { args -> dataNodeStored = args[2]}\r
+        and: 'the size of the tree is correct'\r
+            def cpsRanInventory = TestUtils.getFlattenMapByXpath(dataNodeStored)\r
+            assert  cpsRanInventory.size() == 4\r
+        and: 'ran-inventory contains the correct child node'\r
+            def ranInventory = cpsRanInventory.get('/ran-inventory')\r
+            def ranSlices = cpsRanInventory.get('/ran-inventory/ran-slices[@rannfnssiid=\'14559ead-f4fe-4c1c-a94c-8015fad3ea35\']')\r
+            def sliceProfilesList = cpsRanInventory.get('/ran-inventory/ran-slices[@rannfnssiid=\'14559ead-f4fe-4c1c-a94c-8015fad3ea35\']/sliceProfilesList[@sliceProfileId=\'f33a9dd8-ae51-4acf-8073-c9390c25f6f1\']')\r
+            def pLMNIdList = cpsRanInventory.get('/ran-inventory/ran-slices[@rannfnssiid=\'14559ead-f4fe-4c1c-a94c-8015fad3ea35\']/sliceProfilesList[@sliceProfileId=\'f33a9dd8-ae51-4acf-8073-c9390c25f6f1\']/pLMNIdList[@mcc=\'310\' and @mnc=\'410\']')\r
+            ranInventory.getChildDataNodes().size() == 1\r
+            ranInventory.getChildDataNodes().find( {it.xpath == ranSlices.xpath})\r
+        and: 'ranSlices contains the correct child node'\r
+            ranSlices.getChildDataNodes().size() == 1\r
+            ranSlices.getChildDataNodes().find( {it.xpath == sliceProfilesList.xpath})\r
+        and: 'sliceProfilesList contains the correct child node'\r
+            sliceProfilesList.getChildDataNodes().size() == 1\r
+            sliceProfilesList.getChildDataNodes().find( {it.xpath == pLMNIdList.xpath})\r
+        and: 'pLMNIdList contains no children'\r
+            pLMNIdList.getChildDataNodes().size() == 0\r
+\r
+    }\r
+\r
+    def 'E2E RAN Schema Model.'(){\r
+        given: 'yang resources'\r
+            def yangResourcesNameToContentMap = TestUtils.getYangResourcesAsMap(\r
+                    'ietf/ietf-inet-types@2013-07-15.yang',\r
+                    'ietf/ietf-yang-types@2013-07-15.yang',\r
+                    'e2e/basic/cps-ran-schema-model@2021-05-19.yang'\r
+            )\r
+        and : 'json data'\r
+            def jsonData = TestUtils.getResourceFileContent('e2e/basic/cps-ran-schema-model-data-v4.json')\r
+        expect: 'schema context is built with no exception indicating the schema set being valid '\r
+            def schemaContext = YangTextSchemaSourceSetBuilder.of(yangResourcesNameToContentMap).getSchemaContext()\r
+        and: 'data is parsed with no exception indicating the model match'\r
+            YangUtils.parseJsonData(jsonData, schemaContext) != null\r
     }\r
 }\r