9405b663257983c2bd95b056d1bee44c037fb1d3
[cps.git] / cps-ncmp-service / src / test / groovy / org / onap / cps / ncmp / api / impl / operation / DmiOperationsSpec.groovy
1 /*
2  *  ============LICENSE_START=======================================================
3  *  Copyright (C) 2021 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.operation
22
23 import org.onap.cps.ncmp.api.impl.client.DmiRestClient
24 import org.onap.cps.ncmp.api.impl.config.NcmpConfiguration
25 import org.spockframework.spring.SpringBean
26 import org.springframework.beans.factory.annotation.Autowired
27 import org.springframework.boot.test.context.SpringBootTest
28 import org.springframework.http.HttpHeaders
29 import org.springframework.test.context.ContextConfiguration
30 import spock.lang.Specification
31
32 @SpringBootTest
33 @ContextConfiguration(classes = [NcmpConfiguration.DmiProperties, DmiOperations])
34 class DmiOperationsSpec extends Specification {
35
36     @SpringBean
37     DmiRestClient mockDmiRestClient = Mock()
38
39     @Autowired
40     DmiOperations objectUnderTest = new DmiOperations(mockDmiRestClient)
41
42     def 'call get resource data for pass-through:operational datastore from DMI.'() {
43         given: 'expected url'
44             def expectedUrl = 'testDmiBasePath/dmi/v1/ch/testCmhandle/data/ds' +
45                     '/ncmp-datastore:passthrough-operational?resourceIdentifier=parent/child&options=(a=1,b=2)'
46         when: 'get resource data is called to DMI'
47             objectUnderTest.getResourceDataOperationalFromDmi('testDmiBasePath',
48                     'testCmhandle',
49                     'parent/child',
50                     '(a=1,b=2)',
51                     'testAcceptJson',
52                     'testJsonbody')
53         then: 'the put operation is executed with the correct URL'
54             1 * mockDmiRestClient.putOperationWithJsonData(expectedUrl, 'testJsonbody', _ as HttpHeaders)
55     }
56     def 'call get resource data for pass-through:running datastore from DMI.'() {
57         given: 'expected url'
58             def expectedUrl = 'testDmiBasePath/dmi/v1/ch/testCmhandle/data/ds' +
59                     '/ncmp-datastore:passthrough-running?resourceIdentifier=parent/child&options=(a=1,b=2)'
60         when: 'get resource data is called to DMI'
61             objectUnderTest.getResourceDataPassThroughRunningFromDmi('testDmiBasePath',
62                     'testCmhandle',
63                     'parent/child',
64                     '(a=1,b=2)',
65                     'testAcceptJson',
66                     'testJsonbody')
67         then: 'the put operation is executed with the correct URL'
68             1 * mockDmiRestClient.putOperationWithJsonData(expectedUrl, 'testJsonbody', _ as HttpHeaders)
69     }
70     def 'call get resource data for pass-through:operational datastore from DMI when options is null.'() {
71         given: 'expected url'
72         def expectedUrl = 'testDmiBasePath/dmi/v1/ch/testCmhandle/data/ds' +
73                 '/ncmp-datastore:passthrough-operational?resourceIdentifier=parent/child'
74         when: 'get resource data is called to DMI'
75         objectUnderTest.getResourceDataOperationalFromDmi('testDmiBasePath',
76                 'testCmhandle',
77                 'parent/child',
78                 null,
79                 'testAcceptJson',
80                 'testJsonbody')
81         then: 'the put operation is executed with the correct URL'
82         1 * mockDmiRestClient.putOperationWithJsonData(expectedUrl, 'testJsonbody', _ as HttpHeaders)
83     }
84     def 'call create resource data for pass-through:running datastore from DMI.'() {
85         given: 'expected url'
86             def expectedUrl = 'testDmiBasePath/dmi/v1/ch/testCmhandle/data/ds' +
87                     '/ncmp-datastore:passthrough-running?resourceIdentifier=parent/child'
88         when: 'get resource data is called to DMI'
89             objectUnderTest.createResourceDataPassThroughRunningFromDmi('testDmiBasePath',
90                     'testCmhandle',
91                     'parent/child',
92                     'testJsonbody')
93         then: 'the put operation is executed with the correct URL'
94             1 * mockDmiRestClient.postOperationWithJsonData(expectedUrl, 'testJsonbody', _ as HttpHeaders)
95     }
96
97     def 'Call get resource from dmi.'() {
98         given: 'expected url'
99             def expectedUrl = 'testDmiBasePath/dmi/v1/ch/testCmhandle/modules'
100         when: 'get resource data is called to dmi'
101             objectUnderTest.getResourceFromDmi('testDmiBasePath',
102                     'testCmhandle',
103                     'modules')
104         then: 'the post operation is executed with the correct URL'
105             1 * mockDmiRestClient.postOperation(expectedUrl, _ as HttpHeaders)
106     }
107
108     def 'Call get resource from dmi with json data.'() {
109         given: 'expected url & json data'
110             def requestBody = 'some json'
111             def expectedUrl = 'testDmiBasePath/dmi/v1/ch/testCmHandle/modules'
112             def expectedHttpHeaders = new HttpHeaders()
113         when: 'get resource data is called to dmi'
114             objectUnderTest.getResourceFromDmiWithJsonData('testDmiBasePath',
115                     requestBody,
116                     'testCmHandle',
117                     'modules')
118         then: 'the post operation is executed with the correct URL and json data'
119             1 * mockDmiRestClient.postOperationWithJsonData(expectedUrl, requestBody, expectedHttpHeaders)
120     }
121 }