Containerization feature of SO
[so.git] / bpmn / MSOCoreBPMN / src / test / java / org / onap / so / bpmn / core / utils / CamundaDBSetup.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 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.bpmn.core.utils;
22
23 import java.sql.Connection;
24 import java.sql.DriverManager;
25 import java.sql.PreparedStatement;
26 import java.sql.SQLException;
27
28 import org.onap.so.logger.MsoLogger;
29
30 /**
31  * Sets up the unit test (H2) database for Camunda.
32  */
33 public class CamundaDBSetup {
34         private static boolean isDBConfigured = false;
35         private static final MsoLogger LOGGER = MsoLogger.getMsoLogger(MsoLogger.Catalog.BPEL, CamundaDBSetup.class);
36         
37         private CamundaDBSetup() {
38         }
39         
40         public static synchronized void configure() throws SQLException {
41                 if (isDBConfigured) {
42                         return;
43                 }
44
45                 LOGGER.debug ("Configuring the Camunda H2 database for MSO");
46
47                 Connection connection = null;
48                 PreparedStatement stmt = null;
49
50                 try {
51
52
53                         isDBConfigured = true;
54                 
55                 } finally {
56                         if (stmt != null) {
57                                 try {
58                                         stmt.close();
59                                 } catch (Exception e) {
60                                         LOGGER.debug("Exception :",e);
61                                 }
62                         }
63
64                         if (connection != null) {
65                                 try {
66                                         connection.close();
67                                 } catch (Exception e) {
68                                         LOGGER.debug("Exception :",e);
69                                 }
70                         }
71                 }
72         }
73 }