data extraction service
[dcaegen2/services.git] / components / datalake-handler / des / src / test / java / org / onap / datalake / des / domain / DbTypeTest.java
1 /*
2  * ============LICENSE_START=======================================================
3  * ONAP : DataLake
4  * ================================================================================
5  * Copyright 2020 China Mobile
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.des.domain;
22
23 import static org.junit.Assert.assertEquals;
24 import static org.junit.Assert.assertNotEquals;
25 import static org.junit.Assert.assertNotNull;
26 import static org.junit.Assert.assertNull;
27 import static org.junit.Assert.assertTrue;
28
29 import org.junit.Test;
30
31 /**
32  * Test Data Type.
33  *
34  * @author Kai Lu
35  */
36 public class DbTypeTest {
37
38     @Test
39     public void test() {
40         DbType dbType = new DbType("ES","Elasticsearch");
41
42         dbType.setTool(false); 
43
44         assertNotNull(dbType.toString());
45         assertEquals(dbType, dbType);
46         assertNotEquals(dbType, null);
47         assertNotEquals(dbType, "ES");
48
49         DbType dbType2 = new DbType("MONGO", "MongoDB");
50         assertNotEquals(dbType, dbType2);
51         assertNotNull(dbType.hashCode());
52
53         assertEquals("MongoDB", dbType2.getName());
54         dbType2.setName(null);
55         dbType2.setDefaultPort(1);
56         assertTrue(1 == dbType2.getDefaultPort());
57
58         dbType2.setDbs(null);
59         assertNull(dbType2.getDbs());
60     }
61
62 }