summaryrefslogtreecommitdiffstats
path: root/3rdparty/simpletest/test/shell_tester_test.php
diff options
context:
space:
mode:
Diffstat (limited to '3rdparty/simpletest/test/shell_tester_test.php')
-rwxr-xr-x3rdparty/simpletest/test/shell_tester_test.php42
1 files changed, 42 insertions, 0 deletions
diff --git a/3rdparty/simpletest/test/shell_tester_test.php b/3rdparty/simpletest/test/shell_tester_test.php
new file mode 100755
index 00000000000..b12c602a39f
--- /dev/null
+++ b/3rdparty/simpletest/test/shell_tester_test.php
@@ -0,0 +1,42 @@
+<?php
+// $Id: shell_tester_test.php 1787 2008-04-26 20:35:39Z pp11 $
+require_once(dirname(__FILE__) . '/../autorun.php');
+require_once(dirname(__FILE__) . '/../shell_tester.php');
+Mock::generate('SimpleShell');
+
+class TestOfShellTestCase extends ShellTestCase {
+ private $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/');
+ }
+}
+?> \ No newline at end of file