Merge "Fetching data node by xpath - persistence layer"
[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  *  ================================================================================
6  *  Licensed under the Apache License, Version 2.0 (the 'License');
7  *  you may not use this file except in compliance with the License.
8  *  You may obtain a copy of the License at
9  *
10  *        http://www.apache.org/licenses/LICENSE-2.0
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.spi.impl
22
23 import org.onap.cps.DatabaseTestContainer
24 import org.onap.cps.spi.repository.AnchorRepository
25 import org.onap.cps.spi.repository.DataspaceRepository
26 import org.onap.cps.spi.repository.FragmentRepository
27 import org.onap.cps.spi.repository.YangResourceRepository
28 import org.springframework.beans.factory.annotation.Autowired
29 import org.springframework.boot.test.context.SpringBootTest
30 import org.testcontainers.spock.Testcontainers
31 import spock.lang.Shared
32 import spock.lang.Specification
33
34 @SpringBootTest
35 @Testcontainers
36 class CpsPersistenceSpecBase extends Specification {
37
38     @Shared
39     DatabaseTestContainer databaseTestContainer = DatabaseTestContainer.getInstance()
40
41     @Autowired
42     DataspaceRepository dataspaceRepository
43
44     @Autowired
45     YangResourceRepository yangResourceRepository
46
47     @Autowired
48     AnchorRepository anchorRepository
49
50     @Autowired
51     FragmentRepository fragmentRepository
52
53     static final String CLEAR_DATA = '/data/clear-all.sql'
54
55     static final String DATASPACE_NAME = 'DATASPACE-001'
56     static final String SCHEMA_SET_NAME1 = 'SCHEMA-SET-001'
57     static final String SCHEMA_SET_NAME2 = 'SCHEMA-SET-002'
58     static final String ANCHOR_NAME1 = 'ANCHOR-001'
59     static final String ANCHOR_NAME2 = 'ANCHOR-002'
60     static final String ANCHOR_FOR_DATA_NODES_WITH_LEAVES = 'ANCHOR-003'
61
62 }