2005-06-18 23:26:35 +00:00
|
|
|
<?php
|
|
|
|
// $Id$
|
|
|
|
|
|
|
|
Mock::generate('SimpleShell');
|
|
|
|
|
|
|
|
class TestOfShellTestCase extends ShellTestCase {
|
|
|
|
var $_mock_shell = false;
|
|
|
|
|
|
|
|
function &_getShell() {
|
|
|
|
return $this->_mock_shell;
|
|
|
|
}
|
|
|
|
|
2005-07-30 02:26:59 +00:00
|
|
|
function testGenericEquality() {
|
|
|
|
$this->assertEqual('a', 'a');
|
|
|
|
$this->assertNotEqual('a', 'A');
|
|
|
|
}
|
|
|
|
|
2005-06-18 23:26:35 +00:00
|
|
|
function testExitCode() {
|
|
|
|
$this->_mock_shell = &new MockSimpleShell($this);
|
|
|
|
$this->_mock_shell->setReturnValue('execute', 0);
|
|
|
|
$this->_mock_shell->expectOnce('execute', array('ls'));
|
|
|
|
$this->assertTrue($this->execute('ls'));
|
|
|
|
$this->assertExitCode(0);
|
|
|
|
$this->_mock_shell->tally();
|
|
|
|
}
|
|
|
|
|
|
|
|
function testOutput() {
|
|
|
|
$this->_mock_shell = &new MockSimpleShell($this);
|
|
|
|
$this->_mock_shell->setReturnValue('execute', 0);
|
|
|
|
$this->_mock_shell->setReturnValue('getOutput', "Line 1\nLine 2\n");
|
|
|
|
$this->assertOutput("Line 1\nLine 2\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
function testOutputPatterns() {
|
|
|
|
$this->_mock_shell = &new MockSimpleShell($this);
|
|
|
|
$this->_mock_shell->setReturnValue('execute', 0);
|
|
|
|
$this->_mock_shell->setReturnValue('getOutput', "Line 1\nLine 2\n");
|
|
|
|
$this->assertOutputPattern('/line/i');
|
|
|
|
$this->assertNoOutputPattern('/line 2/');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|