Annotation of embedaddon/php/ext/phar/tests/tar/rename.phpt, revision 1.1
1.1 ! misho 1: --TEST--
! 2: Phar: rename test tar-based
! 3: --SKIPIF--
! 4: <?php if (!extension_loaded("phar")) die("skip"); ?>
! 5: --INI--
! 6: phar.readonly=0
! 7: phar.require_hash=0
! 8: --FILE--
! 9: <?php
! 10: include dirname(__FILE__) . '/files/tarmaker.php.inc';
! 11: $fname = dirname(__FILE__) . '/' . basename(__FILE__, '.php') . '.phar.tar';
! 12: $alias = 'phar://' . $fname;
! 13:
! 14: $tar = new tarmaker($fname, 'none');
! 15: $tar->init();
! 16: $tar->addFile('.phar/stub.php', "<?php
! 17: Phar::mapPhar('hio');
! 18: __HALT_COMPILER(); ?>");
! 19:
! 20: $files = array();
! 21: $files['a'] = 'a';
! 22:
! 23: foreach ($files as $n => $file) {
! 24: $tar->addFile($n, $file);
! 25: }
! 26:
! 27: $tar->close();
! 28:
! 29: include $fname;
! 30:
! 31: echo file_get_contents($alias . '/a') . "\n";
! 32: rename($alias . '/a', $alias . '/b');
! 33: echo file_get_contents($alias . '/b') . "\n";
! 34: echo file_get_contents($alias . '/a') . "\n";
! 35: ?>
! 36: --CLEAN--
! 37: <?php unlink(dirname(__FILE__) . '/' . basename(__FILE__, '.clean.php') . '.phar.tar'); ?>
! 38: --EXPECTF--
! 39: a
! 40: a
! 41:
! 42: Warning: file_get_contents(phar://%srename.phar.tar/a): failed to open stream: phar error: "a" is not a file in phar "%srename.phar.tar" in %srename.php on line %d
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>