Revert "Renaming Files having BluePrint to have Blueprint"
[ccsdk/cds.git] / ms / blueprintsprocessor / modules / inbounds / configs-api / src / test / kotlin / org / onap / ccsdk / cds / blueprintsprocessor / configs / api / TestDatabaseConfiguration.kt
1 /*
2  * Copyright © 2018-2019 AT&T Intellectual Property.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package org.onap.ccsdk.cds.blueprintsprocessor.configs.api
18
19 import org.onap.ccsdk.cds.blueprintsprocessor.db.BluePrintDBLibConfiguration
20 import org.onap.ccsdk.cds.blueprintsprocessor.db.PrimaryDataSourceProperties
21 import org.onap.ccsdk.cds.blueprintsprocessor.db.primary.PrimaryDatabaseConfiguration
22 import org.springframework.context.annotation.Bean
23 import org.springframework.context.annotation.Configuration
24 import org.springframework.context.annotation.Import
25 import org.springframework.data.jpa.repository.config.EnableJpaAuditing
26 import org.springframework.data.jpa.repository.config.EnableJpaRepositories
27 import org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean
28 import org.springframework.transaction.PlatformTransactionManager
29 import javax.sql.DataSource
30
31 @Configuration
32 @Import(BluePrintDBLibConfiguration::class)
33 @EnableJpaRepositories(
34     basePackages = [
35         "org.onap.ccsdk.cds.blueprintsprocessor.functions.resource.resolution",
36         "org.onap.ccsdk.cds.blueprintsprocessor.functions.config.snapshots",
37         "org.onap.ccsdk.cds.blueprintsprocessor.db.primary"
38     ],
39     entityManagerFactoryRef = "primaryEntityManager",
40     transactionManagerRef = "primaryTransactionManager"
41 )
42 @EnableJpaAuditing
43 open class TestDatabaseConfiguration(primaryDataSourceProperties: PrimaryDataSourceProperties) :
44     PrimaryDatabaseConfiguration(primaryDataSourceProperties) {
45
46     @Bean("primaryEntityManager")
47     open fun primaryEntityManager(): LocalContainerEntityManagerFactoryBean {
48         return primaryEntityManager(
49             "org.onap.ccsdk.cds.blueprintsprocessor.db.primary",
50             "org.onap.ccsdk.cds.blueprintsprocessor.functions.config.snapshots",
51             "org.onap.ccsdk.cds.blueprintsprocessor.functions.resource.resolution.db"
52         )
53     }
54
55     @Bean("primaryDataSource")
56     override fun primaryDataSource(): DataSource {
57         return super.primaryDataSource()
58     }
59
60     @Bean("primaryTransactionManager")
61     override fun primaryTransactionManager(): PlatformTransactionManager {
62         return super.primaryTransactionManager()
63     }
64 }