File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / ext / standard / tests / file / bug22414.phpt
Revision 1.1.1.2 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Tue May 29 12:34:44 2012 UTC (12 years, 1 month ago) by misho
Branches: php, MAIN
CVS tags: v5_4_3elwix, v5_4_29p0, v5_4_29, v5_4_20p0, v5_4_20, v5_4_17p0, v5_4_17, HEAD
php 5.4.3+patches

--TEST--
Bug #22414 (passthru() does not read data correctly)
--INI--
output_handler=
--FILE--
<?php

	$php = getenv('TEST_PHP_EXECUTABLE');
	$tmpfile = tempnam(__DIR__, 'phpt');
	$args = ' -n ';
	
	/* Regular Data Test */
	passthru($php . $args . ' -r " echo \"HELLO\"; "');

	echo "\n";

	/* Binary Data Test */
	
	if (substr(PHP_OS, 0, 3) != 'WIN') {
		$cmd = $php . $args . ' -r \"readfile(@getenv(\'TEST_PHP_EXECUTABLE\')); \"';
		$cmd = $php . $args . ' -r \' passthru("'.$cmd.'"); \' > '.$tmpfile ;
	} else {
		$cmd = $php . $args . ' -r \"readfile(@getenv(\\\\\\"TEST_PHP_EXECUTABLE\\\\\\")); \"';
		$cmd = $php . $args . ' -r " passthru(\''.$cmd.'\');" > '.$tmpfile ;
	}
	exec($cmd);

	if (md5_file($php) == md5_file($tmpfile)) {
		echo "Works\n";
	} else {
		echo "Does not work\n";
	}
	
	@unlink($tmpfile);
?>
--EXPECT--
HELLO
Works

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>