Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

8339154: Cleanups and JUnit conversion of test/jdk/java/util/zip/Available.java #20744

Closed
wants to merge 4 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
75 changes: 24 additions & 51 deletions test/jdk/java/util/zip/Available.java
Original file line number Diff line number Diff line change
@@ -32,6 +32,8 @@
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.params.ParameterizedTest;
import org.junit.jupiter.params.provider.ValueSource;

import java.io.*;
import java.nio.charset.StandardCharsets;
@@ -116,68 +118,39 @@ public void testZipInputStream() throws IOException {
}

/**
* Verify that ZipFileInputStream.available() returns
* the number of remaining uncompressed bytes.
* Verify that ZipFileInputStream|ZipFileInflaterInputStream.available()
* return the number of remaining uncompressed bytes.
*
* This verifies unspecified, but long-standing behavior. See 4401122.
*
* @throws IOException if an unexpected error occurs
*/
@Test
public void testZipFileInputStream() throws IOException {
try (ZipFile zfile = new ZipFile(zip.toFile())) {
assertRemainingUncompressedBytes(zfile, "stored.txt");
}
}

/**
* Verify that ZipFileInflaterInputStream.available() returns
* the number of remaining uncompressed bytes.
*
* This verifies unspecified, but long-standing behavior. See 4401122.
*
* @throws IOException if an unexpected error occurs
*/
@Test
public void testZipFileInflaterInputStream() throws IOException {
@ParameterizedTest
@ValueSource(strings = { "stored.txt", "deflated.txt" })
public void testZipFileStreamsRemainingBytes(String entryName) throws IOException {
try (ZipFile zfile = new ZipFile(zip.toFile())) {
assertRemainingUncompressedBytes(zfile, "deflated.txt");
}
}
ZipEntry entry = zfile.getEntry(entryName);
// Could be ZipFileInputStream or ZipFileInflaterInputStream
InputStream in = zfile.getInputStream(entry);

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could we collapse the two above tests via

@ParameterizedTest
@ValueSource(strings = { "stored.txt", "delated.txt" })
void testAvailbleRemainingBytes(iString zipEntry) {
    try (ZipFile zfile = new ZipFile(zip.toFile())) {
            assertRemainingUncompressedBytes(zfile, zipEntry);
        }
}

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I like it!

I collapsed ZipFile related tests into the method testZipFileStreamsRemainingBytes and inlined the assertRemainingUncompressedBytes method into that.

A few minor improvements to the inlined assertRemainingUncompressedBytes code body:

  • Added a comment saying that the InputStream could be ZipFileInputStream or ZipFileInflaterInputStream
  • Moved the "decrement by one" assertion logic into the loop, asserting decrement on each iteration
  • Cleaned up some spacing issues in the for loop

/**
* Assert that calling available() on a an InputStream obtained
* from ZipFile.getInputStream for the given entry
* returns the number of remaining uncompressed bytes in the stream.
*
* @param zfile the ZipFile to read an entry from
* @param name the name of the entry to read
* @throws IOException if an unexpected error occurs
*/
private void assertRemainingUncompressedBytes(ZipFile zfile, String name) throws IOException {
ZipEntry entry = zfile.getEntry(name);
InputStream in = zfile.getInputStream(entry);
int initialAvailable = in.available();

int initialAvailable = in.available();
// Initally, the number of remaining uncompressed bytes is the entry size
assertEquals(entry.getSize(), initialAvailable);

// Initally, the number of remaining uncompressed bytes is the entry size
assertEquals(entry.getSize(), in.available());
// Read all bytes one by one
for (int i = initialAvailable; i > 0; i--) {
// Reading a single byte should decrement available by 1
in.read();
assertEquals(i - 1, in.available(), "Available not decremented");
}

// Reading a single byte should decrement available by 1
in.read();
assertEquals(initialAvailable - 1, in.available(),
"Available not decremented");
// No remaining uncompressed bytes
assertEquals(0, in.available());

// Read all bytes one by one
for (int i=0; i < initialAvailable-1; i++) {
in.read();
// available() should still return 0 after close
in.close();
assertEquals(0, in.available());
}

// No remaining uncompressed bytes
assertEquals(0, in.available());

// available() should still return 0 after close
in.close();
assertEquals(0, in.available());
}
}