More unit test coverage and code cleanup
[dmaap/datarouter.git] / datarouter-prov / src / test / java / org / onap / dmaap / datarouter / provisioning / utils / PurgeLogDirTaskTest.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.utils;
22
23 import java.io.File;
24 import java.io.FileWriter;
25 import java.io.IOException;
26 import java.nio.file.Files;
27 import javax.persistence.EntityManager;
28 import javax.persistence.EntityManagerFactory;
29 import javax.persistence.Persistence;
30 import org.junit.After;
31 import org.junit.AfterClass;
32 import org.junit.Before;
33 import org.junit.BeforeClass;
34 import org.junit.Test;
35 import org.junit.runner.RunWith;
36 import org.powermock.core.classloader.annotations.SuppressStaticInitializationFor;
37 import org.powermock.modules.junit4.PowerMockRunner;
38
39 @RunWith(PowerMockRunner.class)
40 public class PurgeLogDirTaskTest {
41
42     private static EntityManagerFactory emf;
43     private static EntityManager em;
44     private PurgeLogDirTask purgeLogDirTask = new PurgeLogDirTask();
45     private File testLog;
46
47     @Before
48     public void setUp() throws Exception {
49         testLog = new File(System.getProperty("user.dir") + "/src/test/resources/IN.test_prov_logs");
50         prepFile(testLog);
51     }
52
53     @After
54     public void tearDown() throws IOException {
55         Files.deleteIfExists(testLog.toPath());
56     }
57
58     @BeforeClass
59     public static void init() {
60         emf = Persistence.createEntityManagerFactory("dr-unit-tests");
61         em = emf.createEntityManager();
62         System.setProperty(
63                 "org.onap.dmaap.datarouter.provserver.properties",
64                 "src/test/resources/h2Database.properties");
65     }
66
67     @AfterClass
68     public static void tearDownClass() {
69         em.clear();
70         em.close();
71         emf.close();
72     }
73
74     @Test
75     public void Verify_Logs_Are_Purged() {
76         purgeLogDirTask.run();
77     }
78
79     private void prepFile(File logFile) {
80         try (FileWriter fileWriter = new FileWriter(logFile)) {
81             fileWriter.write("2018-08-29-10-10-10-543.|LOG|1|1|https://dmaap-dr-prov:/url/file123|POST|application/vnd.att-dr.feed|100|mockType|file123|https://dmaap-dr-prov|user123|200|1|1|200|2|2\n");
82         }
83         catch (IOException e){
84             System.out.println(e.getMessage());
85         }
86     }
87 }