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 PHPLOCTask |
22
|
|
|
* |
23
|
|
|
* @author Michiel Rook <[email protected]> |
24
|
|
|
* @package phing.tasks.ext |
25
|
|
|
*/ |
26
|
|
|
class PHPLOCTaskTest extends BuildFileTest |
27
|
|
|
{ |
28
|
|
|
public function setUp(): void |
29
|
|
|
{ |
30
|
|
|
$this->configureProject(PHING_TEST_BASE . "/etc/tasks/ext/phploc/build.xml"); |
31
|
|
|
} |
32
|
|
|
|
33
|
|
|
public function testReportText() |
34
|
|
|
{ |
35
|
|
|
$this->executeTarget(__FUNCTION__); |
36
|
|
|
$this->assertFileExists( |
37
|
|
|
PHING_TEST_BASE . '/etc/tasks/ext/phploc/phploc-report.txt' |
38
|
|
|
); |
39
|
|
|
unlink(PHING_TEST_BASE . '/etc/tasks/ext/phploc/phploc-report.txt'); |
40
|
|
|
} |
41
|
|
|
|
42
|
|
|
public function testReportCSV() |
43
|
|
|
{ |
44
|
|
|
$this->executeTarget(__FUNCTION__); |
45
|
|
|
$this->assertFileExists( |
46
|
|
|
PHING_TEST_BASE . '/etc/tasks/ext/phploc/phploc-report.csv' |
47
|
|
|
); |
48
|
|
|
unlink(PHING_TEST_BASE . '/etc/tasks/ext/phploc/phploc-report.csv'); |
49
|
|
|
} |
50
|
|
|
|
51
|
|
|
public function testReportXML() |
52
|
|
|
{ |
53
|
|
|
$this->executeTarget(__FUNCTION__); |
54
|
|
|
$this->assertFileExists( |
55
|
|
|
PHING_TEST_BASE . '/etc/tasks/ext/phploc/phploc-report.xml' |
56
|
|
|
); |
57
|
|
|
unlink(PHING_TEST_BASE . '/etc/tasks/ext/phploc/phploc-report.xml'); |
58
|
|
|
} |
59
|
|
|
|
60
|
|
|
public function testReportJSON() |
61
|
|
|
{ |
62
|
|
|
$this->executeTarget(__FUNCTION__); |
63
|
|
|
$this->assertFileExists( |
64
|
|
|
PHING_TEST_BASE . '/etc/tasks/ext/phploc/phploc-report.json' |
65
|
|
|
); |
66
|
|
|
unlink(PHING_TEST_BASE . '/etc/tasks/ext/phploc/phploc-report.json'); |
67
|
|
|
} |
68
|
|
|
|
69
|
|
|
public function testFormatters() |
70
|
|
|
{ |
71
|
|
|
$this->executeTarget(__FUNCTION__); |
72
|
|
|
$this->assertFileExists( |
73
|
|
|
PHING_TEST_BASE . '/etc/tasks/ext/phploc/phploc-report.txt' |
74
|
|
|
); |
75
|
|
|
$this->assertFileExists( |
76
|
|
|
PHING_TEST_BASE . '/etc/tasks/ext/phploc/phploc-report.csv' |
77
|
|
|
); |
78
|
|
|
$this->assertFileExists( |
79
|
|
|
PHING_TEST_BASE . '/etc/tasks/ext/phploc/phploc-report.xml' |
80
|
|
|
); |
81
|
|
|
unlink(PHING_TEST_BASE . '/etc/tasks/ext/phploc/phploc-report.txt'); |
82
|
|
|
unlink(PHING_TEST_BASE . '/etc/tasks/ext/phploc/phploc-report.csv'); |
83
|
|
|
unlink(PHING_TEST_BASE . '/etc/tasks/ext/phploc/phploc-report.xml'); |
84
|
|
|
} |
85
|
|
|
} |
86
|
|
|
|