1
|
|
|
<?php |
2
|
|
|
/** |
3
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
4
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
5
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
6
|
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
7
|
|
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
8
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
9
|
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
10
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
11
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
12
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
13
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
14
|
|
|
* |
15
|
|
|
* This software consists of voluntary contributions made by many individuals |
16
|
|
|
* and is licensed under the LGPL. For more information please see |
17
|
|
|
* <http://phing.info>. |
18
|
|
|
*/ |
19
|
|
|
|
20
|
|
|
namespace Phing\Test\Filter; |
21
|
|
|
|
22
|
|
|
use Phing\Io\FileUtils; |
23
|
|
|
use Phing\Test\Support\BuildFileTest; |
24
|
|
|
|
25
|
|
|
/** |
26
|
|
|
* @author <a href="mailto:[email protected]">Stefan Bodewig</a> |
27
|
|
|
*/ |
28
|
|
|
class LineContainsTest extends BuildFileTest |
29
|
|
|
{ |
30
|
|
|
protected $fu; |
31
|
|
|
|
32
|
|
|
public function setUp(): void |
33
|
|
|
{ |
34
|
|
|
$this->configureProject(PHING_TEST_BASE . "/etc/filters/linecontains.xml"); |
35
|
|
|
$this->fu = new FileUtils(); |
36
|
|
|
} |
37
|
|
|
|
38
|
|
|
public function tearDown(): void |
39
|
|
|
{ |
40
|
|
|
$this->executeTarget("cleanup"); |
41
|
|
|
} |
42
|
|
|
|
43
|
|
|
public function testLineContains() |
44
|
|
|
{ |
45
|
|
|
$this->executeTarget("testLineContains"); |
46
|
|
|
|
47
|
|
|
$expected = $this->getProject()->resolveFile("expected/linecontains.test"); |
48
|
|
|
$result = $this->getProject()->resolveFile("result/linecontains.test"); |
49
|
|
|
$this->assertTrue($this->fu->contentEquals($expected, $result), "Files don't match!"); |
50
|
|
|
} |
51
|
|
|
|
52
|
|
|
public function testLineContainsNegate() |
53
|
|
|
{ |
54
|
|
|
$this->executeTarget(__FUNCTION__); |
55
|
|
|
|
56
|
|
|
$expected = $this->getProject()->resolveFile("expected/linecontains-negate.test"); |
57
|
|
|
$result = $this->getProject()->resolveFile("result/linecontains.test"); |
58
|
|
|
$this->assertTrue($this->fu->contentEquals($expected, $result), "Files don't match!"); |
59
|
|
|
} |
60
|
|
|
|
61
|
|
|
public function testLineContainsMatchAny() |
62
|
|
|
{ |
63
|
|
|
$this->executeTarget(__FUNCTION__); |
64
|
|
|
|
65
|
|
|
$expected = $this->getProject()->resolveFile("expected/linecontains-matchany.test"); |
66
|
|
|
$result = $this->getProject()->resolveFile("result/linecontains.test"); |
67
|
|
|
$this->assertFileEquals($expected->getAbsolutePath(), $result->getAbsolutePath()); |
68
|
|
|
} |
69
|
|
|
} |
70
|
|
|
|