fbb0d23a407d56a99d4063e6a57bb91e35111f0f
[aaf/authz.git] / auth / auth-batch / src / test / java / org / onap / aaf / auth / helpers / test / JU_InputIterator.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.InputIterator;
31
32 import static org.mockito.Mockito.*;
33
34 import java.io.BufferedReader;
35 import java.io.BufferedWriter;
36 import java.io.File;
37 import java.io.FileNotFoundException;
38 import java.io.FileReader;
39 import java.io.FileWriter;
40 import java.io.IOException;
41 import java.io.PrintStream;
42 import java.io.Reader;
43
44 import org.junit.Test;
45
46 public class JU_InputIterator {
47         
48         InputIterator inputIterator;
49         File f;
50         BufferedReader bReader;
51         PrintStream pStream;
52         
53         @Before
54         public void setUp() throws IOException {
55                 f = new File("file");
56                 f.createNewFile();
57                 bReader = new BufferedReader(new FileReader(f));
58                 pStream = new PrintStream(f);
59                 inputIterator = new InputIterator(bReader, pStream, "prompt", "instructions");
60         }
61
62         @Test
63         public void test() {
64                 inputIterator.iterator();
65                 inputIterator.iterator().hasNext();
66                 inputIterator.iterator().next();
67                 inputIterator.iterator().remove();
68         }
69         
70         @After
71         public void cleanUp() {
72                 if(f.exists()) {
73                         f.delete();
74                 }
75         }
76 }