Renaming Files having BluePrint to have Blueprint
[ccsdk/cds.git] / ms / blueprintsprocessor / functions / resource-resolution / src / test / kotlin / org / onap / ccsdk / cds / blueprintsprocessor / functions / resource / resolution / 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.functions.resource.resolution
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.db.primary"
37     ],
38     entityManagerFactoryRef = "primaryEntityManager",
39     transactionManagerRef = "primaryTransactionManager"
40 )
41 @EnableJpaAuditing
42 open class TestDatabaseConfiguration(primaryDataSourceProperties: PrimaryDataSourceProperties) :
43     PrimaryDatabaseConfiguration(primaryDataSourceProperties) {
44
45     @Bean("primaryEntityManager")
46     open fun primaryEntityManager(): LocalContainerEntityManagerFactoryBean {
47         return primaryEntityManager(
48             "org.onap.ccsdk.cds.blueprintsprocessor.db.primary",
49             "org.onap.ccsdk.cds.blueprintsprocessor.functions.resource.resolution.db"
50         )
51     }
52
53     @Bean("primaryDataSource")
54     override fun primaryDataSource(): DataSource {
55         return super.primaryDataSource()
56     }
57
58     @Bean("primaryTransactionManager")
59     override fun primaryTransactionManager(): PlatformTransactionManager {
60         return super.primaryTransactionManager()
61     }
62 }