a29df9cbcffe99944cec39de4cd9e5caf8c9f57d
[so.git] / bpmn / MSOCommonBPMN / src / test / java / org / onap / so / 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;
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"})
34 public class EmbeddedMariaDbConfig {
35
36     @Bean
37     MariaDB4jSpringService mariaDB4jSpringService() {
38         MariaDB4jSpringService service = new MariaDB4jSpringService();
39         
40         
41         service.getConfiguration().addArg("--lower_case_table_names=1");
42         return service;
43     }
44
45     @Bean
46     DataSource dataSource(MariaDB4jSpringService mariaDB4jSpringService,
47                           @Value("${mariaDB4j.databaseName}") String databaseName,
48                           @Value("${spring.datasource.username}") String datasourceUsername,
49                           @Value("${spring.datasource.password}") String datasourcePassword,
50                           @Value("${spring.datasource.driver-class-name}") String datasourceDriver) throws ManagedProcessException {
51         //Create our database with default root user and no password
52         mariaDB4jSpringService.getDB().createDB(databaseName);
53
54         DBConfigurationBuilder config = mariaDB4jSpringService.getConfiguration();
55
56         return DataSourceBuilder
57                 .create()
58                 .username(datasourceUsername)
59                 .password(datasourcePassword)
60                 .url(config.getURL(databaseName))
61                 .driverClassName(datasourceDriver)
62                 .build();
63     }
64 }