Merge from mainline.
[official-gcc.git] / libjava / classpath / test / java.io / BufferedCharWriterTest.java
blob2893b4b90cda68f816f10d6bebd2b3e6c5fa46d7
1 /*************************************************************************
2 /* BufferedCharWriterTest.java -- Test {Buffered,CharArray}Writer
3 /*
4 /* Copyright (c) 1998 Free Software Foundation, Inc.
5 /* Written by Aaron M. Renn (arenn@urbanophile.com)
6 /*
7 /* This program is free software; you can redistribute it and/or modify
8 /* it under the terms of the GNU General Public License as published
9 /* by the Free Software Foundation, either version 2 of the License, or
10 /* (at your option) any later version.
12 /* This program is distributed in the hope that it will be useful, but
13 /* WITHOUT ANY WARRANTY; without even the implied warranty of
14 /* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 /* GNU General Public License for more details.
17 /* You should have received a copy of the GNU General Public License
18 /* along with this program; if not, write to the Free Software Foundation
19 /* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 /*************************************************************************/
22 import java.io.*;
24 /**
25 * Class to test BufferedWriter and CharArrayWriter
27 * @version 0.0
29 * @author Aaron M. Renn (arenn@urbanophile.com)
31 public class BufferedCharWriterTest
34 public static void
35 main(String argv[])
37 System.out.println("Started test of BufferedWriter and CharArrayWriter");
39 try
41 System.out.println("Test 1: Write Tests");
43 CharArrayWriter caw = new CharArrayWriter(24);
44 BufferedWriter bw = new BufferedWriter(caw, 12);
46 String str = "I used to live right behind this super-cool bar in\n" +
47 "Chicago called Lounge Ax. They have the best music of pretty\n" +
48 "much anyplace in town with a great atmosphere and $1 Huber\n" +
49 "on tap. I go to tons of shows there, even though I moved.\n";
51 boolean passed = true;
53 char[] buf = new char[str.length()];
54 str.getChars(0, str.length(), buf, 0);
56 bw.write(buf, 0, 5);
57 if (caw.toCharArray().length != 0)
59 passed = false;
60 System.out.println("CharArrayWriter has too many bytes #1");
62 bw.write(buf, 5, 8);
63 bw.write(buf, 13, 12);
64 bw.write(buf[25]);
65 bw.write(buf, 26, buf.length - 26);
66 bw.close();
68 String str2 = new String(caw.toCharArray());
69 if (!str.equals(str2))
71 passed = false;
72 System.out.println("Unexpected string: " + str2);
75 if (passed)
76 System.out.println("PASSED: Write Tests");
77 else
78 System.out.println("FAILED: Write Tests");
80 catch(IOException e)
82 System.out.println("FAILED: Write Tests: " + e);
85 System.out.println("Finished test of BufferedOutputStream and ByteArrayOutputStream");
88 } // class BufferedByteOutputStreamTest