Replace deprecated WebSecurityConfigurerAdapter
[cps.git] / integration-test / src / test / groovy / org / onap / cps / integration / base / TestConfig.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 import com.fasterxml.jackson.databind.ObjectMapper
24 import org.onap.cps.notification.NotificationService
25 import org.onap.cps.spi.CpsDataPersistenceService
26 import org.onap.cps.spi.CpsModulePersistenceService
27 import org.onap.cps.spi.impl.CpsAdminPersistenceServiceImpl
28 import org.onap.cps.spi.impl.CpsDataPersistenceServiceImpl
29 import org.onap.cps.spi.impl.CpsModulePersistenceServiceImpl
30 import org.onap.cps.spi.repository.AnchorRepository
31 import org.onap.cps.spi.repository.DataspaceRepository
32 import org.onap.cps.spi.repository.FragmentRepository
33 import org.onap.cps.spi.repository.ModuleReferenceRepository
34 import org.onap.cps.spi.repository.SchemaSetRepository
35 import org.onap.cps.spi.repository.YangResourceRepository
36 import org.onap.cps.spi.utils.SessionManager
37 import org.onap.cps.utils.JsonObjectMapper
38 import org.onap.cps.utils.TimedYangParser
39 import org.onap.cps.yang.TimedYangTextSchemaSourceSetBuilder
40 import org.springframework.beans.factory.annotation.Autowired
41 import org.springframework.context.annotation.Bean
42 import org.springframework.context.annotation.Configuration
43 import org.springframework.context.annotation.Lazy
44 import spock.lang.Specification
45
46 @Configuration
47 class TestConfig extends Specification{
48     @Autowired
49     @Lazy
50     DataspaceRepository dataspaceRepository
51
52     @Autowired
53     @Lazy
54     AnchorRepository anchorRepository
55
56     @Autowired
57     @Lazy
58     SchemaSetRepository schemaSetRepository
59
60     @Autowired
61     @Lazy
62     YangResourceRepository yangResourceRepository
63
64     @Autowired
65     @Lazy
66     FragmentRepository fragmentRepository
67
68     @Autowired
69     @Lazy
70     ModuleReferenceRepository moduleReferenceRepository
71
72     @Autowired
73     @Lazy
74     JsonObjectMapper jsonObjectMapper
75
76     @Autowired
77     @Lazy
78     SessionManager stubbedSessionManager
79
80     @Bean
81     CpsAdminPersistenceServiceImpl cpsAdminPersistenceService() {
82         new CpsAdminPersistenceServiceImpl(dataspaceRepository, anchorRepository, schemaSetRepository, yangResourceRepository)
83     }
84
85     @Bean
86     CpsDataPersistenceService cpsDataPersistenceService() {
87         return (CpsDataPersistenceService) new CpsDataPersistenceServiceImpl(dataspaceRepository, anchorRepository, fragmentRepository, jsonObjectMapper, stubbedSessionManager)
88     }
89
90     @Bean
91     CpsModulePersistenceService cpsModulePersistenceService() {
92         return (CpsModulePersistenceService) new CpsModulePersistenceServiceImpl(yangResourceRepository, schemaSetRepository, dataspaceRepository, cpsAdminPersistenceService(), moduleReferenceRepository)
93     }
94
95     @Bean
96     JsonObjectMapper jsonObjectMapper() {
97         return new JsonObjectMapper(new ObjectMapper())
98     }
99
100     @Bean
101     NotificationService notificationService() {
102         return Stub(NotificationService)
103     }
104
105     @Bean
106     SessionManager sessionManager() {
107         return Stub(SessionManager)
108     }
109
110     @Bean
111     TimedYangParser timedYangParser() {
112         return new TimedYangParser()
113     }
114
115     @Bean
116     TimedYangTextSchemaSourceSetBuilder textSchemaSourceSetBuilder() {
117         return new TimedYangTextSchemaSourceSetBuilder()
118     }
119
120 }