Merge "Add metrics for NCMP passthrough read operation"
[cps.git] / cps-ncmp-service / src / test / groovy / org / onap / cps / ncmp / api / impl / trustlevel / DeviceHeartbeatConsumerSpec.groovy
1 /*
2  *  ============LICENSE_START=======================================================
3  *  Copyright (C) 2023 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.trustlevel
22
23 import com.fasterxml.jackson.databind.ObjectMapper
24 import io.cloudevents.CloudEvent
25 import io.cloudevents.core.builder.CloudEventBuilder
26 import org.apache.kafka.clients.consumer.ConsumerRecord
27 import org.onap.cps.ncmp.events.trustlevel.DeviceTrustLevel
28 import org.onap.cps.utils.JsonObjectMapper
29 import org.springframework.beans.factory.annotation.Autowired
30 import org.springframework.boot.test.context.SpringBootTest
31 import spock.lang.Specification
32
33 @SpringBootTest(classes = [ObjectMapper, JsonObjectMapper])
34 class DeviceHeartbeatConsumerSpec extends Specification {
35
36     def mockTrustLevelManager = Mock(TrustLevelManager)
37
38     def objectUnderTest = new DeviceHeartbeatConsumer(mockTrustLevelManager)
39     def objectMapper = new ObjectMapper()
40
41     @Autowired
42     JsonObjectMapper jsonObjectMapper
43
44     def static trustLevelString = '{"data":{"trustLevel": "COMPLETE"}}'
45
46     def 'Consume a trustlevel event'() {
47         given: 'an event from dmi with trust level complete'
48             def payload = jsonObjectMapper.convertJsonString(trustLevelString, DeviceTrustLevel.class)
49             def eventFromDmi = createTrustLevelEvent(payload)
50         and: 'transformed to a consumer record with a cloud event id (ce_id)'
51             def consumerRecord = new ConsumerRecord<String, CloudEvent>('test-device-heartbeat', 0, 0, 'sample-message-key', eventFromDmi)
52             consumerRecord.headers().add('ce_id', objectMapper.writeValueAsBytes('cmhandle1'))
53         when: 'the event is consumed'
54             objectUnderTest.heartbeatListener(consumerRecord)
55         then: 'cm handles are stored with correct trust level'
56             1 * mockTrustLevelManager.handleUpdateOfTrustLevels('"cmhandle1"', 'COMPLETE')
57     }
58
59     def createTrustLevelEvent(eventPayload) {
60         return CloudEventBuilder.v1().withData(objectMapper.writeValueAsBytes(eventPayload))
61             .withId("cmhandle1")
62             .withSource(URI.create('DMI'))
63             .withDataSchema(URI.create('test'))
64             .withType('org.onap.cps.ncmp.events.trustlevel.DeviceTrustLevel')
65             .build()
66     }
67
68 }