e6d383128dda8b683bf342e0b0e6c0ef410b2f4c
[cps.git] / cps-ncmp-service / src / test / groovy / org / onap / cps / ncmp / api / impl / events / mapper / CloudEventMapperSpec.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.events.mapper
22
23 import com.fasterxml.jackson.databind.ObjectMapper
24 import io.cloudevents.core.builder.CloudEventBuilder
25 import org.onap.cps.ncmp.events.cmsubscription1_0_0.client_to_ncmp.CmSubscriptionNcmpInEvent
26 import org.onap.cps.utils.JsonObjectMapper
27 import org.springframework.beans.factory.annotation.Autowired
28 import org.springframework.boot.test.context.SpringBootTest
29 import spock.lang.Specification
30
31 @SpringBootTest(classes = [ObjectMapper, JsonObjectMapper])
32 class CloudEventMapperSpec extends Specification {
33
34     @Autowired
35     JsonObjectMapper jsonObjectMapper
36
37     def 'Cloud event to target event type'() {
38         given: 'a cloud event with valid payload'
39             def cloudEvent = testCloudEvent(new CmSubscriptionNcmpInEvent())
40         when: 'the cloud event mapped to target event'
41             def result = CloudEventMapper.toTargetEvent((cloudEvent), CmSubscriptionNcmpInEvent.class)
42         then: 'the cloud event is mapped'
43             assert result instanceof CmSubscriptionNcmpInEvent
44     }
45
46     def 'Cloud event to target event type when it is #scenario'() {
47         given: 'a cloud event with invalid payload'
48             def cloudEvent = testCloudEvent(payload)
49         when: 'the cloud event mapped to target event'
50             def result = CloudEventMapper.toTargetEvent(cloudEvent, CmSubscriptionNcmpInEvent.class)
51         then: 'result is null'
52             assert result == null
53         where: 'below are the scenarios'
54             scenario               | payload
55             'invalid payload type' | ArrayList.class
56             'without payload'      | null
57     }
58
59     def testCloudEvent(payload) {
60         return CloudEventBuilder.v1().withData(jsonObjectMapper.asJsonBytes(payload))
61             .withId("cmhandle1")
62             .withSource(URI.create('test-source'))
63             .withDataSchema(URI.create('test'))
64             .withType('org.onap.cm.events.cm-subscription')
65             .build()
66     }
67 }