Increased auth batch coverage
[aaf/authz.git] / auth / auth-batch / src / test / java / org / onap / aaf / auth / helpers / test / JU_MonthData.java
1 /**
2  * ============LICENSE_START====================================================
3  * org.onap.aaf
4  * ===========================================================================
5  * Copyright (c) 2018 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  */
21
22 package org.onap.aaf.auth.helpers.test;
23
24 import static org.junit.Assert.*;
25 import org.junit.After;
26 import org.junit.Before;
27 import org.junit.Test;
28 import org.mockito.Mock;
29 import org.mockito.Mockito;
30 import org.onap.aaf.auth.helpers.MonthData;
31
32 import static org.mockito.Mockito.*;
33
34 import java.io.BufferedWriter;
35 import java.io.File;
36 import java.io.FileWriter;
37 import java.io.IOException;
38
39 import org.junit.Test;
40
41 public class JU_MonthData {
42         
43         File f;
44         MonthData mData;
45         BufferedWriter bw = null;
46         FileWriter fw = null;
47         
48         @Before
49         public void setUp() throws IOException {
50                 mData = new MonthData("env");
51                 f = new File("Monthlyenv.dat");
52                 f.createNewFile();
53                 bw = new BufferedWriter(new FileWriter(f));
54                 bw.write("#test"+ "\n");
55                 bw.write("long,tester"+ "\n");
56                 bw.write("1,2,3,4,5"+ "\n");
57                 bw.close();
58                 
59                 mData = new MonthData("env");
60         }
61
62         @Test
63         public void testAdd() {
64                 mData.add(2, "target", 10, 1, 1);
65         }
66         
67         @Test
68         public void testNotExists() {
69                 mData.notExists(2);
70         }
71         
72         @After
73         public void cleanUp() {
74                 if(f.exists()) {
75                         f.delete();
76                 }
77         }
78
79 }