-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathZipStreamOpenTest.php
88 lines (76 loc) · 2.29 KB
/
ZipStreamOpenTest.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<?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 PHPUnit\Framework\TestCase;
use PhpZip\Exception\InvalidArgumentException;
use PhpZip\Exception\ZipException;
use PhpZip\ZipFile;
/**
* Class ZipStreamOpenTest.
*
* @internal
*
* @medium
*/
class ZipStreamOpenTest extends TestCase
{
/**
* @dataProvider provideStreams
*
* @param resource $resource
* @param ?string $exceptionClass
* @param ?string $exceptionMessage
*
* @throws ZipException
*/
public function testOpenStream($resource, ?string $exceptionClass = null, ?string $exceptionMessage = null): void
{
if ($resource === null || $resource === false) {
static::markTestSkipped('skip resource');
}
if ($exceptionClass !== null) {
$this->expectException($exceptionClass);
$this->expectExceptionMessage($exceptionMessage);
}
static::assertIsResource($resource);
$zipFile = new ZipFile();
$zipFile->openFromStream($resource);
static::assertTrue(fclose($resource));
}
public function provideStreams(): array
{
return [
[@fopen(__DIR__ . '/resources/apk.zip', 'rb'), null, null],
[
@fopen(__DIR__, 'rb'),
InvalidArgumentException::class,
'Directory stream not supported',
],
[$this->getTempResource('php://temp'), null, null],
[$this->getTempResource('php://memory'), null, null],
[
@fopen('https://github.com/Ne-Lexa/php-zip/archive/master.zip', 'rb'),
InvalidArgumentException::class,
'The stream wrapper type "http" is not supported.',
],
];
}
/**
* @return resource
*/
private function getTempResource(string $filename)
{
$fp = fopen(__DIR__ . '/resources/apk.zip', 'rb');
$stream = fopen($filename, 'r+b');
stream_copy_to_stream($fp, $stream);
fclose($fp);
rewind($stream);
return $stream;
}
}