data extraction service
[dcaegen2/services.git] / components / datalake-handler / des / src / test / java / org / onap / datalake / des / domain / DbTest.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.assertFalse;
25 import static org.junit.Assert.assertNotEquals;
26
27 import org.junit.Test;
28 import org.onap.datalake.des.util.TestUtil;
29
30 /**
31  * Test Db.
32  *
33  * @author Kai Lu
34  */
35
36 public class DbTest {
37
38     @Test
39     public void testIs() {
40
41         Db couchbase = TestUtil.newDb("Couchbase");
42         Db mongoDb1 = TestUtil.newDb("MongoDB");
43         Db mongoDb2 = TestUtil.newDb("MongoDB");
44         assertNotEquals(couchbase.hashCode(), mongoDb1.hashCode());
45         assertNotEquals(couchbase, mongoDb1);
46         assertNotEquals(mongoDb1, mongoDb2);
47         assertEquals(mongoDb1, mongoDb1);
48         assertFalse(mongoDb2.equals(null));
49
50         DbType dbType = new DbType("MONGO", "MongoDB");
51         dbType.setTool(false);
52         mongoDb1.setDbType(dbType);
53
54         assertNotEquals(mongoDb2, dbType);
55         assertFalse(mongoDb1.getDbType().isTool());
56     }
57 }