Passed
Push — master ( e27327...766034 )
by Siad
11:22
created

classes/phing/tasks/ext/PhpCodeSnifferTaskTest.php (1 issue)

Severity
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
/**
21
 * Tests for PhpCodeSnifferTask
22
 *
23
 * @author Michiel Rook <[email protected]>
24
 * @package phing.tasks.ext
25
 */
26
class PhpCodeSnifferTaskTest extends BuildFileTest
27
{
28
    public function setUp(): void
29
    {
30
        if (!class_exists('PHP_CodeSniffer')) {
31
            $this->markTestSkipped('PHP CodeSniffer package not available.');
32
        }
33
34
        $this->configureProject(PHING_TEST_BASE . "/etc/tasks/ext/phpcs/build.xml");
35
    }
36
37
    public function testNestedFormatters()
38
    {
39
        ob_start();
40
        $this->executeTarget(__FUNCTION__);
41
        $output = ob_get_clean();
42
        $this->assertStringContainsString("PHP CODE SNIFFER REPORT SUMMARY", $output);
43
        $this->assertFileExists(
44
            PHING_TEST_BASE . '/etc/tasks/ext/phpcs/report.txt'
45
        );
46
        unlink(PHING_TEST_BASE . '/etc/tasks/ext/phpcs/report.txt');
47
    }
48
49
    public function testCustomStandard()
50
    {
51
        ob_start();
52
        $this->executeTarget(__FUNCTION__);
53
        $output = ob_get_clean();
54
        $this->assertStringContainsString("PHP CODE SNIFFER REPORT SUMMARY", $output);
55
        $this->assertFileExists(
56
            PHING_TEST_BASE . '/etc/tasks/ext/phpcs/report.txt'
57
        );
58
        unlink(PHING_TEST_BASE . '/etc/tasks/ext/phpcs/report.txt');
59
    }
60
61
    public function testPropertyOutput()
62
    {
63
        ob_start();
64
        $this->executeTarget(__FUNCTION__);
65
        $output = ob_get_clean();
0 ignored issues
show
The assignment to $output is dead and can be removed.
Loading history...
66
        $this->assertPropertyEquals(
67
            "PhpCodeSnifferTaskTest.testPropertyOutput",
68
            "- Generic_Sniffs_PHP_DisallowShortOpenTagSniff" . PHP_EOL
69
        );
70
    }
71
}
72