8e0fb76a5619204a3f930c3dc07e43ca7281d90b
[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 create resource data for pass-through:running datastore from DMI.'() {
71         given: 'expected url'
72         def expectedUrl = 'testDmiBasePath/dmi/v1/ch/testCmhandle/data/ds' +
73                 '/ncmp-datastore:passthrough-running?resourceIdentifier=parent/child'
74         when: 'get resource data is called to DMI'
75         objectUnderTest.createResourceDataPassThroughRunningFromDmi('testDmiBasePath',
76                 'testCmhandle',
77                 'parent/child',
78                 'testJsonbody')
79         then: 'the put operation is executed with the correct URL'
80         1 * mockDmiRestClient.postOperationWithJsonData(expectedUrl, 'testJsonbody', _ as HttpHeaders)
81     }
82
83     def 'Call get resource from dmi.'() {
84         given: 'expected url'
85             def expectedUrl = 'testDmiBasePath/dmi/v1/ch/testCmhandle/modules'
86         when: 'get resource data is called to dmi'
87             objectUnderTest.getResourceFromDmi('testDmiBasePath',
88                     'testCmhandle',
89                     'modules')
90         then: 'the post operation is executed with the correct URL'
91             1 * mockDmiRestClient.postOperation(expectedUrl, _ as HttpHeaders)
92     }
93
94     def 'Call get resource from dmi with json data.'() {
95         given: 'expected url & json data'
96             def requestBody = 'some json'
97             def expectedUrl = 'testDmiBasePath/dmi/v1/ch/testCmHandle/modules'
98             def expectedHttpHeaders = new HttpHeaders()
99         when: 'get resource data is called to dmi'
100             objectUnderTest.getResourceFromDmiWithJsonData('testDmiBasePath',
101                     requestBody,
102                     'testCmHandle',
103                     'modules')
104         then: 'the post operation is executed with the correct URL and json data'
105             1 * mockDmiRestClient.postOperationWithJsonData(expectedUrl, requestBody, expectedHttpHeaders)
106     }
107 }