1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
/** |
4
|
|
|
* @file |
5
|
|
|
* Grafizzi\Graph\Tests\AbstractCommandFilterTest: a component of the Grafizzi library. |
6
|
|
|
* |
7
|
|
|
* (c) 2016 Frédéric G. MARAND <[email protected]> |
8
|
|
|
* |
9
|
|
|
* Grafizzi is free software: you can redistribute it and/or modify it under the |
10
|
|
|
* terms of the GNU Lesser General Public License as published by the Free |
11
|
|
|
* Software Foundation, either version 3 of the License, or (at your option) any |
12
|
|
|
* later version. |
13
|
|
|
* |
14
|
|
|
* Grafizzi is distributed in the hope that it will be useful, but WITHOUT ANY |
15
|
|
|
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR |
16
|
|
|
* A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more |
17
|
|
|
* details. |
18
|
|
|
* |
19
|
|
|
* You should have received a copy of the GNU Lesser General Public License |
20
|
|
|
* along with Grafizzi, in the COPYING.LESSER.txt file. If not, see |
21
|
|
|
* <http://www.gnu.org/licenses/> |
22
|
|
|
*/ |
23
|
|
|
|
24
|
|
|
namespace Grafizzi\Graph\Tests; |
25
|
|
|
|
26
|
|
|
use Grafizzi\Graph\Filter\AbstractCommandFilter; |
27
|
|
|
use PHPUnit\Framework\TestCase; |
28
|
|
|
|
29
|
|
|
require 'vendor/autoload.php'; |
30
|
|
|
|
31
|
|
|
class PseudoCommandFilter extends AbstractCommandFilter {} |
32
|
|
|
|
33
|
|
|
/** |
34
|
|
|
* Class AbstractCommandFilterTest |
35
|
|
|
*/ |
36
|
|
|
class AbstractCommandFilterTest extends TestCase { |
37
|
|
|
|
38
|
|
|
public function testFilterArguments() { |
39
|
|
|
// echo is both a Linux, macOS, and Windows command. |
40
|
|
|
PseudoCommandFilter::$commandName = 'echo'; |
41
|
|
|
$args = ['+' => 'x', 'foo' => '=bar']; |
42
|
|
|
$filter = new PseudoCommandFilter($args); |
43
|
|
|
$output_lines = $filter->filter(""); |
44
|
|
|
$output = implode("\n", $output_lines); |
45
|
|
|
$this->assertEquals("+x foo=bar\n\n", $output); |
46
|
|
|
} |
47
|
|
|
|
48
|
|
|
public function testUnavailableCommand() { |
49
|
|
|
$this->expectException(\ErrorException::class); |
50
|
|
|
// Since this is the name of this package, it is unlikely to exist. |
51
|
|
|
PseudoCommandFilter::$commandName = 'grafizzi'; |
52
|
|
|
$filter = new PseudoCommandFilter(); |
53
|
|
|
$filter->filter(""); |
54
|
|
|
} |
55
|
|
|
} |
56
|
|
|
|