From 5a8718b84dbd3c6fa78aa644a4695274a0a1ab5d Mon Sep 17 00:00:00 2001 From: Ruslan Kashapov Date: Thu, 10 Dec 2020 10:49:59 +0200 Subject: Create dataspace Issue-ID: CPS-134 Change-Id: Ie7f00f9c322a12a6c2a71c1407f6970a7dd24d2d Signed-off-by: Ruslan Kashapov --- .../cps/rest/controller/AdminRestController.java | 6 +++++ .../rest/controller/AdminRestControllerSpec.groovy | 28 ++++++++++++++++++++++ 2 files changed, 34 insertions(+) (limited to 'cps-rest/src') diff --git a/cps-rest/src/main/java/org/onap/cps/rest/controller/AdminRestController.java b/cps-rest/src/main/java/org/onap/cps/rest/controller/AdminRestController.java index 6dc2cee72..9549580ba 100644 --- a/cps-rest/src/main/java/org/onap/cps/rest/controller/AdminRestController.java +++ b/cps-rest/src/main/java/org/onap/cps/rest/controller/AdminRestController.java @@ -46,6 +46,12 @@ public class AdminRestController implements CpsAdminApi { @Autowired private ModelMapper modelMapper; + @Override + public ResponseEntity createDataspace(final String dataspaceName) { + cpsAdminService.createDataspace(dataspaceName); + return new ResponseEntity<>(dataspaceName, HttpStatus.CREATED); + } + @Override public ResponseEntity createSchemaSet(final String schemaSetName, final MultipartFile multipartFile, final String dataspaceName) { diff --git a/cps-rest/src/test/groovy/org/onap/cps/rest/controller/AdminRestControllerSpec.groovy b/cps-rest/src/test/groovy/org/onap/cps/rest/controller/AdminRestControllerSpec.groovy index ed87e3c95..9919649cb 100644 --- a/cps-rest/src/test/groovy/org/onap/cps/rest/controller/AdminRestControllerSpec.groovy +++ b/cps-rest/src/test/groovy/org/onap/cps/rest/controller/AdminRestControllerSpec.groovy @@ -24,6 +24,7 @@ import org.modelmapper.ModelMapper import org.onap.cps.api.CpsAdminService import org.onap.cps.api.CpsModuleService import org.onap.cps.spi.model.Anchor +import org.onap.cps.spi.exceptions.DataspaceAlreadyDefinedException import org.spockframework.spring.SpringBean import org.springframework.beans.factory.annotation.Autowired import org.springframework.boot.test.autoconfigure.web.servlet.AutoConfigureMockMvc @@ -60,6 +61,25 @@ class AdminRestControllerSpec extends Specification { def anchor = new Anchor(name: 'my_anchor') def anchorList = [anchor] + def 'Create new dataspace'() { + when: + def response = performCreateDataspaceRequest("new-dataspace") + then: 'Service method is invoked with expected parameters' + 1 * mockCpsAdminService.createDataspace("new-dataspace") + and: + response.status == HttpStatus.CREATED.value() + } + + def 'Create dataspace over existing with same name'() { + given: + def thrownException = new DataspaceAlreadyDefinedException("", new RuntimeException()) + mockCpsAdminService.createDataspace("existing-dataspace") >> { throw thrownException } + when: + def response = performCreateDataspaceRequest("existing-dataspace") + then: + response.status == HttpStatus.BAD_REQUEST.value() + } + def 'Create schema set from yang file'() { def yangResourceMapCapture given: @@ -83,6 +103,14 @@ class AdminRestControllerSpec extends Specification { response.status == HttpStatus.BAD_REQUEST.value() } + def performCreateDataspaceRequest(String dataspaceName) { + return mvc.perform( + MockMvcRequestBuilders + .post('/v1/dataspaces') + .param('dataspace-name', dataspaceName) + ).andReturn().response + } + def createMultipartFile(filename, content) { return new MockMultipartFile("file", filename, "text/plain", content.getBytes()) } -- cgit 1.2.3-korg