6db304acd19d43e565933d2856ef98e8bdaa94c0
[cps.git] /
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.impl.inventory.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.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
32
33 @SpringBootTest(classes = [ObjectMapper, JsonObjectMapper])
34 class DeviceTrustLevelMessageConsumerSpec extends Specification {
35
36     def mockTrustLevelManager = Mock(TrustLevelManager)
37
38     def objectUnderTest = new DeviceTrustLevelMessageConsumer(mockTrustLevelManager)
39     def objectMapper = new ObjectMapper()
40     def jsonObjectMapper = new JsonObjectMapper(objectMapper)
41
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)
53     }
54
55     def createTrustLevelEvent(eventPayload) {
56         return CloudEventBuilder.v1().withData(objectMapper.writeValueAsBytes(eventPayload))
57             .withId('ch-1')
58             .withSource(URI.create('DMI'))
59             .withDataSchema(URI.create('test'))
60             .withType('org.onap.cps.ncmp.events.trustlevel.DeviceTrustLevel')
61             .build()
62     }
63
64 }