Merge "Unit tests for ExpiryRecord"
[dmaap/datarouter.git] / datarouter-prov / src / test / java / org / onap / dmaap / datarouter / provisioning / beans / GroupTest.java
1 /*******************************************************************************
2  * ============LICENSE_START==================================================
3  * * org.onap.dmaap
4  * * ===========================================================================
5  * * Copyright © 2017 AT&T Intellectual Property. 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  * * ECOMP is a trademark and service mark of AT&T Intellectual Property.
21  * *
22  ******************************************************************************/
23 package org.onap.dmaap.datarouter.provisioning.beans;
24
25 import org.junit.*;
26 import org.onap.dmaap.datarouter.provisioning.utils.DB;
27
28 import javax.persistence.EntityManager;
29 import javax.persistence.EntityManagerFactory;
30 import javax.persistence.Persistence;
31 import java.util.Collection;
32 import java.util.Date;
33 import java.util.List;
34
35 public class GroupTest {
36   private static EntityManagerFactory emf;
37   private static EntityManager em;
38   private Group group;
39   private DB db;
40
41   @BeforeClass
42   public static void init() {
43     emf = Persistence.createEntityManagerFactory("dr-unit-tests");
44     em = emf.createEntityManager();
45     System.setProperty(
46         "org.onap.dmaap.datarouter.provserver.properties",
47         "src/test/resources/h2Database.properties");
48   }
49
50   @AfterClass
51   public static void tearDownClass() {
52     em.clear();
53     em.close();
54     emf.close();
55   }
56
57   @Before
58   public void setUp() throws Exception {
59     db = new DB();
60     group = new Group("GroupTest", "", "");
61     group.doInsert(db.getConnection());
62   }
63
64   @Test
65   public void Given_Group_Exists_In_Db_GetAllGroups_Returns_Correct_Group() {
66     Collection<Group> groups = Group.getAllgroups();
67     Assert.assertEquals("Group1", ((List<Group>) groups).get(0).getName());
68   }
69
70   @Test
71   public void Given_Group_Inserted_Into_Db_GetGroupMatching_Returns_Created_Group() {
72     Assert.assertEquals(group, Group.getGroupMatching(group));
73   }
74
75   @Test
76   public void Given_Group_Inserted_With_Same_Name_GetGroupMatching_With_Id_Returns_Correct_Group()
77       throws Exception {
78     Group sameGroupName = new Group("GroupTest", "This group has a description", "");
79     sameGroupName.doInsert(db.getConnection());
80     Assert.assertEquals(
81         "This group has a description", Group.getGroupMatching(group, 2).getDescription());
82     sameGroupName.doDelete(db.getConnection());
83   }
84
85   @Test
86   public void Given_Group_Inserted_GetGroupById_Returns_Correct_Group() {
87     Assert.assertEquals(group, Group.getGroupById(group.getGroupid()));
88   }
89
90   @Test
91   public void Given_Group_AuthId_Updated_GetGroupByAuthId_Returns_Correct_Group() throws Exception {
92     group.setAuthid("Basic TmFtZTp6Z04wMFkyS3gybFppbXltNy94ZDhuMkdEYjA9");
93     group.doUpdate(db.getConnection());
94     Assert.assertEquals(group, Group.getGroupByAuthId("Basic TmFtZTp6Z04wMFkyS3gybFppbXltNy94ZDhuMkdEYjA9"));
95   }
96
97   @After
98   public void tearDown() throws Exception {
99     group.doDelete(db.getConnection());
100   }
101 }