mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-01-31 17:16:18 +00:00
57ef2eba9b
git-svn-id: https://svn.cakephp.org/repo/trunk/cake@430 3807eeeb-6ff5-0310-8944-8be069107fe0
42 lines
No EOL
1.4 KiB
PHP
42 lines
No EOL
1.4 KiB
PHP
<?php
|
|
// $Id$
|
|
|
|
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);
|
|
$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/');
|
|
}
|
|
}
|
|
?>
|