[DMaaP DR] JKD 11 migration
[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.PowerMockIgnore;
37 import org.powermock.core.classloader.annotations.SuppressStaticInitializationFor;
38 import org.powermock.modules.junit4.PowerMockRunner;
39
40 @RunWith(PowerMockRunner.class)
41 @PowerMockIgnore({"com.sun.org.apache.xerces.*", "javax.xml.*", "org.xml.*", "org.w3c.*"})
42 public class PurgeLogDirTaskTest {
43
44     private static EntityManagerFactory emf;
45     private static EntityManager em;
46     private PurgeLogDirTask purgeLogDirTask = new PurgeLogDirTask();
47     private File testLog;
48
49     @Before
50     public void setUp() throws Exception {
51         testLog = new File(System.getProperty("user.dir") + "/src/test/resources/IN.test_prov_logs");
52         prepFile(testLog);
53     }
54
55     @After
56     public void tearDown() throws IOException {
57         Files.deleteIfExists(testLog.toPath());
58     }
59
60     @BeforeClass
61     public static void init() {
62         emf = Persistence.createEntityManagerFactory("dr-unit-tests");
63         em = emf.createEntityManager();
64         System.setProperty(
65                 "org.onap.dmaap.datarouter.provserver.properties",
66                 "src/test/resources/h2Database.properties");
67     }
68
69     @AfterClass
70     public static void tearDownClass() {
71         em.clear();
72         em.close();
73         emf.close();
74     }
75
76     @Test
77     public void Verify_Logs_Are_Purged() {
78         purgeLogDirTask.run();
79     }
80
81     private void prepFile(File logFile) {
82         try (FileWriter fileWriter = new FileWriter(logFile)) {
83             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");
84         }
85         catch (IOException e){
86             System.out.println(e.getMessage());
87         }
88     }
89 }