97ae149a6cecdb43cde069527bb5d10dfc6fccf4
[so.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 - 2019 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.adapters.catalogdb;
22
23 import static org.junit.Assert.assertTrue;
24 import org.junit.Test;
25 import org.junit.runner.RunWith;
26 import org.springframework.boot.test.context.SpringBootTest;
27 import org.springframework.boot.web.server.LocalServerPort;
28 import org.springframework.test.context.ActiveProfiles;
29 import org.springframework.test.context.DynamicPropertyRegistry;
30 import org.springframework.test.context.DynamicPropertySource;
31 import org.springframework.test.context.junit4.SpringRunner;
32 import org.springframework.util.SocketUtils;
33
34 @RunWith(SpringRunner.class)
35 @SpringBootTest(classes = CatalogDBApplication.class, webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
36 @ActiveProfiles("test")
37 public class CatalogDbAdapterBaseTest {
38
39     @LocalServerPort
40     protected int port;
41
42     @Test
43     public void testNothing() {
44         assertTrue(true);
45     }
46
47     @DynamicPropertySource
48     static void configureProperties(DynamicPropertyRegistry registry) {
49         int port = SocketUtils.findAvailableTcpPort();
50         registry.add("spring.datasource.url", () -> String.format("jdbc:mariadb://localhost:%s/catalogdb", port));
51         registry.add("spring.flyway.url", () -> String.format("jdbc:mariadb://localhost:%s/catalogdb", port));
52         registry.add("mariaDB4j.port", () -> port);
53     }
54 }