[DMaaP DR] JKD 11 migration
[dmaap/datarouter.git] / datarouter-prov / src / test / java / org / onap / dmaap / datarouter / provisioning / beans / NetworkRouteTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2019 Nordix Foundation.
4  * ================================================================================
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  * SPDX-License-Identifier: Apache-2.0
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.dmaap.datarouter.provisioning.beans;
22
23 import java.sql.Connection;
24 import java.sql.SQLException;
25 import javax.persistence.EntityManager;
26 import javax.persistence.EntityManagerFactory;
27 import javax.persistence.Persistence;
28 import org.junit.AfterClass;
29 import org.junit.Assert;
30 import org.junit.Before;
31 import org.junit.BeforeClass;
32 import org.junit.Test;
33 import org.junit.runner.RunWith;
34 import org.onap.dmaap.datarouter.provisioning.utils.ProvDbUtils;
35 import org.powermock.core.classloader.annotations.PowerMockIgnore;
36 import org.powermock.modules.junit4.PowerMockRunner;
37
38 @RunWith(PowerMockRunner.class)
39 @PowerMockIgnore({"com.sun.org.apache.xerces.*", "javax.xml.*", "org.xml.*", "org.w3c.*"})
40 public class NetworkRouteTest {
41
42     private NetworkRoute networkRoute = new NetworkRoute("node01.","node03.","node02.");
43     private ProvDbUtils provDbUtils = ProvDbUtils.getInstance();
44
45
46     private static EntityManagerFactory emf;
47     private static EntityManager em;
48
49     @BeforeClass
50     public static void init() {
51         emf = Persistence.createEntityManagerFactory("dr-unit-tests");
52         em = emf.createEntityManager();
53         System.setProperty(
54                 "org.onap.dmaap.datarouter.provserver.properties",
55                 "src/test/resources/h2Database.properties");
56     }
57
58     @AfterClass
59     public static void tearDownClass() {
60         em.clear();
61         em.close();
62         emf.close();
63     }
64     @Before
65     public void setUp() throws Exception {
66         try (Connection conn = provDbUtils.getConnection()) {
67             networkRoute.doInsert(conn);
68         }
69     }
70
71     @Test
72     public void Verify_NetworkRoute_Is_Removed_Successfully() throws SQLException {
73         Assert.assertEquals(2, NetworkRoute.getAllNetworkRoutes().size());
74         networkRoute.doDelete(provDbUtils.getConnection());
75         Assert.assertEquals(1, NetworkRoute.getAllNetworkRoutes().size());
76     }
77
78     @Test
79     public void Verify_NetworkRoute_Is_Updated_Successfully() throws SQLException {
80         NetworkRoute networkRoute = new NetworkRoute("stub_from.", "stub_to.", "node02.");
81         networkRoute.doUpdate(provDbUtils.getConnection());
82         for (NetworkRoute net :
83             NetworkRoute.getAllNetworkRoutes()) {
84             Assert.assertEquals(5, net.getVianode());
85         }
86         NetworkRoute networkRoute1 = new NetworkRoute("stub_from.", "stub_to.", "node02.");
87         Assert.assertEquals(networkRoute.hashCode(), networkRoute1.hashCode());
88         Assert.assertEquals(networkRoute, networkRoute1);
89         Assert.assertEquals(networkRoute.toString(), networkRoute1.toString());
90     }
91 }