diff options
author | Greg Beaver <cellog@php.net> | 2008-01-18 05:42:16 +0000 |
---|---|---|
committer | Greg Beaver <cellog@php.net> | 2008-01-18 05:42:16 +0000 |
commit | 7540adf0581064933077a128658d278ce6eba2d0 (patch) | |
tree | 2a1bdac10ff7573b49ed2d1746e9b387f00cefa0 /ext/phar/tests | |
parent | ad0ec9e7df5290886a63bf24a2eb976a10e04fd3 (diff) | |
download | php-git-7540adf0581064933077a128658d278ce6eba2d0.tar.gz |
major improvement:
the new default stub allows creation of phars that run identically
1) with Phar extension
2) without Phar extension
3) extracted to disk from the phar
this makes the default phar format quite interesting as it eliminates the only drawback of the extension
Diffstat (limited to 'ext/phar/tests')
-rw-r--r-- | ext/phar/tests/nophar.phar | bin | 0 -> 4773 bytes | |||
-rw-r--r-- | ext/phar/tests/nophar.phar.inc | 8 | ||||
-rw-r--r-- | ext/phar/tests/nophar.phpt | 14 | ||||
-rw-r--r-- | ext/phar/tests/phar_commitwrite.phpt | 181 | ||||
-rw-r--r-- | ext/phar/tests/phar_create_in_cwd.phpt | 5 | ||||
-rw-r--r-- | ext/phar/tests/withphar.phpt | 14 |
6 files changed, 217 insertions, 5 deletions
diff --git a/ext/phar/tests/nophar.phar b/ext/phar/tests/nophar.phar Binary files differnew file mode 100644 index 0000000000..e3235b28f6 --- /dev/null +++ b/ext/phar/tests/nophar.phar diff --git a/ext/phar/tests/nophar.phar.inc b/ext/phar/tests/nophar.phar.inc new file mode 100644 index 0000000000..78867f1a8c --- /dev/null +++ b/ext/phar/tests/nophar.phar.inc @@ -0,0 +1,8 @@ +<?php +$fname = dirname(__FILE__) . '/nophar.phar'; +@unlink($fname); +$p = new Phar($fname); +$p['index.php'] = '<?php include "b/c.php";' . "\n"; +$p['b/c.php'] = '<?php echo "in b\n";$a = fopen("index.php", "r", true);echo stream_get_contents($a);fclose($a);include dirname(__FILE__) . "/../d";'; +$p['d'] = "in d\n"; +?>
\ No newline at end of file diff --git a/ext/phar/tests/nophar.phpt b/ext/phar/tests/nophar.phpt new file mode 100644 index 0000000000..2b7af7ac63 --- /dev/null +++ b/ext/phar/tests/nophar.phpt @@ -0,0 +1,14 @@ +--TEST-- +Phar: phar run without pecl/phar with default stub +--SKIPIF-- +<?php if (extension_loaded("phar")) die("skip"); ?> +--FILE-- +<?php +include dirname(__FILE__) . '/nophar.phar'; +?> +===DONE=== +--EXPECT-- +in b +<?php include "b/c.php"; +in d +===DONE=== diff --git a/ext/phar/tests/phar_commitwrite.phpt b/ext/phar/tests/phar_commitwrite.phpt index 8a68e8e5c6..b1ad5cffda 100644 --- a/ext/phar/tests/phar_commitwrite.phpt +++ b/ext/phar/tests/phar_commitwrite.phpt @@ -26,10 +26,187 @@ var_dump($p->getStub()); --CLEAN-- <?php unlink(dirname(__FILE__) . '/brandnewphar.phar'); +__HALT_COMPILER(); ?> --EXPECT-- -string(29) "<?php __HALT_COMPILER(); ?> -" +string(4461) "<?php +if (in_array('phar', stream_get_wrappers()) && class_exists('Phar', 0)) { +Phar::interceptFileFuncs(); +include 'phar://' . __FILE__ . '/index.php'; +return; +} +class Extract_Phar +{ +static $tmp = array(); +static $origdir; +const GZ = 0x1000; +const BZ2 = 0x2000; +const MASK = 0x3000; +static function go($D) +{ +register_shutdown_function(array('Extract_Phar', '_removeTmpFiles')); +$fp = fopen(__FILE__, 'rb'); +fseek($fp, $D); +$L = unpack('V', fread($fp, 4)); +$m = ''; +do { +$read = 8192; +if ($L[1] - strlen($m) < 8192) { +$read = $L[1] - strlen($m); +} +$last = fread($fp, $read); +$m .= $last; +} while (strlen($last) && strlen($m) < $L[1]); +if (strlen($m) < $L[1]) { +die('ERROR: manifest length read was "' . +strlen($m) .'" should be "' . +$L[1] . '"'); +} +$info = self::_unpack($m); +$f = $info['c']; +if ($f & self::GZ) { +if (!function_exists('gzinflate')) { +die('Error: zlib extension is not enabled - gzinflate() function needed' . +' for compressed .phars'); +} +} +if ($f & self::BZ2) { +if (!function_exists('bzdecompress')) { +die('Error: bzip2 extension is not enabled - bzdecompress() function needed' . +' for compressed .phars'); +} +} +$temp = self::tmpdir(); +if (!$temp) { +$sessionpath = session_save_path(); +if (strpos ($sessionpath, ";") !== FALSE) +$sessionpath = substr ($sessionpath, strpos ($sessionpath, ";")+1); +if (!file_exists($sessionpath) && !is_dir($sessionpath)) { +die('Could not locate temporary directory to extract phar'); +} +$temp = $sessionpath; +} +$temp .= '/pharextract'; +if (!file_exists($temp)) { +@mkdir($temp); +$temp = realpath($temp); +self::$tmp[] = $temp; +} +self::$origdir = getcwd(); +foreach ($info['m'] as $path => $file) { +$a = !file_exists(dirname($temp . '/' . $path)); +@mkdir(dirname($temp . '/' . $path), 0777, true); +clearstatcache(); +if ($a) self::$tmp[] = realpath(dirname($temp . '/' . $path)); +if ($path[strlen($path) - 1] == '/') { +mkdir($temp . '/' . $path); +} else { +file_put_contents($temp . '/' . $path, self::extractFile($path, $file, $fp)); +} +self::$tmp[] = realpath($temp . '/' . $path); +} +chdir($temp); +include 'index.php'; +} + +static function tmpdir() +{ +if (strpos(PHP_OS, 'WIN') !== false) { +if ($var = isset($_ENV['TMP']) ? $_ENV['TMP'] : getenv('TMP')) { +return $var; +} +if ($var = isset($_ENV['TEMP']) ? $_ENV['TEMP'] : getenv('TEMP')) { +return $var; +} +if ($var = isset($_ENV['USERPROFILE']) ? $_ENV['USERPROFILE'] : @getenv('USERPROFILE')) { +return $var; +} +if ($var = isset($_ENV['windir']) ? $_ENV['windir'] : getenv('windir')) { +return $var; +} +return @getenv('SystemRoot') . ' emp'; +} +if ($var = isset($_ENV['TMPDIR']) ? $_ENV['TMPDIR'] : getenv('TMPDIR')) { +return $var; +} +return realpath('/tmp'); +} + +static function _unpack($m) +{ +$info = unpack('V', substr($m, 0, 4)); +// skip API version, phar flags, alias, metadata +$l = unpack('V', substr($m, 10, 4)); +$m = substr($m, 14 + $l[1]); +$s = unpack('V', substr($m, 0, 4)); +$o = 0; +$start = 4 + $s[1]; +$ret['c'] = 0; +for ($i = 0; $i < $info[1]; $i++) { +// length of the file name +$len = unpack('V', substr($m, $start, 4)); +$start += 4; +// file name +$savepath = substr($m, $start, $len[1]); +$start += $len[1]; +// retrieve manifest data: +// 0 = size, 1 = timestamp, 2 = compressed size, 3 = crc32, 4 = flags +// 5 = metadata length +$ret['m'][$savepath] = array_values(unpack('Va/Vb/Vc/Vd/Ve/Vf', substr($m, $start, 24))); +$ret['m'][$savepath][3] = sprintf('%u', $ret['m'][$savepath][3] +& 0xffffffff); +$ret['m'][$savepath][7] = $o; +$o += $ret['m'][$savepath][2]; +$start += 24 + $ret['m'][$savepath][5]; +$ret['c'] |= $ret['m'][$savepath][4] & self::MASK; +} +return $ret; +} + +static function extractFile($path, $entry, $fp) +{ +$data = ''; +$c = $entry[2]; +while ($c) { +if ($c < 8192) { +$data .= @fread($fp, $c); +$c = 0; +} else { +$c -= 8192; +$data .= @fread($fp, 8192); +} +} +if ($entry[4] & self::GZ) { +$data = gzinflate($data); +} elseif ($entry[4] & self::BZ2) { +$data = bzdecompress($data); +} +if (strlen($data) != $entry[0]) { +die("Not valid internal .phar file (size error " . strlen($data) . " != " . +$stat[7] . ")"); +} +if ($entry[3] != sprintf("%u", crc32($data) & 0xffffffff)) { +die("Not valid internal .phar file (checksum error)"); +} +return $data; +} + +static function _removeTmpFiles() +{ +// for removal of temp files +usort(self::$tmp, 'strnatcasecmp'); +array_reverse(self::$tmp, 1); +if (count(self::$tmp)) { +foreach (self::$tmp as $f) { +if (file_exists($f)) is_dir($f) ? @rmdir($f) : @unlink($f); +} + +} +chdir(self::$origdir); +} +} +Extract_Phar::go(4433); +__HALT_COMPILER(); ?>" string(200) "<?php function __autoload($class) { diff --git a/ext/phar/tests/phar_create_in_cwd.phpt b/ext/phar/tests/phar_create_in_cwd.phpt index 6308254810..86a211df1d 100644 --- a/ext/phar/tests/phar_create_in_cwd.phpt +++ b/ext/phar/tests/phar_create_in_cwd.phpt @@ -11,7 +11,7 @@ chdir(dirname(__FILE__)); try { $p = new Phar('brandnewphar.phar'); $p['file1.txt'] = 'hi'; - var_dump($p->getStub()); + var_dump(strlen($p->getStub())); $p->setStub("<?php function __autoload(\$class) { @@ -32,8 +32,7 @@ __HALT_COMPILER(); unlink(dirname(__FILE__) . '/brandnewphar.phar'); ?> --EXPECT-- -string(29) "<?php __HALT_COMPILER(); ?> -" +int(4461) string(200) "<?php function __autoload($class) { diff --git a/ext/phar/tests/withphar.phpt b/ext/phar/tests/withphar.phpt new file mode 100644 index 0000000000..b4c95e86c1 --- /dev/null +++ b/ext/phar/tests/withphar.phpt @@ -0,0 +1,14 @@ +--TEST-- +Phar: phar run with pecl/phar with default stub +--SKIPIF-- +<?php if (!extension_loaded("phar")) die("skip"); ?> +--FILE-- +<?php +include dirname(__FILE__) . '/nophar.phar'; +?> +===DONE=== +--EXPECT-- +in b +<?php include "b/c.php"; +in d +===DONE=== |