6c2d8f15b36bedcd7fe99b68939191d3865ea0e4
[cps.git] / cps-ncmp-service / src / test / groovy / org / onap / cps / ncmp / api / inventory / sync / SyncUtilsSpec.groovy
1 /*
2  *  ============LICENSE_START=======================================================
3  *  Copyright (C) 2022 Nordix Foundation
4  *  Modifications Copyright (C) 2022 Bell Canada
5  *  ================================================================================
6  *  Licensed under the Apache License, Version 2.0 (the "License");
7  *  you may not use this file except in compliance with the License.
8  *  You may obtain a copy of the License at
9  *
10  *        http://www.apache.org/licenses/LICENSE-2.0
11  *
12  *  Unless required by applicable law or agreed to in writing, software
13  *  distributed under the License is distributed on an "AS IS" BASIS,
14  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  *  See the License for the specific language governing permissions and
16  *  limitations under the License.
17  *
18  *  SPDX-License-Identifier: Apache-2.0
19  *  ============LICENSE_END=========================================================
20  */
21
22 package org.onap.cps.ncmp.api.inventory.sync
23
24 import com.fasterxml.jackson.databind.JsonNode
25 import com.fasterxml.jackson.databind.ObjectMapper
26 import org.onap.cps.ncmp.api.impl.operations.DmiDataOperations
27 import org.onap.cps.ncmp.api.impl.operations.DmiOperations
28 import org.onap.cps.ncmp.api.inventory.CmHandleState
29 import org.onap.cps.ncmp.api.inventory.CompositeState
30 import org.onap.cps.ncmp.api.inventory.CompositeStateBuilder
31 import org.onap.cps.ncmp.api.inventory.DataStoreSyncState
32 import org.onap.cps.ncmp.api.inventory.InventoryPersistence
33 import org.onap.cps.ncmp.api.inventory.LockReasonCategory
34 import org.onap.cps.spi.FetchDescendantsOption
35 import org.onap.cps.spi.model.DataNode
36 import org.onap.cps.utils.JsonObjectMapper
37 import org.springframework.http.HttpStatus
38 import org.springframework.http.ResponseEntity
39 import spock.lang.Shared
40 import spock.lang.Specification
41
42 import java.time.OffsetDateTime
43 import java.time.format.DateTimeFormatter
44 import java.util.stream.Collectors
45
46 class SyncUtilsSpec extends Specification{
47
48     def mockInventoryPersistence = Mock(InventoryPersistence)
49
50     def mockDmiDataOperations = Mock(DmiDataOperations)
51
52     def jsonObjectMapper = new JsonObjectMapper(new ObjectMapper())
53
54     def objectUnderTest = new SyncUtils(mockInventoryPersistence, mockDmiDataOperations, jsonObjectMapper)
55
56     @Shared
57     def formattedDateAndTime = DateTimeFormatter.ofPattern("yyyy-MM-dd'T'HH:mm:ss.SSSZ").format(OffsetDateTime.now())
58
59     @Shared
60     def dataNode = new DataNode(leaves: ['id': 'cm-handle-123'])
61
62     def 'Get an advised Cm-Handle where ADVISED cm handle #scenario'() {
63         given: 'the inventory persistence service returns a collection of data nodes'
64             mockInventoryPersistence.getCmHandlesByState(CmHandleState.ADVISED) >> dataNodeCollection
65         when: 'get advised cm handles are fetched'
66             def yangModelCmHandles = objectUnderTest.getAdvisedCmHandles()
67         then: 'the returned data node collection is the correct size'
68             yangModelCmHandles.size() == expectedDataNodeSize
69         and: 'yang model collection contains the correct data'
70             yangModelCmHandles.stream().map(yangModel -> yangModel.id).collect(Collectors.toSet()) ==
71                     dataNodeCollection.stream().map(dataNode -> dataNode.leaves.get("id")).collect(Collectors.toSet())
72         where: 'the following scenarios are used'
73             scenario         | dataNodeCollection || expectedCallsToGetYangModelCmHandle | expectedDataNodeSize
74             'exists'         | [dataNode]         || 1                                   | 1
75             'does not exist' | []                 || 0                                   | 0
76     }
77
78     def 'Update Lock Reason, Details and Attempts where lock reason #scenario'() {
79         given: 'A locked state'
80            def compositeState = new CompositeState(lockReason: lockReason)
81         when: 'update cm handle details and attempts is called'
82             objectUnderTest.updateLockReasonDetailsAndAttempts(compositeState, LockReasonCategory.LOCKED_MODULE_SYNC_FAILED, 'new error message')
83         then: 'the composite state lock reason and details are updated'
84             assert compositeState.lockReason.lockReasonCategory == LockReasonCategory.LOCKED_MODULE_SYNC_FAILED
85             assert compositeState.lockReason.details == expectedDetails
86         where:
87             scenario         | lockReason                                                                                   || expectedDetails
88             'does not exist' | null                                                                                         || 'Attempt #1 failed: new error message'
89             'exists'         | CompositeState.LockReason.builder().details("Attempt #2 failed: some error message").build() || 'Attempt #3 failed: new error message'
90     }
91
92     def 'Get all locked Cm-Handle where Lock Reason is LOCKED_MODULE_SYNC_FAILED cm handle #scenario'() {
93         given: 'the cps (persistence service) returns a collection of data nodes'
94             mockInventoryPersistence.getCmHandleDataNodesByCpsPath(
95                     '//lock-reason[@reason="LOCKED_MODULE_SYNC_FAILED"]/ancestor::cm-handles',
96                 FetchDescendantsOption.INCLUDE_ALL_DESCENDANTS) >> [dataNode ]
97         when: 'get locked Misbehaving cm handle is called'
98             def result = objectUnderTest.getModuleSyncFailedCmHandles()
99         then: 'the returned cm handle collection is the correct size'
100             result.size() == 1
101         and: 'the correct cm handle is returned'
102             result[0].id == 'cm-handle-123'
103     }
104
105     def 'Retry Locked Cm-Handle where the last update time is #scenario'() {
106         when: 'retry locked cm handle is invoked'
107             def result = objectUnderTest.isReadyForRetry(new CompositeStateBuilder()
108                 .withLockReason(LockReasonCategory.LOCKED_MODULE_SYNC_FAILED, details)
109                 .withLastUpdatedTime(lastUpdateTime).build())
110         then: 'result returns #expectedResult'
111             result == expectedResult
112         where:
113             scenario                     | lastUpdateTime                     | details                 || expectedResult
114             'the first attempt'          | '1900-01-01T00:00:00.000+0100'     | 'First Attempt'         || true
115             'greater than one minute'    | '1900-01-01T00:00:00.000+0100'     | 'Attempt #1 failed:'    || true
116             'less than eight minutes'    | formattedDateAndTime               | 'Attempt #3 failed:'    || false
117     }
118
119
120     def 'Get a Cm-Handle where Operational Sync state is UnSynchronized and Cm-handle state is READY and #scenario'() {
121         given: 'the inventory persistence service returns a collection of data nodes'
122             mockInventoryPersistence.getCmHandlesByOperationalSyncState(DataStoreSyncState.UNSYNCHRONIZED) >> unSynchronizedDataNodes
123             mockInventoryPersistence.getCmHandlesByIdAndState("cm-handle-123", CmHandleState.READY) >> readyDataNodes
124         when: 'get advised cm handles are fetched'
125             objectUnderTest.getAnUnSynchronizedReadyCmHandle()
126         then: 'the returned data node collection is the correct size'
127             readyDataNodes.size() == expectedDataNodeSize
128         and: 'get yang model cm handles is invoked the correct number of times'
129             expectedCallsToGetYangModelCmHandle * mockInventoryPersistence.getYangModelCmHandle('cm-handle-123')
130         where: 'the following scenarios are used'
131             scenario                             | unSynchronizedDataNodes | readyDataNodes || expectedCallsToGetYangModelCmHandle | expectedDataNodeSize
132             'exists'                             | [dataNode]              | [dataNode]     || 1                                   | 1
133             'unsynchronized exist but not ready' | [dataNode]              | []             || 0                                   | 0
134             'does not exist'                     | []                      | []             || 0                                   | 0
135     }
136
137     def 'Get resource data through DMI Operations #scenario'() {
138         given: 'the inventory persistence service returns a collection of data nodes'
139             def jsonString = '{"stores:bookstore":{"categories":[{"code":"01"}]}}'
140             JsonNode jsonNode = jsonObjectMapper.convertToJsonNode(jsonString);
141             def responseEntity = new ResponseEntity<>(jsonNode, HttpStatus.OK)
142             mockDmiDataOperations.getResourceDataFromDmi('cm-handle-123', DmiOperations.DataStoreEnum.PASSTHROUGH_OPERATIONAL, _) >> responseEntity
143         when: 'get resource data is called'
144             def result = objectUnderTest.getResourceData('cm-handle-123')
145         then: 'the returned data is correct'
146             result == jsonString
147     }
148 }