Merge "fixed sonar issues in NetworkAdaptorNotify_Service"
[so.git] / mso-catalog-db / src / test / java / org / onap / so / db / catalog / EmbeddedMariaDbConfig.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 - 2018 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.so.db.catalog;
22 import ch.vorburger.exec.ManagedProcessException;
23 import ch.vorburger.mariadb4j.DBConfigurationBuilder;
24 import ch.vorburger.mariadb4j.springframework.MariaDB4jSpringService;
25 import org.springframework.beans.factory.annotation.Value;
26 import org.springframework.boot.autoconfigure.jdbc.DataSourceBuilder;
27 import org.springframework.context.annotation.Bean;
28 import org.springframework.context.annotation.Configuration;
29 import org.springframework.context.annotation.Profile;
30 import javax.sql.DataSource;
31
32 @Configuration
33 @Profile({"test","local"})
34 public class EmbeddedMariaDbConfig {
35
36     @Bean
37     MariaDB4jSpringService mariaDB4jSpringService() {
38         return new MariaDB4jSpringService();
39     }
40
41     @Bean
42     DataSource dataSource(MariaDB4jSpringService mariaDB4jSpringService,
43                           @Value("${mariaDB4j.databaseName}") String databaseName,
44                           @Value("${spring.datasource.username}") String datasourceUsername,
45                           @Value("${spring.datasource.password}") String datasourcePassword,
46                           @Value("${spring.datasource.driver-class-name}") String datasourceDriver) throws ManagedProcessException {
47         //Create our database with default root user and no password
48         mariaDB4jSpringService.getDB().createDB(databaseName);
49
50         DBConfigurationBuilder config = mariaDB4jSpringService.getConfiguration();
51
52         return DataSourceBuilder
53                 .create()
54                 .username(datasourceUsername)
55                 .password(datasourcePassword)
56                 .url(config.getURL(databaseName))
57                 .driverClassName(datasourceDriver)
58                 .build();
59     }
60 }