Catch data validation exception in dmi data operation 43/139543/2
authorseanbeirne <sean.beirne@est.tech>
Mon, 25 Nov 2024 12:03:25 +0000 (12:03 +0000)
committerseanbeirne <sean.beirne@est.tech>
Mon, 25 Nov 2024 14:03:59 +0000 (14:03 +0000)
Issue-ID: CPS-2510
Change-Id: I4093459c824c202dc8dec4b869e338d4b80fbac8
Signed-off-by: seanbeirne <sean.beirne@est.tech>
cps-ncmp-service/src/main/java/org/onap/cps/ncmp/impl/data/DmiDataOperations.java
cps-ncmp-service/src/test/groovy/org/onap/cps/ncmp/impl/data/DmiDataOperationsSpec.groovy

index 41348ae..1e66ff6 100644 (file)
@@ -52,7 +52,7 @@ import org.onap.cps.ncmp.impl.models.DmiRequestBody;
 import org.onap.cps.ncmp.impl.utils.http.RestServiceUrlTemplateBuilder;
 import org.onap.cps.ncmp.impl.utils.http.UrlTemplateParameters;
 import org.onap.cps.spi.exceptions.CpsException;
-import org.onap.cps.spi.exceptions.DataNodeNotFoundException;
+import org.onap.cps.spi.exceptions.DataValidationException;
 import org.onap.cps.utils.JsonObjectMapper;
 import org.springframework.http.ResponseEntity;
 import org.springframework.stereotype.Service;
@@ -285,7 +285,7 @@ public class DmiDataOperations {
         String cmHandleId = cmResourceAddress.getCmHandleReference();
         try {
             return getYangModelCmHandle(cmHandleId);
-        } catch (final DataNodeNotFoundException ignored) {
+        } catch (final DataValidationException ignored) {
             cmHandleId = cmResourceAddress.resolveCmHandleReferenceToId();
             return getYangModelCmHandle(cmHandleId);
         }
index 71054dc..0d1cfb7 100644 (file)
@@ -36,6 +36,7 @@ import org.onap.cps.ncmp.impl.utils.AlternateIdMatcher
 import org.onap.cps.ncmp.impl.utils.http.UrlTemplateParameters
 import org.onap.cps.ncmp.utils.TestUtils
 import org.onap.cps.spi.exceptions.DataNodeNotFoundException
+import org.onap.cps.spi.exceptions.DataValidationException
 import org.onap.cps.utils.JsonObjectMapper
 import org.spockframework.spring.SpringBean
 import org.springframework.beans.factory.annotation.Autowired
@@ -214,17 +215,21 @@ class DmiDataOperationsSpec extends DmiOperationsBaseSpec {
             assert objectUnderTest.resolveYangModelCmHandleFromCmHandleReference(cmResourceAddress) == yangModelCmHandle
     }
 
-    def 'Resolving cm handle references with alternate id.'() {
+    def 'Resolving cm handle references with alternate id #scenario.'() {
         given: 'a resource with a alternate id'
-            def cmResourceAddress = new CmResourceAddress('some store', 'alternate-id', 'some resource')
-        and: 'the alternate id cannot be found in the inventory directly and that results in a data node not found exception'
-            mockInventoryPersistence.getYangModelCmHandle('alternate-id') >>  { throw new DataNodeNotFoundException('','') }
+            def cmResourceAddress = new CmResourceAddress('some store', alternateId, 'some resource')
+        and: 'the alternate id cannot be found in the inventory directly and that results in an exception'
+            mockInventoryPersistence.getYangModelCmHandle(alternateId) >>  { throw errorThrownDuringCmHandleIdSearch }
         and: 'the alternate id can be matched to a cm handle id'
-            alternateIdMatcher.getCmHandleId('alternate-id') >> 'cm-handle-id'
+            alternateIdMatcher.getCmHandleId(alternateId) >> 'cm-handle-id'
         and: 'that cm handle id is available in the inventory'
             mockInventoryPersistence.getYangModelCmHandle('cm-handle-id') >> yangModelCmHandle
         expect: 'resolving that cm handle id returns the cm handle'
             assert objectUnderTest.resolveYangModelCmHandleFromCmHandleReference(cmResourceAddress) == yangModelCmHandle
+        where: 'the following alternate ids are used'
+            scenario                                  | alternateId     | errorThrownDuringCmHandleIdSearch
+            'alternate id with no special characters' | 'alternate-id'  | new DataNodeNotFoundException('','')
+            'alternate id with special characters'    | 'alternate#id'  | new DataValidationException('','')
     }