2 * ============LICENSE_START=======================================================
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
11 * http://www.apache.org/licenses/LICENSE-2.0
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=========================================================
21 package org.onap.datalake.feeder.controller.domain;
23 import org.junit.Test;
25 import static org.junit.Assert.assertEquals;
26 import static org.junit.Assert.assertTrue;
28 public class DbConfigTest {
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()));