Fix the algorithm for device trust level
[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.boot.test.context.SpringBootTest
30 import spock.lang.Specification
31
32 @SpringBootTest(classes = [ObjectMapper, JsonObjectMapper])
33 class DeviceHeartbeatConsumerSpec extends Specification {
34
35     def mockTrustLevelManager = Mock(TrustLevelManager)
36
37     def objectUnderTest = new DeviceHeartbeatConsumer(mockTrustLevelManager)
38     def objectMapper = new ObjectMapper()
39     def jsonObjectMapper = new JsonObjectMapper(objectMapper)
40
41     def 'Consume a trust level event'() {
42         given: 'an event from dmi with trust level complete'
43             def payload = jsonObjectMapper.convertJsonString('{"data":{"trustLevel": "COMPLETE"}}', DeviceTrustLevel.class)
44             def eventFromDmi = createTrustLevelEvent(payload)
45         and: 'transformed to a consumer record with a cloud event id (ce_id)'
46             def consumerRecord = new ConsumerRecord<String, CloudEvent>('test-device-heartbeat', 0, 0, 'sample-message-key', eventFromDmi)
47             consumerRecord.headers().add('ce_id', objectMapper.writeValueAsBytes('ch-1'))
48         when: 'the event is consumed'
49             objectUnderTest.heartbeatListener(consumerRecord)
50         then: 'cm handles are stored with correct trust level'
51             1 * mockTrustLevelManager.handleUpdateOfDeviceTrustLevel('"ch-1"', TrustLevel.COMPLETE)
52     }
53
54     def createTrustLevelEvent(eventPayload) {
55         return CloudEventBuilder.v1().withData(objectMapper.writeValueAsBytes(eventPayload))
56             .withId('ch-1')
57             .withSource(URI.create('DMI'))
58             .withDataSchema(URI.create('test'))
59             .withType('org.onap.cps.ncmp.events.trustlevel.DeviceTrustLevel')
60             .build()
61     }
62
63 }