You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "Daniel Lowe (JIRA)" <ji...@apache.org> on 2012/10/01 20:55:12 UTC

[jira] [Created] (COMPRESS-205) Unit tests can fail when path to project is non-trivial (fix in description)

Daniel Lowe created COMPRESS-205:
------------------------------------

             Summary: Unit tests can fail when path to project is non-trivial (fix in description)
                 Key: COMPRESS-205
                 URL: https://issues.apache.org/jira/browse/COMPRESS-205
             Project: Commons Compress
          Issue Type: Bug
    Affects Versions: 1.5
            Reporter: Daniel Lowe
            Priority: Minor


return factory.createCompressorInputStream(new BufferedInputStream(new FileInputStream(new File(rsc.getFile()))));

can fail to find the files for testing e.g. /root/.jenkins/jobs/Commons%20Compress/workspace/target/test-classes/test.txt (No such file or directory)

This can be fixed by simply opening the stream from the URL:

    private CompressorInputStream getStreamFor(String resource)
            throws CompressorException, IOException {

        final URL rsc = classLoader.getResource(resource);
        assertNotNull("Could not find resource "+resource,rsc);
        return factory.createCompressorInputStream(
                   new BufferedInputStream(rsc.openStream()));
    }

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira