Initial load
diff --git a/test/java/io/LineNumberInputStream/Available.java b/test/java/io/LineNumberInputStream/Available.java
new file mode 100644
index 0000000..f44057a
--- /dev/null
+++ b/test/java/io/LineNumberInputStream/Available.java
@@ -0,0 +1,69 @@
+/*
+ * Copyright 1997 Sun Microsystems, Inc. All Rights Reserved.
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * This code is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License version 2 only, as
+ * published by the Free Software Foundation.
+ *
+ * This code 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
+ * version 2 for more details (a copy is included in the LICENSE file that
+ * accompanied this code).
+ *
+ * You should have received a copy of the GNU General Public License version
+ * 2 along with this work; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+ *
+ * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
+ * CA 95054 USA or visit www.sun.com if you need additional information or
+ * have any questions.
+ */
+
+/* @test
+ @bug 1238944
+ @summary Check for correct implementation of LineNumberInputStream.available
+ */
+
+import java.io.*;
+
+
+public class Available {
+
+ static void check(int a, int bound) throws Exception {
+ if (a > bound) {
+ throw new Exception("Available returned " + a + " > " + bound);
+ }
+ }
+
+ public static void main(String args[]) throws Exception {
+ LineNumberInputStream in = new LineNumberInputStream(new MyInStream());
+ check(in.available(), 5);
+ in.read();
+ in.read();
+ check(in.available(), 4);
+ in.read();
+ in.read();
+ in.read();
+ check(in.available(), 2);
+ }
+
+}
+
+
+class MyInStream extends InputStream {
+
+ char[] buf = {'a', 'b', 'c', 'd', '\n',
+ 'e', 'f', '\r', '\n', 'g'};
+ int ctr = 0;
+
+ public int read() {
+ return ((ctr == 12) ? -1 : (int)buf[ctr++]);
+ }
+
+ public int available() {
+ return (10 - ctr);
+ }
+
+}
diff --git a/test/java/io/LineNumberInputStream/MarkReset.java b/test/java/io/LineNumberInputStream/MarkReset.java
new file mode 100644
index 0000000..61779be
--- /dev/null
+++ b/test/java/io/LineNumberInputStream/MarkReset.java
@@ -0,0 +1,47 @@
+/*
+ * Copyright 1998 Sun Microsystems, Inc. All Rights Reserved.
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * This code is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License version 2 only, as
+ * published by the Free Software Foundation.
+ *
+ * This code 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
+ * version 2 for more details (a copy is included in the LICENSE file that
+ * accompanied this code).
+ *
+ * You should have received a copy of the GNU General Public License version
+ * 2 along with this work; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+ *
+ * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
+ * CA 95054 USA or visit www.sun.com if you need additional information or
+ * have any questions.
+ */
+
+/* @test
+ @bug 4017159
+ @summary Check if mark and reset of LineNumberInputStream works
+ correctly.
+ */
+
+import java.io.*;
+
+public class MarkReset {
+
+ public static void main(String[] args) throws Exception {
+ LineNumberInputStream in = new
+ LineNumberInputStream(new StringBufferInputStream("\rabcd"));
+
+ in.read();
+ in.mark(100);
+ int b1 = in.read();
+ in.reset();
+ int b2 = in.read();
+
+ if(b1 != b2)
+ throw new Exception("Read Wrong bytes: Expected " + b1 + " got " + b2);
+ }
+}
diff --git a/test/java/io/LineNumberInputStream/Skip.java b/test/java/io/LineNumberInputStream/Skip.java
new file mode 100644
index 0000000..0467179
--- /dev/null
+++ b/test/java/io/LineNumberInputStream/Skip.java
@@ -0,0 +1,102 @@
+/*
+ * Copyright 1997 Sun Microsystems, Inc. All Rights Reserved.
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * This code is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License version 2 only, as
+ * published by the Free Software Foundation.
+ *
+ * This code 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
+ * version 2 for more details (a copy is included in the LICENSE file that
+ * accompanied this code).
+ *
+ * You should have received a copy of the GNU General Public License version
+ * 2 along with this work; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+ *
+ * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
+ * CA 95054 USA or visit www.sun.com if you need additional information or
+ * have any questions.
+ */
+
+
+/* @test
+ @bug 4085939
+ @summary Check for the correct behaviour of LineNumberInputStream.skip
+ */
+
+import java.io.*;
+
+
+public class Skip{
+
+ private static void dotest(LineNumberInputStream in , int curpos ,
+ long total , long toskip , long expected)
+ throws Exception
+ {
+
+ try {
+
+ System.err.println("\n\nCurrently at pos = " + curpos +
+ "\nTotal bytes in the Stream = " + total +
+ "\nNumber of bytes to skip = " + toskip +
+ "\nNumber of bytes that should be skipped = " +
+ expected);
+
+ long skipped = in.skip(toskip);
+
+ System.err.println("actual number skipped: "+ skipped);
+
+ if ((skipped < 0) || (skipped > expected)) {
+ throw new RuntimeException("Unexpected number of bytes skipped");
+ }
+
+ } catch (IOException e) {
+ System.err.println("IOException is thrown - possible result");
+ } catch (Throwable e) {
+ throw new RuntimeException("Unexpected "+e+" is thrown!");
+ }
+
+ }
+
+ public static void main( String argv[] ) throws Exception {
+
+ LineNumberInputStream in = new LineNumberInputStream(new MyInputStream(11));
+
+ /* test for negative skip */
+ dotest(in, 0, 11, -23, 0);
+
+ /* check for skip beyond EOF starting from before EOF */
+ dotest(in, 0, 11, 20, 11);
+
+ /* check for skip after EOF */
+ dotest(in, -1, 11, 20, 0);
+
+ }
+
+}
+
+class MyInputStream extends InputStream {
+
+ private int readctr = 0;
+ private long endoffile;
+
+ public MyInputStream(long endoffile) {
+ this.endoffile = endoffile;
+ }
+
+ public int read() {
+
+ if (readctr == endoffile) {
+ return -1;
+ }
+ else {
+ readctr++;
+ return 0;
+ }
+ }
+
+ public int available() { return 0; }
+}
diff --git a/test/java/io/LineNumberInputStream/SkipEOL.java b/test/java/io/LineNumberInputStream/SkipEOL.java
new file mode 100644
index 0000000..af63981
--- /dev/null
+++ b/test/java/io/LineNumberInputStream/SkipEOL.java
@@ -0,0 +1,61 @@
+/*
+ * Copyright 1997 Sun Microsystems, Inc. All Rights Reserved.
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * This code is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License version 2 only, as
+ * published by the Free Software Foundation.
+ *
+ * This code 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
+ * version 2 for more details (a copy is included in the LICENSE file that
+ * accompanied this code).
+ *
+ * You should have received a copy of the GNU General Public License version
+ * 2 along with this work; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+ *
+ * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
+ * CA 95054 USA or visit www.sun.com if you need additional information or
+ * have any questions.
+ */
+
+/*
+ @test
+ @bug 4091810
+ @summary Test for correct CR/LF handling in LineNumberInputStream.skip
+ */
+
+import java.io.LineNumberInputStream;
+import java.io.ByteArrayInputStream;
+
+public class SkipEOL {
+
+ public static void main( String argv[] ) throws Exception {
+ byte[] data = {12, 13, 10, 23, 11, 13, 12, 10, 13};
+ byte[] expected = {12, 10, 23, 11, 10, 12, 10, 10};
+
+ LineNumberInputStream in =
+ new LineNumberInputStream(new ByteArrayInputStream(data));
+ long skipped = in.skip(3); // skip 3 bytes
+ if ((skipped == 3) && ((in.read()) != 11)) {
+ throw new
+ RuntimeException("LineNumberInputStream.skip - " +
+ "unexpected results!");
+ }
+
+ in = new LineNumberInputStream(new ByteArrayInputStream(data));
+ for (int i = 0; i < 8; i++) {
+ if (in.read() != expected[i]) {
+ throw new
+ RuntimeException("LineNumberInputStream.read - " +
+ "unexpected results!");
+ }
+ }
+
+ System.err.println("Test completed successfully");
+
+ }
+
+}