forked from simpletest/simpletest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshell_tester_test.php
47 lines (40 loc) · 1.33 KB
/
shell_tester_test.php
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
<?php
require_once dirname(__FILE__) . '/../autorun.php';
require_once dirname(__FILE__) . '/../shell_tester.php';
Mock::generate('SimpleShell');
class TestOfShellTestCase extends ShellTestCase
{
private $mock_shell = false;
public function getShell()
{
return $this->mock_shell;
}
public function testGenericEquality()
{
$this->assertEqual('a', 'a');
$this->assertNotEqual('a', 'A');
}
public function testExitCode()
{
$this->mock_shell = new MockSimpleShell();
$this->mock_shell->returnsByValue('execute', 0);
$this->mock_shell->expectOnce('execute', array('ls'));
$this->assertTrue($this->execute('ls'));
$this->assertExitCode(0);
}
public function testOutput()
{
$this->mock_shell = new MockSimpleShell();
$this->mock_shell->returnsByValue('execute', 0);
$this->mock_shell->returnsByValue('getOutput', "Line 1\nLine 2\n");
$this->assertOutput("Line 1\nLine 2\n");
}
public function testOutputPatterns()
{
$this->mock_shell = new MockSimpleShell();
$this->mock_shell->returnsByValue('execute', 0);
$this->mock_shell->returnsByValue('getOutput', "Line 1\nLine 2\n");
$this->assertOutputPattern('/line/i');
$this->assertNoOutputPattern('/line 2/');
}
}