mirror of
https://github.com/php/php-src.git
synced 2025-08-20 09:24:05 +02:00
new test for corrupted tar with hard link to nowhere
This commit is contained in:
parent
3d858f4aa9
commit
1f6292e91d
1 changed files with 35 additions and 0 deletions
35
ext/phar/tests/tar/links2.phpt
Normal file
35
ext/phar/tests/tar/links2.phpt
Normal file
|
@ -0,0 +1,35 @@
|
|||
--TEST--
|
||||
Phar: tar with hard link to nowhere
|
||||
--SKIPIF--
|
||||
<?php if (!extension_loaded("phar")) die("skip"); ?>
|
||||
--FILE--
|
||||
<?php
|
||||
$fname = dirname(__FILE__) . '/' . basename(__FILE__, '.php') . '.tar';
|
||||
$pname = 'phar://' . $fname;
|
||||
|
||||
include dirname(__FILE__) . '/files/corrupt_tarmaker.php.inc';
|
||||
$a = new corrupt_tarmaker($fname, 'none');
|
||||
$a->init();
|
||||
$a->addFile('hardlink', 'internal/file.txt', array(
|
||||
'mode' => 0xA000 + 0644,
|
||||
'uid' => 0,
|
||||
'gid' => 0,
|
||||
'size' => 0,
|
||||
'mtime' => time(),
|
||||
));
|
||||
$a->close();
|
||||
|
||||
try {
|
||||
$p = new PharData($fname);
|
||||
} catch (Exception $e) {
|
||||
echo $e->getMessage() . "\n";
|
||||
}
|
||||
?>
|
||||
===DONE===
|
||||
--CLEAN--
|
||||
<?php
|
||||
unlink(dirname(__FILE__) . '/' . basename(__FILE__, '.clean.php') . '.tar');
|
||||
?>
|
||||
--EXPECTF--
|
||||
phar error: "%slinks2.tar" is a corrupted tar file - hard link to non-existent file "internal/file.txt"
|
||||
===DONE===
|
Loading…
Add table
Add a link
Reference in a new issue