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
9 * http://www.apache.org/licenses/LICENSE-2.0
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.
17 * SPDX-License-Identifier: Apache-2.0
18 * ============LICENSE_END=========================================================
21 package org.onap.cps.ncmp.impl.inventory.trustlevel
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.api.inventory.models.TrustLevel
28 import org.onap.cps.ncmp.events.trustlevel.DeviceTrustLevel
29 import org.onap.cps.utils.JsonObjectMapper
30 import org.springframework.boot.test.context.SpringBootTest
31 import spock.lang.Specification
33 @SpringBootTest(classes = [ObjectMapper, JsonObjectMapper])
34 class DeviceTrustLevelMessageConsumerSpec extends Specification {
36 def mockTrustLevelManager = Mock(TrustLevelManager)
38 def objectUnderTest = new DeviceTrustLevelMessageConsumer(mockTrustLevelManager)
39 def objectMapper = new ObjectMapper()
40 def jsonObjectMapper = new JsonObjectMapper(objectMapper)
42 def 'Consume a trust level event'() {
43 given: 'an event from dmi with trust level complete'
44 def payload = jsonObjectMapper.convertJsonString('{"data":{"trustLevel": "COMPLETE"}}', DeviceTrustLevel.class)
45 def eventFromDmi = createTrustLevelEvent(payload)
46 and: 'transformed to a consumer record with a cloud event id (ce_id)'
47 def consumerRecord = new ConsumerRecord<String, CloudEvent>('test-device-heartbeat', 0, 0, 'sample-message-key', eventFromDmi)
48 consumerRecord.headers().add('ce_id', objectMapper.writeValueAsBytes('ch-1'))
49 when: 'the event is consumed'
50 objectUnderTest.deviceTrustLevelListener(consumerRecord)
51 then: 'cm handles are stored with correct trust level'
52 1 * mockTrustLevelManager.handleUpdateOfDeviceTrustLevel('"ch-1"', TrustLevel.COMPLETE)
55 def createTrustLevelEvent(eventPayload) {
56 return CloudEventBuilder.v1().withData(objectMapper.writeValueAsBytes(eventPayload))
58 .withSource(URI.create('DMI'))
59 .withDataSchema(URI.create('test'))
60 .withType('org.onap.cps.ncmp.events.trustlevel.DeviceTrustLevel')