/* * ============LICENSE_START======================================================= * Copyright (C) 2023 Nordix Foundation * ================================================================================ * Licensed under the Apache License, Version 2.0 (the 'License'); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an 'AS IS' BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * * SPDX-License-Identifier: Apache-2.0 * ============LICENSE_END========================================================= */ package org.onap.cps.integration.functional import org.onap.cps.api.CpsDataspaceService import org.onap.cps.integration.base.CpsIntegrationSpecBase import org.onap.cps.spi.exceptions.AlreadyDefinedException import org.onap.cps.spi.exceptions.DataspaceInUseException import org.onap.cps.spi.exceptions.DataspaceNotFoundException class CpsDataspaceServiceIntegrationSpec extends CpsIntegrationSpecBase { CpsDataspaceService objectUnderTest def setup() { objectUnderTest = cpsDataspaceService } def 'Dataspace CRUD operations.'() { when: 'a dataspace is created' objectUnderTest.createDataspace('newDataspace') then: 'the dataspace can be read' assert objectUnderTest.getDataspace('newDataspace').name == 'newDataspace' and: 'it can be deleted' objectUnderTest.deleteDataspace('newDataspace') then: 'the dataspace no longer exists i.e. an exception is thrown if an attempt is made to retrieve it' def thrown = null try { objectUnderTest.getDataspace('newDataspace') } catch(Exception exception) { thrown = exception } assert thrown instanceof DataspaceNotFoundException } def 'Attempt to delete a non-existing dataspace'() { when: 'attempt to delete a non-existing dataspace' objectUnderTest.deleteDataspace('non-existing-name') then: 'a not found exception is thrown with the relevant dataspace name' def thrownException = thrown(DataspaceNotFoundException) assert thrownException.details.contains('non-existing-name does not exist') } def 'Attempt Delete dataspace with a schema set and anchor'() { setup: 'a dataspace with a schema set and anchor' objectUnderTest.createDataspace('targetDataspace') cpsModuleService.createSchemaSet('targetDataspace','someSchemaSet',[:]) cpsAnchorService.createAnchor('targetDataspace', 'someSchemaSet', 'some_anchor') when: 'attempt to delete dataspace' objectUnderTest.deleteDataspace('targetDataspace') then: 'an in-use exception is thrown mentioning anchors' def thrownException = thrown(DataspaceInUseException) assert thrownException.details.contains('contains 1 anchor(s)') cleanup: cpsModuleService.deleteSchemaSetsWithCascade('targetDataspace',['someSchemaSet']) objectUnderTest.deleteDataspace('targetDataspace') } def 'Attempt to delete dataspace with just a schema set'() { setup: 'a dataspace with a schema set' objectUnderTest.createDataspace('targetDataspace') cpsModuleService.createSchemaSet('targetDataspace','someSchemaSet',[:]) when: 'attempt to delete dataspace' objectUnderTest.deleteDataspace('targetDataspace') then: 'an in-use exception is thrown mentioning schemasets' def thrownException = thrown(DataspaceInUseException) assert thrownException.details.contains('contains 1 schemaset(s)') cleanup: cpsModuleService.deleteSchemaSetsWithCascade('targetDataspace',['someSchemaSet']) objectUnderTest.deleteDataspace('targetDataspace') } def 'Retrieve all dataspaces (depends on total test suite).'() { given: 'two addtional dataspaces are created' objectUnderTest.createDataspace('dataspace1') objectUnderTest.createDataspace('dataspace2') when: 'all datespaces are retreived' def result = objectUnderTest.getAllDataspaces() then: 'there are at least 3 dataspaces (2 new ones plus the general test dataspace)' result.size() >= 3 assert result.name.containsAll([GENERAL_TEST_DATASPACE, 'dataspace1', 'dataspace2']) } def 'Duplicate dataspaces.'() { when: 'attempting to create a dataspace with the same name as an existing one' objectUnderTest.createDataspace(GENERAL_TEST_DATASPACE) then: 'an exception is thrown indicating the dataspace already exists' thrown(AlreadyDefinedException) } }