1fb9b2487df865956cc49f9293851d55b3f5f4e2
[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 import org.onap.aaf.auth.helpers.MonthData.Row;
32
33 import junit.framework.Assert;
34
35 import static org.mockito.Mockito.*;
36
37 import java.io.BufferedWriter;
38 import java.io.File;
39 import java.io.FileWriter;
40 import java.io.IOException;
41
42 import org.junit.Test;
43
44 public class JU_MonthData {
45         
46         File f;
47         MonthData mData;
48         Row row;
49         BufferedWriter bw = null;
50         FileWriter fw = null;
51         
52         @Before
53         public void setUp() throws IOException {
54                 mData = new MonthData("env");
55                 row = new Row("target", 10,2,1);
56                 f = new File("Monthlyenv.dat");
57                 f.createNewFile();
58                 bw = new BufferedWriter(new FileWriter(f));
59                 bw.write("#test"+ "\n");
60                 bw.write("long,tester"+ "\n");
61                 bw.write("1,2,3,4,5"+ "\n");
62                 bw.close();
63                 
64                 mData = new MonthData("env");
65         }
66
67         @Test
68         public void testAdd() {
69                 mData.add(2, "target", 10, 1, 1);
70         }
71         
72         @Test
73         public void testNotExists() {
74                 mData.notExists(2);
75         }
76         
77         @Test
78         public void testWrite() throws IOException {
79                 mData.write();
80         }
81         
82         @Test
83         public void testCompareTo() {
84                 Row testrow = new Row("testtar",1,1,1);
85                 Assert.assertEquals(-4, row.compareTo(testrow));
86                 Assert.assertEquals(0, row.compareTo(row));
87         }
88         
89         @Test
90         public void testToString() {
91                 Assert.assertEquals("target|10|1|2", row.toString());
92         }
93         
94         @After
95         public void cleanUp() {
96                 File g = new File("Monthlyenv.dat.bak");
97                 if(f.exists()) {
98                         f.delete();
99                 }
100                 if(g.exists()) {
101                         g.delete();
102                 }
103         }
104
105 }