1
0
Fork 0
composer/tests/Composer/Test/Util/ProcessExecutorTest.php

225 lines
8.6 KiB
PHP
Raw Normal View History

2012-01-22 19:08:29 +00:00
<?php
/*
* This file is part of Composer.
*
* (c) Nils Adermann <naderman@naderman.de>
* Jordi Boggiano <j.boggiano@seld.be>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Composer\Test\Util;
use Composer\IO\ConsoleIO;
2012-01-22 19:08:29 +00:00
use Composer\Util\ProcessExecutor;
use Composer\Test\TestCase;
2016-06-21 10:01:09 +00:00
use Composer\IO\BufferIO;
use React\Promise\Promise;
use Symfony\Component\Console\Helper\HelperSet;
use Symfony\Component\Console\Input\ArrayInput;
use Symfony\Component\Console\Output\BufferedOutput;
use Symfony\Component\Console\Output\OutputInterface;
2016-06-21 10:01:09 +00:00
use Symfony\Component\Console\Output\StreamOutput;
2012-01-22 19:08:29 +00:00
class ProcessExecutorTest extends TestCase
{
public function testExecuteCapturesOutput()
{
$process = new ProcessExecutor;
$process->execute('echo foo', $output);
$this->assertEquals("foo".PHP_EOL, $output);
}
public function testExecuteOutputsIfNotCaptured()
{
$process = new ProcessExecutor;
ob_start();
$process->execute('echo foo');
$output = ob_get_clean();
$this->assertEquals("foo".PHP_EOL, $output);
}
public function testUseIOIsNotNullAndIfNotCaptured()
{
$io = $this->getMockBuilder('Composer\IO\IOInterface')->getMock();
$io->expects($this->once())
2020-01-14 15:27:16 +00:00
->method('writeRaw')
2016-12-06 15:03:03 +00:00
->with($this->equalTo('foo'.PHP_EOL), false);
$process = new ProcessExecutor($io);
$process->execute('echo foo');
}
public function testExecuteCapturesStderr()
{
$process = new ProcessExecutor;
$process->execute('cat foo', $output);
$this->assertNotNull($process->getErrorOutput());
}
public function testTimeout()
{
ProcessExecutor::setTimeout(1);
$process = new ProcessExecutor;
$this->assertEquals(1, $process->getTimeout());
ProcessExecutor::setTimeout(60);
}
2019-06-23 17:59:36 +00:00
/**
* @dataProvider hidePasswordProvider
2021-10-27 14:18:46 +00:00
*
* @param string $command
* @param string $expectedCommandOutput
2019-06-23 17:59:36 +00:00
*/
public function testHidePasswords($command, $expectedCommandOutput)
2016-06-21 10:01:09 +00:00
{
$process = new ProcessExecutor($buffer = new BufferIO('', StreamOutput::VERBOSITY_DEBUG));
2019-06-23 17:59:36 +00:00
$process->execute($command, $output);
$this->assertEquals('Executing command (CWD): ' . $expectedCommandOutput, trim($buffer->getOutput()));
}
public function hidePasswordProvider()
{
return array(
array('echo https://foo:bar@example.org/', 'echo https://foo:***@example.org/'),
array('echo http://foo@example.org', 'echo http://foo@example.org'),
array('echo http://abcdef1234567890234578:x-oauth-token@github.com/', 'echo http://***:***@github.com/'),
array("svn ls --verbose --non-interactive --username 'foo' --password 'bar' 'https://foo.example.org/svn/'", "svn ls --verbose --non-interactive --username 'foo' --password '***' 'https://foo.example.org/svn/'"),
array("svn ls --verbose --non-interactive --username 'foo' --password 'bar \'bar' 'https://foo.example.org/svn/'", "svn ls --verbose --non-interactive --username 'foo' --password '***' 'https://foo.example.org/svn/'"),
);
2016-06-21 10:01:09 +00:00
}
2016-09-27 12:45:19 +00:00
public function testDoesntHidePorts()
{
$process = new ProcessExecutor($buffer = new BufferIO('', StreamOutput::VERBOSITY_DEBUG));
$process->execute('echo https://localhost:1234/', $output);
$this->assertEquals('Executing command (CWD): echo https://localhost:1234/', trim($buffer->getOutput()));
}
2012-01-22 19:08:29 +00:00
public function testSplitLines()
{
$process = new ProcessExecutor;
$this->assertEquals(array(), $process->splitLines(''));
$this->assertEquals(array(), $process->splitLines(null));
$this->assertEquals(array('foo'), $process->splitLines('foo'));
$this->assertEquals(array('foo', 'bar'), $process->splitLines("foo\nbar"));
$this->assertEquals(array('foo', 'bar'), $process->splitLines("foo\r\nbar"));
2013-06-19 07:43:02 +00:00
$this->assertEquals(array('foo', 'bar'), $process->splitLines("foo\r\nbar\n"));
2012-01-22 19:08:29 +00:00
}
public function testConsoleIODoesNotFormatSymfonyConsoleStyle()
{
$output = new BufferedOutput(OutputInterface::VERBOSITY_NORMAL, true);
2020-01-13 12:45:04 +00:00
$process = new ProcessExecutor(new ConsoleIO(new ArrayInput(array()), $output, new HelperSet(array())));
$process->execute('php -ddisplay_errors=0 -derror_reporting=0 -r "echo \'<error>foo</error>\'.PHP_EOL;"');
$this->assertSame('<error>foo</error>'.PHP_EOL, $output->fetch());
}
public function testExecuteAsyncCancel()
{
$process = new ProcessExecutor($buffer = new BufferIO('', StreamOutput::VERBOSITY_DEBUG));
$process->enableAsync();
2020-10-16 09:23:03 +00:00
$start = microtime(true);
/** @var Promise $promise */
2020-10-16 09:23:03 +00:00
$promise = $process->executeAsync('sleep 2');
2020-11-22 13:48:56 +00:00
$this->assertEquals(1, $process->countActiveJobs());
$promise->cancel();
2020-11-22 13:48:56 +00:00
$this->assertEquals(0, $process->countActiveJobs());
2020-10-16 09:23:03 +00:00
$end = microtime(true);
$this->assertTrue($end - $start < 0.5, 'Canceling took longer than it should, lasted '.($end - $start));
}
2021-10-13 20:12:54 +00:00
2021-10-08 18:55:35 +00:00
/**
* Test various arguments are escaped as expected
*
* @dataProvider dataEscapeArguments
2021-10-27 14:18:46 +00:00
*
* @param string|false|null $argument
* @param string $win
* @param string $unix
2021-10-08 18:55:35 +00:00
*/
public function testEscapeArgument($argument, $win, $unix)
{
$expected = defined('PHP_WINDOWS_VERSION_BUILD') ? $win : $unix;
$this->assertSame($expected, ProcessExecutor::escape($argument));
}
/**
* Each named test is an array of:
* argument, win-expected, unix-expected
*/
public function dataEscapeArguments()
{
return array(
// empty argument - must be quoted
2021-10-27 14:18:24 +00:00
'empty' => array('', '""', "''"),
2021-10-08 18:55:35 +00:00
// null argument - must be quoted
2021-10-27 14:18:24 +00:00
'empty null' => array(null, '""', "''"),
2021-10-08 18:55:35 +00:00
// false argument - must be quoted
2021-10-27 14:18:24 +00:00
'empty false' => array(false, '""', "''"),
2021-10-08 18:55:35 +00:00
// unix single-quote must be escaped
2021-10-27 14:18:24 +00:00
'unix-sq' => array("a'bc", "a'bc", "'a'\\''bc'"),
2021-10-08 18:55:35 +00:00
2021-10-13 13:49:18 +00:00
// new lines must be replaced
2021-10-27 14:18:24 +00:00
'new lines' => array("a\nb\nc", '"a b c"', "'a\nb\nc'"),
2021-10-08 18:55:35 +00:00
// whitespace <space> must be quoted
2021-10-27 14:18:24 +00:00
'ws space' => array('a b c', '"a b c"', "'a b c'"),
2021-10-08 18:55:35 +00:00
// whitespace <tab> must be quoted
2021-10-27 14:18:24 +00:00
'ws tab' => array("a\tb\tc", "\"a\tb\tc\"", "'a\tb\tc'"),
2021-10-08 18:55:35 +00:00
// no whitespace must not be quoted
2021-10-27 14:18:24 +00:00
'no-ws' => array('abc', 'abc', "'abc'"),
2021-10-08 18:55:35 +00:00
// double-quotes must be backslash-escaped
2021-10-27 14:18:24 +00:00
'dq' => array('a"bc', 'a\^"bc', "'a\"bc'"),
2021-10-08 18:55:35 +00:00
// double-quotes must be backslash-escaped with preceeding backslashes doubled
2021-10-27 14:18:24 +00:00
'dq-bslash' => array('a\\"bc', 'a\\\\\^"bc', "'a\\\"bc'"),
2021-10-08 18:55:35 +00:00
// backslashes not preceeding a double-quote are treated as literal
2021-10-27 14:18:24 +00:00
'bslash' => array('ab\\\\c\\', 'ab\\\\c\\', "'ab\\\\c\\'"),
2021-10-08 18:55:35 +00:00
// trailing backslashes must be doubled up when the argument is quoted
2021-10-27 14:18:24 +00:00
'bslash dq' => array('a b c\\\\', '"a b c\\\\\\\\"', "'a b c\\\\'"),
2021-10-08 18:55:35 +00:00
// meta: outer double-quotes must be caret-escaped as well
2021-10-27 14:18:24 +00:00
'meta dq' => array('a "b" c', '^"a \^"b\^" c^"', "'a \"b\" c'"),
2021-10-08 18:55:35 +00:00
// meta: percent expansion must be caret-escaped
2021-10-27 14:18:24 +00:00
'meta-pc1' => array('%path%', '^%path^%', "'%path%'"),
2021-10-08 18:55:35 +00:00
// meta: expansion must have two percent characters
2021-10-27 14:18:24 +00:00
'meta-pc2' => array('%path', '%path', "'%path'"),
2021-10-08 18:55:35 +00:00
// meta: expansion must have have two surrounding percent characters
2021-10-27 14:18:24 +00:00
'meta-pc3' => array('%%path', '%%path', "'%%path'"),
2021-10-08 18:55:35 +00:00
// meta: bang expansion must be double caret-escaped
2021-10-27 14:18:24 +00:00
'meta-bang1' => array('!path!', '^^!path^^!', "'!path!'"),
2021-10-08 18:55:35 +00:00
// meta: bang expansion must have two bang characters
2021-10-27 14:18:24 +00:00
'meta-bang2' => array('!path', '!path', "'!path'"),
2021-10-08 18:55:35 +00:00
// meta: bang expansion must have two surrounding ang characters
2021-10-27 14:18:24 +00:00
'meta-bang3' => array('!!path', '!!path', "'!!path'"),
2021-10-08 18:55:35 +00:00
// meta: caret-escaping must escape all other meta chars (triggered by double-quote)
2021-10-27 14:18:24 +00:00
'meta-all-dq' => array('<>"&|()^', '^<^>\^"^&^|^(^)^^', "'<>\"&|()^'"),
2021-10-08 18:55:35 +00:00
// other meta: no caret-escaping when whitespace in argument
2021-10-27 14:18:24 +00:00
'other meta' => array('<> &| ()^', '"<> &| ()^"', "'<> &| ()^'"),
2021-10-08 18:55:35 +00:00
// other meta: quote escape chars when no whitespace in argument
2021-10-27 14:18:24 +00:00
'other-meta' => array('<>&|()^', '"<>&|()^"', "'<>&|()^'"),
2021-10-08 18:55:35 +00:00
);
}
2012-01-22 19:08:29 +00:00
}