Merge "Add CpsPathQueries.sql and create data inspired by the bookstore model"
[cps.git] / cps-ri / src / test / groovy / org / onap / cps / spi / impl / CpsPersistenceSpecBase.groovy
1 /*
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2021 Nordix Foundation
4  *  Modifications Copyright (C) 2021 Pantheon.tech
5  *  Modifications Copyright (C) 2021 Bell Canada.
6  *  ================================================================================
7  *  Licensed under the Apache License, Version 2.0 (the 'License');
8  *  you may not use this file except in compliance with the License.
9  *  You may obtain a copy of the License at
10  *
11  *        http://www.apache.org/licenses/LICENSE-2.0
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.spi.impl
23
24 import org.onap.cps.DatabaseTestContainer
25 import org.onap.cps.spi.repository.AnchorRepository
26 import org.onap.cps.spi.repository.DataspaceRepository
27 import org.onap.cps.spi.repository.FragmentRepository
28 import org.onap.cps.spi.repository.YangResourceRepository
29 import org.springframework.beans.factory.annotation.Autowired
30 import org.springframework.boot.test.context.SpringBootTest
31 import org.testcontainers.spock.Testcontainers
32 import spock.lang.Shared
33 import spock.lang.Specification
34
35 @SpringBootTest
36 @Testcontainers
37 class CpsPersistenceSpecBase extends Specification {
38
39     @Shared
40     DatabaseTestContainer databaseTestContainer = DatabaseTestContainer.getInstance()
41
42     @Autowired
43     DataspaceRepository dataspaceRepository
44
45     @Autowired
46     YangResourceRepository yangResourceRepository
47
48     @Autowired
49     AnchorRepository anchorRepository
50
51     @Autowired
52     FragmentRepository fragmentRepository
53
54     static final String CLEAR_DATA = '/data/clear-all.sql'
55
56     static final String DATASPACE_NAME = 'DATASPACE-001'
57     static final String SCHEMA_SET_NAME1 = 'SCHEMA-SET-001'
58     static final String SCHEMA_SET_NAME2 = 'SCHEMA-SET-002'
59     static final String ANCHOR_NAME1 = 'ANCHOR-001'
60     static final String ANCHOR_NAME2 = 'ANCHOR-002'
61     static final String ANCHOR_NAME3 = 'ANCHOR-003'
62     static final String ANCHOR_FOR_DATA_NODES_WITH_LEAVES = 'ANCHOR-003'
63     static final String ANCHOR_FOR_SHOP_EXAMPLE = 'ANCHOR-004'
64 }