Refactoring tests and adding tests for creating a node.
[cps.git] / cps-rest / src / test / groovy / org / onap / cps / rest / controller / DataRestControllerSpec.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  *  Unless required by applicable law or agreed to in writing, software
11  *  distributed under the License is distributed on an "AS IS" BASIS,
12  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  *  See the License for the specific language governing permissions and
14  *  limitations under the License.
15  *
16  *  SPDX-License-Identifier: Apache-2.0
17  *  ============LICENSE_END=========================================================
18  */
19
20 package org.onap.cps.rest.controller
21
22 import org.modelmapper.ModelMapper
23 import org.onap.cps.api.CpsAdminService
24 import org.onap.cps.api.CpsDataService
25 import org.onap.cps.api.CpsModuleService
26 import org.spockframework.spring.SpringBean
27 import org.springframework.beans.factory.annotation.Autowired
28 import org.springframework.beans.factory.annotation.Value
29 import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest
30 import org.springframework.http.HttpStatus
31 import org.springframework.http.MediaType
32 import org.springframework.test.web.servlet.MockMvc
33 import spock.lang.Specification
34
35 import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.post
36
37 @WebMvcTest
38 class DataRestControllerSpec extends Specification {
39
40     @SpringBean
41     CpsDataService mockCpsDataService = Mock()
42
43     @SpringBean
44     CpsModuleService mockCpsModuleService = Mock()
45
46     @SpringBean
47     CpsAdminService mockCpsAdminService = Mock()
48
49     @SpringBean
50     ModelMapper modelMapper = Mock()
51
52     @Autowired
53     MockMvc mvc
54
55     @Value('${rest.api.base-path}')
56     def basePath
57
58     def dataspaceName = 'my_dataspace'
59     def anchorName = 'my_anchor'
60
61     def 'Create a node.'() {
62         given:'an endpoint'
63             def nodeEndpoint ="$basePath/v1/dataspaces/$dataspaceName/anchors/$anchorName/nodes"
64             def json = 'some json (this is not validated)'
65         when: 'post is invoked'
66             def response = mvc.perform(post(nodeEndpoint).contentType(MediaType.APPLICATION_JSON).content(json))
67                     .andReturn().response
68         then: 'the java API is called with the correct parameters'
69             1 * mockCpsDataService.saveData(dataspaceName, anchorName, json)
70             response.status == HttpStatus.CREATED.value()
71     }
72 }