| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586 | <?phpdeclare(strict_types=1);namespace ZipStreamTest;use org\bovigo\vfs\vfsStream;use GuzzleHttp\Psr7\Response;use PHPUnit\Framework\TestCase;use ZipStream\File;use ZipStream\Option\Archive as ArchiveOptions;use ZipStream\Option\File as FileOptions;use ZipStream\Option\Method;use ZipStream\ZipStream;/** * Test Class for the Main ZipStream CLass */class ZipStreamTest extends TestCase{    const OSX_ARCHIVE_UTILITY =        '/System/Library/CoreServices/Applications/Archive Utility.app/Contents/MacOS/Archive Utility';    public function testFileNotFoundException(): void    {        $this->expectException(\ZipStream\Exception\FileNotFoundException::class);        // Get ZipStream Object        $zip = new ZipStream();        // Trigger error by adding a file which doesn't exist        $zip->addFileFromPath('foobar.php', '/foo/bar/foobar.php');    }    public function testFileNotReadableException(): void    {        // create new virtual filesystem        $root = vfsStream::setup('vfs');        // create a virtual file with no permissions        $file = vfsStream::newFile('foo.txt', 0000)->at($root)->setContent('bar');        $zip = new ZipStream();        $this->expectException(\ZipStream\Exception\FileNotReadableException::class);        $zip->addFileFromPath('foo.txt', $file->url());    }    public function testDostime(): void    {        // Allows testing of protected method        $class = new \ReflectionClass(File::class);        $method = $class->getMethod('dostime');        $method->setAccessible(true);        $this->assertSame($method->invoke(null, 1416246368), 1165069764);        // January 1 1980 - DOS Epoch.        $this->assertSame($method->invoke(null, 315532800), 2162688);        // January 1 1970 -> January 1 1980 due to minimum DOS Epoch.  @todo Throw Exception?        $this->assertSame($method->invoke(null, 0), 2162688);    }    public function testAddFile(): void    {        [$tmp, $stream] = $this->getTmpFileStream();        $options = new ArchiveOptions();        $options->setOutputStream($stream);        $zip = new ZipStream(null, $options);        $zip->addFile('sample.txt', 'Sample String Data');        $zip->addFile('test/sample.txt', 'More Simple Sample Data');        $zip->finish();        fclose($stream);        $tmpDir = $this->validateAndExtractZip($tmp);        $files = $this->getRecursiveFileList($tmpDir);        $this->assertEquals(['sample.txt', 'test/sample.txt'], $files);        $this->assertStringEqualsFile($tmpDir . '/sample.txt', 'Sample String Data');        $this->assertStringEqualsFile($tmpDir . '/test/sample.txt', 'More Simple Sample Data');    }    /**     * @return array     */    protected function getTmpFileStream(): array    {        $tmp = tempnam(sys_get_temp_dir(), 'zipstreamtest');        $stream = fopen($tmp, 'wb+');        return array($tmp, $stream);    }    /**     * @param string $tmp     * @return string     */    protected function validateAndExtractZip($tmp): string    {        $tmpDir = $this->getTmpDir();        $zipArch = new \ZipArchive;        $res = $zipArch->open($tmp);        if ($res !== true) {            $this->fail("Failed to open {$tmp}. Code: $res");            return $tmpDir;        }        $this->assertEquals(0, $zipArch->status);        $this->assertEquals(0, $zipArch->statusSys);        $zipArch->extractTo($tmpDir);        $zipArch->close();        return $tmpDir;    }    protected function getTmpDir(): string    {        $tmp = tempnam(sys_get_temp_dir(), 'zipstreamtest');        unlink($tmp);        mkdir($tmp) or $this->fail('Failed to make directory');        return $tmp;    }    /**     * @param string $path     * @return string[]     */    protected function getRecursiveFileList(string $path): array    {        $data = array();        $path = (string)realpath($path);        $files = new \RecursiveIteratorIterator(new \RecursiveDirectoryIterator($path));        $pathLen = strlen($path);        foreach ($files as $file) {            $filePath = $file->getRealPath();            if (!is_dir($filePath)) {                $data[] = substr($filePath, $pathLen + 1);            }        }        sort($data);        return $data;    }    public function testAddFileUtf8NameComment(): void    {        [$tmp, $stream] = $this->getTmpFileStream();        $options = new ArchiveOptions();        $options->setOutputStream($stream);        $zip = new ZipStream(null, $options);        $name = 'árvíztűrő tükörfúrógép.txt';        $content = 'Sample String Data';        $comment =            'Filename has every special characters ' .            'from Hungarian language in lowercase. ' .            'In uppercase: ÁÍŰŐÜÖÚÓÉ';        $fileOptions = new FileOptions();        $fileOptions->setComment($comment);        $zip->addFile($name, $content, $fileOptions);        $zip->finish();        fclose($stream);        $tmpDir = $this->validateAndExtractZip($tmp);        $files = $this->getRecursiveFileList($tmpDir);        $this->assertEquals(array($name), $files);        $this->assertStringEqualsFile($tmpDir . '/' . $name, $content);        $zipArch = new \ZipArchive();        $zipArch->open($tmp);        $this->assertEquals($comment, $zipArch->getCommentName($name));    }    public function testAddFileUtf8NameNonUtfComment(): void    {        $this->expectException(\ZipStream\Exception\EncodingException::class);        $stream = $this->getTmpFileStream()[1];        $options = new ArchiveOptions();        $options->setOutputStream($stream);        $zip = new ZipStream(null, $options);        $name = 'á.txt';        $content = 'any';        $comment = 'á';        $fileOptions = new FileOptions();        $fileOptions->setComment(mb_convert_encoding($comment, 'ISO-8859-2', 'UTF-8'));        $zip->addFile($name, $content, $fileOptions);    }    public function testAddFileNonUtf8NameUtfComment(): void    {        $this->expectException(\ZipStream\Exception\EncodingException::class);        $stream = $this->getTmpFileStream()[1];        $options = new ArchiveOptions();        $options->setOutputStream($stream);        $zip = new ZipStream(null, $options);        $name = 'á.txt';        $content = 'any';        $comment = 'á';        $fileOptions = new FileOptions();        $fileOptions->setComment($comment);        $zip->addFile(mb_convert_encoding($name, 'ISO-8859-2', 'UTF-8'), $content, $fileOptions);    }    public function testAddFileWithStorageMethod(): void    {        [$tmp, $stream] = $this->getTmpFileStream();        $options = new ArchiveOptions();        $options->setOutputStream($stream);        $zip = new ZipStream(null, $options);        $fileOptions = new FileOptions();        $fileOptions->setMethod(Method::STORE());        $zip->addFile('sample.txt', 'Sample String Data', $fileOptions);        $zip->addFile('test/sample.txt', 'More Simple Sample Data');        $zip->finish();        fclose($stream);        $zipArch = new \ZipArchive();        $zipArch->open($tmp);        $sample1 = $zipArch->statName('sample.txt');        $sample12 = $zipArch->statName('test/sample.txt');        $this->assertEquals($sample1['comp_method'], Method::STORE);        $this->assertEquals($sample12['comp_method'], Method::DEFLATE);        $zipArch->close();    }    public function testDecompressFileWithMacUnarchiver(): void    {        if (!file_exists(self::OSX_ARCHIVE_UTILITY)) {            $this->markTestSkipped('The Mac OSX Archive Utility is not available.');        }        [$tmp, $stream] = $this->getTmpFileStream();        $options = new ArchiveOptions();        $options->setOutputStream($stream);        $zip = new ZipStream(null, $options);        $folder = uniqid('', true);        $zip->addFile($folder . '/sample.txt', 'Sample Data');        $zip->finish();        fclose($stream);        exec(escapeshellarg(self::OSX_ARCHIVE_UTILITY) . ' ' . escapeshellarg($tmp), $output, $returnStatus);        $this->assertEquals(0, $returnStatus);        $this->assertCount(0, $output);        $this->assertFileExists(dirname($tmp) . '/' . $folder . '/sample.txt');        $this->assertStringEqualsFile(dirname($tmp) . '/' . $folder . '/sample.txt', 'Sample Data');    }    public function testAddFileFromPath(): void    {        [$tmp, $stream] = $this->getTmpFileStream();        $options = new ArchiveOptions();        $options->setOutputStream($stream);        $zip = new ZipStream(null, $options);        [$tmpExample, $streamExample] = $this->getTmpFileStream();        fwrite($streamExample, 'Sample String Data');        fclose($streamExample);        $zip->addFileFromPath('sample.txt', $tmpExample);        [$tmpExample, $streamExample] = $this->getTmpFileStream();        fwrite($streamExample, 'More Simple Sample Data');        fclose($streamExample);        $zip->addFileFromPath('test/sample.txt', $tmpExample);        $zip->finish();        fclose($stream);        $tmpDir = $this->validateAndExtractZip($tmp);        $files = $this->getRecursiveFileList($tmpDir);        $this->assertEquals(array('sample.txt', 'test/sample.txt'), $files);        $this->assertStringEqualsFile($tmpDir . '/sample.txt', 'Sample String Data');        $this->assertStringEqualsFile($tmpDir . '/test/sample.txt', 'More Simple Sample Data');    }    public function testAddFileFromPathWithStorageMethod(): void    {        [$tmp, $stream] = $this->getTmpFileStream();        $options = new ArchiveOptions();        $options->setOutputStream($stream);        $zip = new ZipStream(null, $options);        $fileOptions = new FileOptions();        $fileOptions->setMethod(Method::STORE());        [$tmpExample, $streamExample] = $this->getTmpFileStream();        fwrite($streamExample, 'Sample String Data');        fclose($streamExample);        $zip->addFileFromPath('sample.txt', $tmpExample, $fileOptions);        [$tmpExample, $streamExample] = $this->getTmpFileStream();        fwrite($streamExample, 'More Simple Sample Data');        fclose($streamExample);        $zip->addFileFromPath('test/sample.txt', $tmpExample);        $zip->finish();        fclose($stream);        $zipArch = new \ZipArchive();        $zipArch->open($tmp);        $sample1 = $zipArch->statName('sample.txt');        $this->assertEquals(Method::STORE, $sample1['comp_method']);        $sample2 = $zipArch->statName('test/sample.txt');        $this->assertEquals(Method::DEFLATE, $sample2['comp_method']);        $zipArch->close();    }    public function testAddLargeFileFromPath(): void    {        $methods = [Method::DEFLATE(), Method::STORE()];        $falseTrue = [false, true];        foreach ($methods as $method) {            foreach ($falseTrue as $zeroHeader) {                foreach ($falseTrue as $zip64) {                    if ($zeroHeader && $method->equals(Method::DEFLATE())) {                        continue;                    }                    $this->addLargeFileFileFromPath($method, $zeroHeader, $zip64);                }            }        }    }    protected function addLargeFileFileFromPath($method, $zeroHeader, $zip64): void    {        [$tmp, $stream] = $this->getTmpFileStream();        $options = new ArchiveOptions();        $options->setOutputStream($stream);        $options->setLargeFileMethod($method);        $options->setLargeFileSize(5);        $options->setZeroHeader($zeroHeader);        $options->setEnableZip64($zip64);        $zip = new ZipStream(null, $options);        [$tmpExample, $streamExample] = $this->getTmpFileStream();        for ($i = 0; $i <= 10000; $i++) {            fwrite($streamExample, sha1((string)$i));            if ($i % 100 === 0) {                fwrite($streamExample, "\n");            }        }        fclose($streamExample);        $shaExample = sha1_file($tmpExample);        $zip->addFileFromPath('sample.txt', $tmpExample);        unlink($tmpExample);        $zip->finish();        fclose($stream);        $tmpDir = $this->validateAndExtractZip($tmp);        $files = $this->getRecursiveFileList($tmpDir);        $this->assertEquals(array('sample.txt'), $files);        $this->assertEquals(sha1_file($tmpDir . '/sample.txt'), $shaExample, "SHA-1 Mismatch Method: {$method}");    }    public function testAddFileFromStream(): void    {        [$tmp, $stream] = $this->getTmpFileStream();        $options = new ArchiveOptions();        $options->setOutputStream($stream);        $zip = new ZipStream(null, $options);        // In this test we can't use temporary stream to feed data        // because zlib.deflate filter gives empty string before PHP 7        // it works fine with file stream        $streamExample = fopen(__FILE__, 'rb');        $zip->addFileFromStream('sample.txt', $streamExample);//        fclose($streamExample);        $fileOptions = new FileOptions();        $fileOptions->setMethod(Method::STORE());        $streamExample2 = fopen('php://temp', 'wb+');        fwrite($streamExample2, 'More Simple Sample Data');        rewind($streamExample2); // move the pointer back to the beginning of file.        $zip->addFileFromStream('test/sample.txt', $streamExample2, $fileOptions);//        fclose($streamExample2);        $zip->finish();        fclose($stream);        $tmpDir = $this->validateAndExtractZip($tmp);        $files = $this->getRecursiveFileList($tmpDir);        $this->assertEquals(array('sample.txt', 'test/sample.txt'), $files);        $this->assertStringEqualsFile(__FILE__, file_get_contents($tmpDir . '/sample.txt'));        $this->assertStringEqualsFile($tmpDir . '/test/sample.txt', 'More Simple Sample Data');    }    public function testAddFileFromStreamWithStorageMethod(): void    {        [$tmp, $stream] = $this->getTmpFileStream();        $options = new ArchiveOptions();        $options->setOutputStream($stream);        $zip = new ZipStream(null, $options);        $fileOptions = new FileOptions();        $fileOptions->setMethod(Method::STORE());        $streamExample = fopen('php://temp', 'wb+');        fwrite($streamExample, 'Sample String Data');        rewind($streamExample); // move the pointer back to the beginning of file.        $zip->addFileFromStream('sample.txt', $streamExample, $fileOptions);//        fclose($streamExample);        $streamExample2 = fopen('php://temp', 'bw+');        fwrite($streamExample2, 'More Simple Sample Data');        rewind($streamExample2); // move the pointer back to the beginning of file.        $zip->addFileFromStream('test/sample.txt', $streamExample2);//        fclose($streamExample2);        $zip->finish();        fclose($stream);        $zipArch = new \ZipArchive();        $zipArch->open($tmp);        $sample1 = $zipArch->statName('sample.txt');        $this->assertEquals(Method::STORE, $sample1['comp_method']);        $sample2 = $zipArch->statName('test/sample.txt');        $this->assertEquals(Method::DEFLATE, $sample2['comp_method']);        $zipArch->close();    }    public function testAddFileFromPsr7Stream(): void    {        [$tmp, $stream] = $this->getTmpFileStream();        $options = new ArchiveOptions();        $options->setOutputStream($stream);        $zip = new ZipStream(null, $options);        $body = 'Sample String Data';        $response = new Response(200, [], $body);        $fileOptions = new FileOptions();        $fileOptions->setMethod(Method::STORE());        $zip->addFileFromPsr7Stream('sample.json', $response->getBody(), $fileOptions);        $zip->finish();        fclose($stream);        $tmpDir = $this->validateAndExtractZip($tmp);        $files = $this->getRecursiveFileList($tmpDir);        $this->assertEquals(array('sample.json'), $files);        $this->assertStringEqualsFile($tmpDir . '/sample.json', $body);    }    public function testAddFileFromPsr7StreamWithFileSizeSet(): void    {        [$tmp, $stream] = $this->getTmpFileStream();        $options = new ArchiveOptions();        $options->setOutputStream($stream);        $zip = new ZipStream(null, $options);        $body = 'Sample String Data';        $fileSize = strlen($body);        // Add fake padding        $fakePadding = "\0\0\0\0\0\0";        $response = new Response(200, [], $body . $fakePadding);        $fileOptions = new FileOptions();        $fileOptions->setMethod(Method::STORE());        $fileOptions->setSize($fileSize);        $zip->addFileFromPsr7Stream('sample.json', $response->getBody(), $fileOptions);        $zip->finish();        fclose($stream);        $tmpDir = $this->validateAndExtractZip($tmp);        $files = $this->getRecursiveFileList($tmpDir);        $this->assertEquals(array('sample.json'), $files);        $this->assertStringEqualsFile($tmpDir . '/sample.json', $body);    }    public function testCreateArchiveWithFlushOptionSet(): void    {        [$tmp, $stream] = $this->getTmpFileStream();        $options = new ArchiveOptions();        $options->setOutputStream($stream);        $options->setFlushOutput(true);        $zip = new ZipStream(null, $options);        $zip->addFile('sample.txt', 'Sample String Data');        $zip->addFile('test/sample.txt', 'More Simple Sample Data');        $zip->finish();        fclose($stream);        $tmpDir = $this->validateAndExtractZip($tmp);        $files = $this->getRecursiveFileList($tmpDir);        $this->assertEquals(['sample.txt', 'test/sample.txt'], $files);        $this->assertStringEqualsFile($tmpDir . '/sample.txt', 'Sample String Data');        $this->assertStringEqualsFile($tmpDir . '/test/sample.txt', 'More Simple Sample Data');    }    public function testCreateArchiveWithOutputBufferingOffAndFlushOptionSet(): void    {        // WORKAROUND (1/2): remove phpunit's output buffer in order to run test without any buffering        ob_end_flush();        $this->assertEquals(0, ob_get_level());        [$tmp, $stream] = $this->getTmpFileStream();        $options = new ArchiveOptions();        $options->setOutputStream($stream);        $options->setFlushOutput(true);        $zip = new ZipStream(null, $options);        $zip->addFile('sample.txt', 'Sample String Data');        $zip->finish();        fclose($stream);        $tmpDir = $this->validateAndExtractZip($tmp);        $this->assertStringEqualsFile($tmpDir . '/sample.txt', 'Sample String Data');        // WORKAROUND (2/2): add back output buffering so that PHPUnit doesn't complain that it is missing        ob_start();    }}
 |