1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
|
<?php
namespace tests;
use PHPUnit\Framework\TestCase;
use mikehaertl\shellcommand\Command;
class BlockingCommandTest extends TestCase
{
// Create command from command string
public function testCanPassCommandStringToConstructor()
{
$command = new Command('/bin/ls -l');
$this->assertEquals('/bin/ls -l', $command->getExecCommand());
$this->assertNull($command->nonBlockingMode);
}
// Options
public function testCanSetOptions()
{
$command = new Command;
$command->setOptions(array(
'command' => 'echo',
'escapeArgs' => false,
'procEnv' => array('TESTVAR' => 'test'),
'args' => '-n $TESTVAR',
'nonBlockingMode' => false,
));
$this->assertFalse($command->nonBlockingMode);
$this->assertEquals('echo -n $TESTVAR', $command->getExecCommand());
$this->assertFalse($command->escapeArgs);
$this->assertFalse($command->getExecuted());
$this->assertTrue($command->execute());
$this->assertTrue($command->getExecuted());
$this->assertEquals('test', $command->getOutput());
}
public function testCanPassOptionsToConstructor()
{
$command = new Command(array(
'command' => 'echo',
'args' => '-n $TESTVAR',
'escapeArgs' => false,
'procEnv' => array('TESTVAR' => 'test'),
'nonBlockingMode' => false,
));
$this->assertFalse($command->nonBlockingMode);
$this->assertEquals('echo -n $TESTVAR', $command->getExecCommand());
$this->assertFalse($command->escapeArgs);
$this->assertFalse($command->getExecuted());
$this->assertTrue($command->execute());
$this->assertTrue($command->getExecuted());
$this->assertEquals('test', $command->getOutput());
}
public function testCanRunCommandWithArguments()
{
$command = new Command('ls');
$command->nonBlockingMode = false;
$command->addArg('-l');
$command->addArg('-n');
$this->assertEquals("ls '-l' '-n'", $command->getExecCommand());
$this->assertFalse($command->getExecuted());
$this->assertTrue($command->execute());
$this->assertTrue($command->getExecuted());
}
// Output / error / exit code
public function testCanRunValidCommand()
{
$dir = __DIR__;
$command = new Command("/bin/ls $dir/Command*");
$command->nonBlockingMode = false;
$this->assertFalse($command->getExecuted());
$this->assertTrue($command->execute());
$this->assertTrue($command->getExecuted());
$this->assertEquals("$dir/CommandTest.php", $command->getOutput());
$this->assertEquals("$dir/CommandTest.php\n", $command->getOutput(false));
$this->assertEmpty($command->getError());
$this->assertEmpty($command->getStdErr());
$this->assertEquals(0, $command->getExitCode());
}
public function testCanNotRunEmptyCommand()
{
$command = new Command('');
$command->nonBlockingMode = false;
$this->assertFalse($command->execute());
$this->assertEquals('Could not locate any executable command', $command->getError());
}
public function testCanNotRunNotExistantCommand()
{
$command = new Command('/does/not/exist');
$command->nonBlockingMode = false;
$this->assertFalse($command->getExecuted());
$this->assertFalse($command->execute());
$this->assertFalse($command->getExecuted());
$this->assertNotEmpty($command->getError());
$this->assertNotEmpty($command->getStdErr());
$this->assertEmpty($command->getOutput());
$this->assertEquals(127, $command->getExitCode());
}
public function testCanNotRunInvalidCommand()
{
$command = new Command('ls --this-does-not-exist');
$command->nonBlockingMode = false;
$this->assertFalse($command->getExecuted());
$this->assertFalse($command->execute());
$this->assertFalse($command->getExecuted());
$this->assertNotEmpty($command->getError());
$this->assertNotEmpty($command->getStdErr());
$this->assertEmpty($command->getOutput());
$this->assertEquals(2, $command->getExitCode());
}
// Proc
public function testCanProvideProcEnvVars()
{
$command = new Command('echo $TESTVAR');
$command->nonBlockingMode = false;
$command->procEnv = array('TESTVAR' => 'testvalue');
$this->assertTrue($command->execute());
$this->assertEquals("testvalue", $command->getOutput());
}
public function testCanProvideProcDir()
{
$tmpDir = sys_get_temp_dir();
$command = new Command('pwd');
$command->procCwd = $tmpDir;
$command->nonBlockingMode = false;
$this->assertFalse($command->getExecuted());
$this->assertTrue($command->execute());
$this->assertTrue($command->getExecuted());
$this->assertEquals($tmpDir, $command->getOutput());
}
public function testCanRunCommandWithStandardInput()
{
$command = new Command('/bin/cat');
$command->nonBlockingMode = false;
$command->addArg('-T');
$command->setStdIn("\t");
$this->assertTrue($command->execute());
$this->assertTrue($command->getExecuted());
$this->assertEquals("^I", $command->getOutput());
}
}
|