2c53def42fd5b2e338e5a98000f4abf334546c9c
[dcaegen2/services.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : DATALAKE
4  * ================================================================================
5  * Copyright (C) 2018-2019 Huawei. 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.datalake.feeder.controller.domain;
22
23 import org.junit.Test;
24
25 import static org.junit.Assert.assertEquals;
26 import static org.junit.Assert.assertTrue;
27
28 public class DbConfigTest {
29     @Test
30     public void testDbConfig() {
31         DbConfig dbConfig = new DbConfig();
32         dbConfig.setName("elasticsearch");
33         assertTrue("elasticsearch".equals(dbConfig.getName()));
34         dbConfig.setHost("localhost");
35         assertTrue("localhost".equals(dbConfig.getHost()));
36         dbConfig.setLogin("root");
37         assertTrue("root".equals(dbConfig.getLogin()));
38         dbConfig.setPassword("root123");
39         assertTrue("root123".equals(dbConfig.getPassword()));
40         dbConfig.setDatabase("elasticsearch");
41         assertTrue("elasticsearch".equals(dbConfig.getDatabase()));
42         dbConfig.setPort(123);
43         assertEquals(123, dbConfig.getPort());
44         dbConfig.setPoperties("driver");
45         assertTrue("driver".equals(dbConfig.getPoperties()));
46     }
47 }