Renaming Files having BluePrint to have Blueprint
[ccsdk/cds.git] / ms / blueprintsprocessor / modules / commons / db-lib / src / test / kotlin / org / onap / ccsdk / cds / blueprintsprocessor / db / 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.db
18
19 import org.onap.ccsdk.cds.blueprintsprocessor.db.primary.PrimaryDatabaseConfiguration
20 import org.springframework.context.annotation.Bean
21 import org.springframework.context.annotation.Configuration
22 import org.springframework.context.annotation.Import
23 import org.springframework.data.jpa.repository.config.EnableJpaAuditing
24 import org.springframework.data.jpa.repository.config.EnableJpaRepositories
25 import org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean
26 import org.springframework.transaction.PlatformTransactionManager
27 import javax.sql.DataSource
28
29 @Configuration
30 @Import(BlueprintDBLibConfiguration::class)
31 @EnableJpaRepositories(
32     basePackages = ["org.onap.ccsdk.cds.blueprintsprocessor.db.primary"],
33     entityManagerFactoryRef = "primaryEntityManager",
34     transactionManagerRef = "primaryTransactionManager"
35 )
36 @EnableJpaAuditing
37 open class TestDatabaseConfiguration(primaryDataSourceProperties: PrimaryDataSourceProperties) :
38     PrimaryDatabaseConfiguration(primaryDataSourceProperties) {
39
40     @Bean("primaryEntityManager")
41     open fun primaryEntityManager(): LocalContainerEntityManagerFactoryBean {
42         return primaryEntityManager("org.onap.ccsdk.cds.blueprintsprocessor.db.primary.*")
43     }
44
45     @Bean("primaryDataSource")
46     override fun primaryDataSource(): DataSource {
47         return super.primaryDataSource()
48     }
49
50     @Bean("primaryTransactionManager")
51     override fun primaryTransactionManager(): PlatformTransactionManager {
52         return super.primaryTransactionManager()
53     }
54 }