f18a8e4c97d8b783a727cf5ce70f20b73bc83358
[cps.git] / integration-test / src / test / groovy / org / onap / cps / integration / base / FunctionalSpecBase.groovy
1 /*
2  *  ============LICENSE_START=======================================================
3  *  Copyright (C) 2023 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.integration.base
22
23 class FunctionalSpecBase extends CpsIntegrationSpecBase {
24
25     def static FUNCTIONAL_TEST_DATASPACE_1 = 'functionalTestDataspace1'
26     def static FUNCTIONAL_TEST_DATASPACE_2 = 'functionalTestDataspace2'
27     def static NUMBER_OF_ANCHORS_PER_DATASPACE_WITH_BOOKSTORE_DATA = 2
28     def static BOOKSTORE_ANCHOR_1 = 'bookstoreAnchor1'
29     def static BOOKSTORE_ANCHOR_2 = 'bookstoreAnchor2'
30     def static BOOKSTORE_ANCHOR_FOR_PATCH = 'bookstoreAnchor2'
31
32     def static initialized = false
33
34     def setup() {
35         if (!initialized) {
36             setupBookstoreInfraStructure()
37             addBookstoreData()
38             initialized = true
39         }
40     }
41
42     def setupBookstoreInfraStructure() {
43         cpsAdminService.createDataspace(FUNCTIONAL_TEST_DATASPACE_1)
44         cpsAdminService.createDataspace(FUNCTIONAL_TEST_DATASPACE_2)
45         def bookstoreYangModelAsString = readResourceDataFile('bookstore/bookstore.yang')
46         cpsModuleService.createSchemaSet(FUNCTIONAL_TEST_DATASPACE_1, BOOKSTORE_SCHEMA_SET, [bookstore: bookstoreYangModelAsString])
47         cpsModuleService.createSchemaSet(FUNCTIONAL_TEST_DATASPACE_2, BOOKSTORE_SCHEMA_SET, [bookstore: bookstoreYangModelAsString])
48     }
49
50     def addBookstoreData() {
51         def bookstoreJsonData = readResourceDataFile('bookstore/bookstoreData.json')
52         addAnchorsWithData(NUMBER_OF_ANCHORS_PER_DATASPACE_WITH_BOOKSTORE_DATA, FUNCTIONAL_TEST_DATASPACE_1, BOOKSTORE_SCHEMA_SET, 'bookstoreAnchor', bookstoreJsonData)
53         addAnchorsWithData(NUMBER_OF_ANCHORS_PER_DATASPACE_WITH_BOOKSTORE_DATA, FUNCTIONAL_TEST_DATASPACE_2, BOOKSTORE_SCHEMA_SET, 'bookstoreAnchor', bookstoreJsonData)
54     }
55
56 }