NCMP: Update existing Batch endpoint (Moving url param into rest body)
[cps.git] / cps-ncmp-service / src / test / groovy / org / onap / cps / ncmp / api / impl / client / DmiRestClientSpec.groovy
1 /*
2  *  ============LICENSE_START=======================================================
3  *  Copyright (C) 2021-2023 Nordix Foundation
4  *  Modifications Copyright (C) 2022 Bell Canada
5  *  ================================================================================
6  *  Licensed under the Apache License, Version 2.0 (the "License");
7  *  you may not use this file except in compliance with the License.
8  *  You may obtain a copy of the License at
9  *
10  *        http://www.apache.org/licenses/LICENSE-2.0
11  *
12  *  Unless required by applicable law or agreed to in writing, software
13  *  distributed under the License is distributed on an "AS IS" BASIS,
14  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  *  See the License for the specific language governing permissions and
16  *  limitations under the License.
17  *
18  *  SPDX-License-Identifier: Apache-2.0
19  *  ============LICENSE_END=========================================================
20  */
21
22 package org.onap.cps.ncmp.api.impl.client
23
24 import org.onap.cps.ncmp.api.impl.config.NcmpConfiguration
25 import org.onap.cps.ncmp.api.impl.exception.HttpClientRequestException
26 import org.spockframework.spring.SpringBean
27 import org.springframework.beans.factory.annotation.Autowired
28 import org.springframework.boot.test.context.SpringBootTest
29 import org.springframework.http.HttpEntity
30 import org.springframework.http.HttpStatus
31 import org.springframework.http.ResponseEntity
32 import org.springframework.test.context.ContextConfiguration
33 import org.springframework.web.client.HttpServerErrorException
34 import org.springframework.web.client.RestTemplate
35 import spock.lang.Specification
36
37 import static org.onap.cps.ncmp.api.impl.operations.OperationType.READ
38 import static org.onap.cps.ncmp.api.impl.operations.OperationType.PATCH
39 import static org.onap.cps.ncmp.api.impl.operations.OperationType.CREATE
40
41 @SpringBootTest
42 @ContextConfiguration(classes = [NcmpConfiguration.DmiProperties, DmiRestClient])
43 class DmiRestClientSpec extends Specification {
44
45     @SpringBean
46     RestTemplate mockRestTemplate = Mock(RestTemplate)
47
48     @Autowired
49     DmiRestClient objectUnderTest
50     def resourceUrl = 'some url'
51
52     def mockResponseEntity = Mock(ResponseEntity)
53
54     def 'DMI POST operation with JSON.'() {
55         given: 'the rest template returns a valid response entity'
56             mockRestTemplate.postForEntity(resourceUrl, _ as HttpEntity, Object.class) >> mockResponseEntity
57         when: 'POST operation is invoked'
58             def result = objectUnderTest.postOperationWithJsonData(resourceUrl, 'json-data', READ)
59         then: 'the output of the method is equal to the output from the test template'
60             result == mockResponseEntity
61     }
62
63     def 'Failing DMI POST operation.'() {
64         given: 'the rest template returns a valid response entity'
65             def serverResponse = 'server response'.getBytes()
66             def httpServerErrorException = new HttpServerErrorException(HttpStatus.FORBIDDEN, 'status text', serverResponse, null)
67             mockRestTemplate.postForEntity(*_) >> { throw httpServerErrorException }
68         when: 'POST operation is invoked'
69             def result = objectUnderTest.postOperationWithJsonData('some url', 'some json', operation)
70         then: 'a Http Client Exception is thrown'
71             def thrown = thrown(HttpClientRequestException)
72         and: 'the exception has the relevant details from the error response'
73             assert thrown.httpStatus == 403
74             assert thrown.message == "Unable to ${operation} resource data."
75             assert thrown.details == 'server response'
76         where: 'the following operation is executed'
77             operation << [CREATE, READ, PATCH]
78     }
79
80 }