Passed
Push — main ( 2c83d5...fb3f8a )
by Siad
05:21
created

LineContainsTest   A

Complexity

Total Complexity 5

Size/Duplication

Total Lines 40
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 5
eloc 17
dl 0
loc 40
rs 10
c 0
b 0
f 0

5 Methods

Rating   Name   Duplication   Size   Complexity  
A testLineContainsMatchAny() 0 7 1
A tearDown() 0 3 1
A testLineContains() 0 7 1
A testLineContainsNegate() 0 7 1
A setUp() 0 4 1
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