forked from Ne-Lexa/php-zip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIssue24Test.php
66 lines (56 loc) · 1.7 KB
/
Issue24Test.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<?php
declare(strict_types=1);
/*
* This file is part of the nelexa/zip package.
* (c) Ne-Lexa <https://github.com/Ne-Lexa/php-zip>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace PhpZip\Tests;
use PhpZip\Constants\ZipCompressionMethod;
use PhpZip\Exception\ZipException;
use PhpZip\Tests\Internal\DummyFileSystemStream;
use PhpZip\ZipFile;
/**
* @internal
*
* @small
*/
class Issue24Test extends ZipTestCase
{
public const PROTO_DUMMYFS = 'dummyfs';
/**
* This method is called before the first test of this test class is run.
*
* @noinspection PhpMissingParentCallCommonInspection
*/
public static function setUpBeforeClass(): void
{
stream_wrapper_register(self::PROTO_DUMMYFS, DummyFileSystemStream::class);
}
/**
* @throws ZipException
* @throws \Exception
*/
public function testDummyFS(): void
{
$fileContents = str_repeat(base64_encode(random_bytes(12000)), 100);
// create zip file
$zip = new ZipFile();
$zip->addFromString(
'file.txt',
$fileContents,
ZipCompressionMethod::DEFLATED
);
$zip->saveAsFile($this->outputFilename);
$zip->close();
static::assertCorrectZipArchive($this->outputFilename);
$uri = self::PROTO_DUMMYFS . '://localhost/' . $this->outputFilename;
$stream = fopen($uri, 'rb');
static::assertNotFalse($stream);
$zip->openFromStream($stream);
static::assertSame($zip->getListFiles(), ['file.txt']);
static::assertSame($zip['file.txt'], $fileContents);
$zip->close();
}
}