blob: 9e7786b72abf01e09a6a145da2a6ed27ea1965f2 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.commons.compress.compressors.z;
import org.junit.Assert;
import org.junit.Test;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.SequenceInputStream;
import java.util.Enumeration;
import org.apache.commons.compress.utils.IOUtils;
import static org.apache.commons.compress.AbstractTestCase.getFile;
import static org.mockito.Mockito.mock;
import static org.powermock.api.mockito.PowerMockito.doReturn;
/**
* Unit tests for class {@link ZCompressorInputStream}.
*
* @date 16.06.2017
* @see ZCompressorInputStream
**/
public class ZCompressorInputStreamTest {
@Test(expected = IOException.class)
public void testFailsToCreateZCompressorInputStreamAndThrowsIOException() throws IOException {
boolean java9 = false;
try {
Class.forName("java.lang.module.ModuleDescriptor");
java9 = true;
} catch (Exception ex) {
// not Java9
}
org.junit.Assume.assumeFalse("can't use PowerMock with Java9", java9);
Enumeration<SequenceInputStream> enumeration = (Enumeration<SequenceInputStream>) mock(Enumeration.class);
SequenceInputStream sequenceInputStream = new SequenceInputStream(enumeration);
ZCompressorInputStream zCompressorInputStream = null;
doReturn(false).when(enumeration).hasMoreElements();
zCompressorInputStream = new ZCompressorInputStream(sequenceInputStream);
}
@Test
public void singleByteReadConsistentlyReturnsMinusOneAtEof() throws IOException {
final File input = getFile("bla.tar.Z");
try (InputStream is = new FileInputStream(input)) {
final ZCompressorInputStream in =
new ZCompressorInputStream(is);
IOUtils.toByteArray(in);
Assert.assertEquals(-1, in.read());
Assert.assertEquals(-1, in.read());
in.close();
}
}
@Test
public void multiByteReadConsistentlyReturnsMinusOneAtEof() throws IOException {
final File input = getFile("bla.tar.Z");
byte[] buf = new byte[2];
try (InputStream is = new FileInputStream(input)) {
final ZCompressorInputStream in =
new ZCompressorInputStream(is);
IOUtils.toByteArray(in);
Assert.assertEquals(-1, in.read(buf));
Assert.assertEquals(-1, in.read(buf));
in.close();
}
}
}