0ebf9a6aede84d2a575da7e44deab0df7e58b7ac
[cps.git] /
1 /*
2  * ============LICENSE_START=======================================================
3  * Copyright (c) 2024 Nordix Foundation.
4  *  ================================================================================
5  *  Licensed under the Apache License, Version 2.0 (the "License");
6  *  you may not use this file except in compliance with the License.
7  *  You may obtain a copy of the License at
8  *
9  *        http://www.apache.org/licenses/LICENSE-2.0
10  *
11  *  Unless required by applicable law or agreed to in writing, software
12  *  distributed under the License is distributed on an 'AS IS' BASIS,
13  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  *  See the License for the specific language governing permissions and
15  *  limitations under the License.
16  *
17  *  SPDX-License-Identifier: Apache-2.0
18  *  ============LICENSE_END=========================================================
19  */
20 package org.onap.cps.ncmp.impl.cmnotificationsubscription.ncmp
21
22
23 import org.onap.cps.ncmp.impl.cmnotificationsubscription.models.DmiCmSubscriptionPredicate
24 import org.onap.cps.ncmp.impl.cmnotificationsubscription.utils.CmSubscriptionPersistenceService
25 import spock.lang.Specification
26
27 import static org.onap.cps.ncmp.api.data.models.DatastoreType.PASSTHROUGH_OPERATIONAL
28
29 class CmSubscriptionComparatorSpec extends Specification {
30
31     def mockCmSubscriptionPersistenceService = Mock(CmSubscriptionPersistenceService)
32     def objectUnderTest = new CmSubscriptionComparator(mockCmSubscriptionPersistenceService)
33
34     def 'Find Delta of given list of predicates'() {
35         given: 'A list of predicates'
36             def predicates = [new DmiCmSubscriptionPredicate(['ch-1', 'ch-2'].toSet(), PASSTHROUGH_OPERATIONAL, ['a/1/', 'b/2'].toSet())]
37         and: '3 positive responses and 1 negative.'
38             mockCmSubscriptionPersistenceService.isOngoingCmSubscription(PASSTHROUGH_OPERATIONAL, 'ch-1', 'a/1/') >>> true
39             mockCmSubscriptionPersistenceService.isOngoingCmSubscription(PASSTHROUGH_OPERATIONAL, 'ch-1', 'b/2') >>> true
40             mockCmSubscriptionPersistenceService.isOngoingCmSubscription(PASSTHROUGH_OPERATIONAL, 'ch-2', 'a/1/') >>> true
41             mockCmSubscriptionPersistenceService.isOngoingCmSubscription(PASSTHROUGH_OPERATIONAL, 'ch-2', 'b/2') >>> false
42         when: 'getDelta is called'
43             def result = objectUnderTest.getNewDmiSubscriptionPredicates(predicates)
44         then: 'verify correct delta is returned'
45             assert result.size() == 1
46             assert result[0].targetCmHandleIds[0] == 'ch-2'
47             assert result[0].xpaths[0] == 'b/2'
48
49     }
50
51     def 'Find Delta of given list of predicates when it is an ongoing Cm Subscription'() {
52         given: 'A list of predicates'
53             def predicates = [new DmiCmSubscriptionPredicate(['ch-1'].toSet(), PASSTHROUGH_OPERATIONAL, ['a/1/'].toSet())]
54         and: 'its already present'
55             mockCmSubscriptionPersistenceService.isOngoingCmSubscription(PASSTHROUGH_OPERATIONAL, 'ch-1', 'a/1/') >>> true
56         when: 'getDelta is called'
57             def result = objectUnderTest.getNewDmiSubscriptionPredicates(predicates)
58         then: 'verify correct delta is returned'
59             assert result.size() == 0
60     }
61
62 }