Kafka consumer can not be turned off
[cps.git] / cps-ncmp-service / src / test / groovy / org / onap / cps / ncmp / api / impl / event / NcmpEventsServiceSpec.groovy
1 /*
2  * ============LICENSE_START=======================================================
3  * Copyright (C) 2022 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
21 package org.onap.cps.ncmp.api.impl.event
22
23 import org.onap.cps.ncmp.api.impl.utils.YangDataConverter
24 import org.onap.cps.ncmp.api.impl.yangmodels.YangModelCmHandle
25 import org.onap.cps.ncmp.api.inventory.InventoryPersistence
26 import org.onap.ncmp.cmhandle.lcm.event.NcmpEvent
27 import spock.lang.Specification
28
29 class NcmpEventsServiceSpec extends Specification {
30
31     def mockInventoryPersistence = Mock(InventoryPersistence)
32     def mockNcmpEventsPublisher = Mock(NcmpEventsPublisher)
33     def mockNcmpEventsCreator = Mock(NcmpEventsCreator)
34
35     def objectUnderTest = new NcmpEventsService(mockInventoryPersistence, mockNcmpEventsPublisher, mockNcmpEventsCreator)
36
37     def 'Create and Publish ncmp event where events are #scenario'() {
38         given: 'a cm handle id and operation and responses are mocked'
39             mockResponses('test-cm-handle-id', 'test-topic')
40         and: 'notifications enabled is #notificationsEnabled'
41             objectUnderTest.notificationsEnabled = notificationsEnabled
42         when: 'service is called to publish ncmp event'
43             objectUnderTest.publishNcmpEvent('test-cm-handle-id')
44         then: 'creator is called #expectedTimesMethodCalled times'
45             expectedTimesMethodCalled * mockNcmpEventsCreator.populateNcmpEvent('test-cm-handle-id', _)
46         and: 'publisher is called #expectedTimesMethodCalled times'
47             expectedTimesMethodCalled * mockNcmpEventsPublisher.publishEvent(*_)
48         where: 'the following values are used'
49             scenario   | notificationsEnabled|| expectedTimesMethodCalled
50             'enabled'  | true                || 1
51             'disabled' | false               || 0
52     }
53
54     def mockResponses(cmHandleId, topicName) {
55
56         def yangModelCmHandle = new YangModelCmHandle(id: cmHandleId, publicProperties: [new YangModelCmHandle.Property('publicProperty1', 'value1')], dmiProperties: [])
57         def ncmpEvent = new NcmpEvent(eventId: UUID.randomUUID().toString(), eventCorrelationId: cmHandleId)
58         def ncmpServiceCmhandle = YangDataConverter.convertYangModelCmHandleToNcmpServiceCmHandle(yangModelCmHandle)
59
60         mockInventoryPersistence.getYangModelCmHandle(cmHandleId) >> yangModelCmHandle
61         mockNcmpEventsCreator.populateNcmpEvent(cmHandleId, ncmpServiceCmhandle) >> ncmpEvent
62         mockNcmpEventsPublisher.publishEvent(topicName, cmHandleId, ncmpEvent) >> {}
63     }
64
65 }