summaryrefslogtreecommitdiff
path: root/test/java.io/BufferedInputStreamTest.java
blob: 5599ecae008de1743341d78413280ac2b1d87a94 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
/*************************************************************************
/* BufferedInputStreamTest.java -- Tests BufferedInputStream's
/*
/* Copyright (c) 1998 by Aaron M. Renn (arenn@urbanophile.com)
/*
/* This program is free software; you can redistribute it and/or modify
/* it under the terms of the GNU General Public License as published 
/* by the Free Software Foundation, version 2. (see COPYING)
/*
/* This program is distributed in the hope that it will be useful, but
/* WITHOUT ANY WARRANTY; without even the implied warranty of
/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
/* GNU General Public License for more details.
/*
/* You should have received a copy of the GNU General Public License
/* along with this program; if not, write to the Free Software Foundation
/* Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307 USA
/*************************************************************************/

import java.io.*;

public class BufferedInputStreamTest extends BufferedInputStream
{

public
BufferedInputStreamTest(InputStream in, int size)
{
  super(in, size);
}

public static int
marktest(InputStream ins) throws IOException
{
  BufferedInputStream bis = new BufferedInputStream(ins, 15);

  int bytes_read;  
  int total_read = 0;
  byte[] buf = new byte[12];

  bytes_read = bis.read(buf);
  total_read += bytes_read;
  System.out.print(new String(buf, 0, bytes_read));

  bytes_read = bis.read(buf);
  total_read += bytes_read;
  System.out.print(new String(buf, 0, bytes_read));

  bis.mark(75);
  bis.read();
  bis.read(buf);
  bis.read(buf);
  bis.read(buf);
  bis.reset();

  bytes_read = bis.read(buf);
  total_read += bytes_read;
  System.out.print(new String(buf, 0, bytes_read));

  bis.mark(555);

  bytes_read = bis.read(buf);
  total_read += bytes_read;
  System.out.print(new String(buf, 0, bytes_read));

  bis.reset();

  bis.read(buf);
  bytes_read = bis.read(buf);
  total_read += bytes_read;
  System.out.print(new String(buf, 0, bytes_read));

  bytes_read = bis.read(buf);
  total_read += bytes_read;
  System.out.print(new String(buf, 0, bytes_read));

  bis.mark(14);

  bis.read(buf);

  bis.reset();

  bytes_read = bis.read(buf);
  total_read += bytes_read;
  System.out.print(new String(buf, 0, bytes_read));

  while ((bytes_read = bis.read(buf)) != -1)
    {
      System.out.print(new String(buf, 0, bytes_read));
      total_read += bytes_read;
    }

  return(total_read);
}

public static void
main(String[] argv)
{
  System.out.println("Started test of BufferedInputStream");

  try
    {
      System.out.println("Test 1: Protected Variables Test");

      String str = "This is a test line of text for this pass";

      StringBufferInputStream sbis = new StringBufferInputStream(str);
      BufferedInputStreamTest bist = new BufferedInputStreamTest(sbis, 12); 

      bist.read();
      bist.mark(5);

      boolean passed = true;

      if (bist.buf.length != 12)
        {
          passed = false;
          System.out.println("buf.length is wrong.  Expected 12, but got " + 
                             bist.buf.length);
        }
      if (bist.count != 12)
        {
          passed = false;
          System.out.println("count is wrong.  Expected 12, but got " + 
                             bist.count);
        }
      if (bist.marklimit != 5)
        {
          passed = false;
          System.out.println("marklimit is wrong.  Expected 5, but got " + 
                             bist.marklimit);
        }
      if (bist.markpos != 1)
        {
          passed = false;
          System.out.println("markpos is wrong.  Expected 5, but got " + 
                             bist.markpos);
        }
      if (bist.pos != 1)
        {
          passed = false;
          System.out.println("pos is wrong.  Expected 1, but got " + 
                             bist.pos);
        }

      if (passed)
        System.out.println("PASSED: Protected Variables Test");
      else
        System.out.println("FAILED: Protected Variables Test");
    }
  catch(IOException e)
    {
      System.out.println("FAILED: Protected Variables Test: " + e);
    }

  try
    {
      System.out.println("Test 2: Simple Read Test");

      String str = "One of my 8th grade teachers was Mr. Russell.\n" +
         "He used to start each year off by telling the class that the\n" +
         "earth was flat.  He did it to teach people to question\n" +
         "things they are told.  But everybody knew that he did it\n" +
         "so it lost its effect.\n";

      StringBufferInputStream sbis = new StringBufferInputStream(str);
      BufferedInputStream bis = new BufferedInputStream(sbis, 15);

      byte[] buf = new byte[12];
      int bytes_read;
      while((bytes_read = bis.read(buf)) != -1)
        System.out.print(new String(buf, 0, bytes_read));

      bis.close();
      System.out.println("PASSED: Simple Read Test");
    }
  catch (IOException e)
    {
      System.out.println("FAILED: Simple Read Test: " + e);
    }

  try
    {
      System.out.println("Test 3: First mark/reset Test");

      String str = "My 6th grade teacher was named Mrs. Hostetler.\n" +
        "She had a whole list of rules that you were supposed to follow\n" +
        "in class and if you broke a rule she would make you write the\n" +
        "rules out several times.  The number varied depending on what\n" +
        "rule you broke.  Since I knew I would get in trouble, I would\n" +
        "just go ahead and write out a few sets on the long school bus\n" +
        "ride home so that if had to stay in during recess and write\n" +
        "rules, five minutes later I could just tell the teacher I was\n" +
        "done so I could go outside and play kickball.\n";

      StringBufferInputStream sbis = new StringBufferInputStream(str);

      int total_read = marktest(sbis);

      if (total_read == str.length())
        System.out.println("PASSED: First mark/reset Test");
      else
        System.out.println("FAILED: First mark/reset Test");
    }
  catch (IOException e)
    {
      System.out.println("FAILED: First mark/reset Test: " + e);
    }
   
  try
    {
      System.out.println("Test 4: Second mark/reset Test");

      String str = "My first day of college was fun.  A bunch of us\n" +
         "got pretty drunk, then this guy named Rick Flake (I'm not\n" +
         "making that name up) took a piss in the bed of a Physical\n" +
         "Plant dept pickup truck.  Later on we were walking across\n" +
         "campus, saw a cop, and took off running for no reason.\n" +
         "When we got back to the dorm we found an even drunker guy\n" +
         "passed out in a shopping cart outside.\n";

      ByteArrayInputStream sbis = new ByteArrayInputStream(str.getBytes());

      int total_read = marktest(sbis);

      if (total_read == str.length())
        System.out.println("PASSED: Second mark/reset Test");
      else
        System.out.println("FAILED: Second mark/reset Test");
    }
  catch (IOException e)
    {
      System.out.println("FAILED: Second mark/reset Test: " + e);
    }

  System.out.println("Finished test of BufferedInputStream");
} // main

} // class BufferedInputStreamTest