You've already forked postfixadmin
mirror of
https://github.com/postfixadmin/postfixadmin.git
synced 2026-01-12 22:51:27 +03:00
git-svn-id: https://svn.code.sf.net/p/postfixadmin/code/trunk@581 a1433add-5e2c-0410-b055-b7f2511e0802
41 lines
1.4 KiB
PHP
41 lines
1.4 KiB
PHP
<?php
|
|
// $Id: shell_tester_test.php,v 1.8 2005/08/05 22:30:02 lastcraft Exp $
|
|
|
|
Mock::generate('SimpleShell');
|
|
|
|
class TestOfShellTestCase extends ShellTestCase {
|
|
var $_mock_shell = false;
|
|
|
|
function &_getShell() {
|
|
return $this->_mock_shell;
|
|
}
|
|
|
|
function testGenericEquality() {
|
|
$this->assertEqual('a', 'a');
|
|
$this->assertNotEqual('a', 'A');
|
|
}
|
|
|
|
function testExitCode() {
|
|
$this->_mock_shell = &new MockSimpleShell();
|
|
$this->_mock_shell->setReturnValue('execute', 0);
|
|
$this->_mock_shell->expectOnce('execute', array('ls'));
|
|
$this->assertTrue($this->execute('ls'));
|
|
$this->assertExitCode(0);
|
|
}
|
|
|
|
function testOutput() {
|
|
$this->_mock_shell = &new MockSimpleShell();
|
|
$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->_mock_shell->setReturnValue('execute', 0);
|
|
$this->_mock_shell->setReturnValue('getOutput', "Line 1\nLine 2\n");
|
|
$this->assertOutputPattern('/line/i');
|
|
$this->assertNoOutputPattern('/line 2/');
|
|
}
|
|
}
|
|
?>
|