Skip to content

Commit 8b81f7e

Browse files
author
Greg Bowler
authored
Coverage options (#52)
* docs: add missing config options * feature: implement coverage options * wip: equals required for optional arg * wip: bump hash * wip: typo
1 parent a11fcf3 commit 8b81f7e

File tree

3 files changed

+124
-15
lines changed

3 files changed

+124
-15
lines changed

README.md

+46-3
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,27 @@ The following configuration options are available:
4949
+ `php_extensions` Space-separated list of extensions using [php-build][php-build] e.g. `xdebug mbstring` (default: N/A)
5050
+ `vendored_phpunit_path` The path to a phar file already present on the runner (default: N/A)
5151
+ `configuration` Path to the `phpunit.xml` file (default: `test/phpunit/phpunit.xml`)
52-
+ `log_junit` Path to junit output file (default: `test/phpunit/_junit/junit.xml`)
52+
+ `log_junit` Log test execution in JUnit XML format to file
53+
+ `log_teamcity` Log test execution in TeamCity format to file
54+
+ `testdox_html` Write documentation in HTML format to file
55+
+ `testdox_text` Write documentation in Text format to file
5356
+ `memory_limit` The memory limit to run your tests with (default: `128M`)
5457
+ `bootstrap` The path to the bootstrap file
58+
+ `filter` Filter which tests to run
59+
+ `testsuite` Specify a testsuite to run
60+
+ `group` Only runs tests from the specified group(s)
61+
+ `exclude_group` Exclude tests from the specified group(s)
62+
+ `test_suffix` Only search for test in files with specified suffix(es)
63+
+ `whitelist` Path to directory to whitelist for code coverage analysis
64+
+ `coverage_clover` Generate code coverage report in Clover XML format
65+
+ `coverage_cobertura` Generate code coverage report in Cobertura XML format
66+
required
67+
+ `coverage_crap4j` Generate code coverage report in Crap4J XML format
68+
+ `coverage_html` Generate code coverage report in HTML format
69+
+ `coverage_php` Export PHP_CodeCoverage object to file
70+
+ `coverage_text` Generate code coverage report in text format (true to output to console, path to output to file)
71+
+ `coverage_xml` Generate code coverage report in PHPUnit XML format
72+
+ `args` Extra arguments to pass to the phpunit binary
5573

5674
The syntax for passing in a custom input is the following:
5775

@@ -66,8 +84,8 @@ jobs:
6684
- name: PHPUnit tests
6785
uses: php-actions/phpunit@v3
6886
with:
69-
configuration: custom/path/to/phpunit.xml
70-
memory_limit: 256M
87+
configuration: "custom/path/to/phpunit.xml"
88+
memory_limit: "256M"
7189
```
7290
7391
If you require other configurations of phpunit, please request them in the [Github issue tracker][issues]
@@ -85,6 +103,30 @@ Please note the version number specified within your Action configuration must m
85103

86104
If you require a specific version that is not compatible with Github Actions for some reason, please make a request in the [Github issue tracker][issues].
87105

106+
Coverage
107+
--------
108+
109+
To store the code coverage, use the `coverage_*` input that is appropriate for your needs. Coverage information is made possible by using the xdebug extension, which will be required to be added to the `php_extensions` input to work.
110+
111+
Example:
112+
113+
```yaml
114+
jobs:
115+
unit-tests:
116+
117+
...
118+
119+
- name: PHPUnit tests
120+
uses: php-actions/phpunit@v3
121+
with:
122+
php_extensions: "xdebug"
123+
coverage_clover: "coverage/clover.xml"
124+
```
125+
126+
The above example will output coverage information to the terminal. Pass a file path to output to a file.
127+
128+
If you want to report coverage information somewhere, please see the [code-coverage] action.
129+
88130
Github Actions releases
89131
-----------------------
90132

@@ -96,4 +138,5 @@ If you found this repository helpful, please consider [sponsoring the developer]
96138

97139
[issues]: https://github.com/php-actions/phpunit/issues
98140
[php-build]: https://github.com/php-actions/php-build
141+
[code-coverage]: https://github.com/php-actions/code-coverage
99142
[sponsor]: https://github.com/sponsors/g105b

action.yml

+38-7
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,11 @@ inputs:
3333
required: false
3434

3535
testdox_html:
36-
description: JUnit output file location
36+
description: Write documentation in HTML format to file
3737
required: false
3838

3939
testdox_text:
40-
description: JUnit output file location
41-
required: false
42-
43-
testdox_xml:
44-
description: JUnit output file location
40+
description: Write documentation in Text format to file
4541
required: false
4642

4743
memory_limit:
@@ -77,6 +73,34 @@ inputs:
7773
description: Path to directory to whitelist for code coverage analysis
7874
required: false
7975

76+
coverage_clover:
77+
description: Generate code coverage report in Clover XML format
78+
required: false
79+
80+
coverage_cobertura:
81+
description: Generate code coverage report in Cobertura XML format
82+
required: false
83+
84+
coverage_crap4j:
85+
description: Generate code coverage report in Crap4J XML format
86+
required: false
87+
88+
coverage_html:
89+
description: Generate code coverage report in HTML format
90+
required: false
91+
92+
coverage_php:
93+
description: Export PHP_CodeCoverage object to file
94+
required: false
95+
96+
coverage_text:
97+
description: Generate code coverage report in text format (true to output to console, path to output to file)
98+
required: false
99+
100+
coverage_xml:
101+
description: Generate code coverage report in PHPUnit XML format
102+
required: false
103+
80104
args:
81105
description: Extra arguments to pass to the phpunit binary
82106
required: false
@@ -94,7 +118,6 @@ runs:
94118
ACTION_LOG_JUNIT: ${{ inputs.log_junit }}
95119
ACTION_TESTDOX_HTML: ${{ inputs.testdox_html }}
96120
ACTION_TESTDOX_TEXT: ${{ inputs.testdox_text }}
97-
ACTION_TESTDOX_XML: ${{ inputs.testdox_xml }}
98121
ACTION_BOOTSTRAP: ${{ inputs.bootstrap }}
99122
ACTION_FILTER: ${{ inputs.filter }}
100123
ACTION_TESTSUITE: ${{ inputs.testsuite }}
@@ -103,7 +126,15 @@ runs:
103126
ACTION_TEST_SUFFIX: ${{ inputs.test_suffix }}
104127
ACTION_WHITELIST: ${{ inputs.whitelist }}
105128
ACTION_MEMORY_LIMIT: ${{ inputs.memory_limit }}
129+
ACTION_COVERAGE_CLOVER: ${{ inputs.coverage_clover }}
130+
ACTION_COVERAGE_COBERTURA: ${{ inputs.coverage_cobertura }}
131+
ACTION_COVERAGE_CRAP4J: ${{ inputs.coverage_crap4j }}
132+
ACTION_COVERAGE_HTML: ${{ inputs.coverage_html }}
133+
ACTION_COVERAGE_PHP: ${{ inputs.coverage_php }}
134+
ACTION_COVERAGE_TEXT: ${{ inputs.coverage_text }}
135+
ACTION_COVERAGE_XML: ${{ inputs.coverage_xml }}
106136
ACTION_ARGS: ${{ inputs.args }}
137+
107138
id: phpunit_run
108139
run: |
109140
set -e

phpunit-action.bash

+40-5
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,6 @@ then
4646
command_string+=(--testdox-text "$ACTION_TESTDOX_TEXT")
4747
fi
4848

49-
if [ -n "$ACTION_TESTDOX_XML" ]
50-
then
51-
command_string+=(--testdox-xml "$ACTION_TESTDOX_XML")
52-
fi
53-
5449
if [ -n "$ACTION_BOOTSTRAP" ]
5550
then
5651
command_string+=(--bootstrap "$ACTION_BOOTSTRAP")
@@ -91,6 +86,46 @@ then
9186
command_string+=(-d memory_limit="$ACTION_MEMORY_LIMIT")
9287
fi
9388

89+
if [ -n "$ACTION_COVERAGE_CLOVER" ]
90+
then
91+
command_string+=(--coverage-clover "$ACTION_COVERAGE_CLOVER")
92+
fi
93+
94+
if [ -n "$ACTION_COVERAGE_COBERTURA" ]
95+
then
96+
command_string+=(--coverage-cobertura "$ACTION_COVERAGE_COBERTURA")
97+
fi
98+
99+
if [ -n "$ACTION_COVERAGE_CRAP4J" ]
100+
then
101+
command_string+=(--coverage-crap4j "$ACTION_COVERAGE_CRAP4J")
102+
fi
103+
104+
if [ -n "$ACTION_COVERAGE_HTML" ]
105+
then
106+
command_string+=(--coverage-html "$ACTION_COVERAGE_HTML")
107+
fi
108+
109+
if [ -n "$ACTION_COVERAGE_PHP" ]
110+
then
111+
command_string+=(--coverage-php "$ACTION_COVERAGE_PHP")
112+
fi
113+
114+
if [ -n "$ACTION_COVERAGE_TEXT" ]
115+
then
116+
if [ "${ACTION_COVERAGE_TEXT,,}" = "true" ]
117+
then
118+
command_string+=(--coverage-text)
119+
else
120+
command_string+=(--coverage-text="$ACTION_COVERAGE_TEXT")
121+
fi
122+
fi
123+
124+
if [ -n "$ACTION_COVERAGE_XML" ]
125+
then
126+
command_string+=(--coverage-xml "$ACTION_COVERAGE_XML")
127+
fi
128+
94129
command_string+=(--colors=always)
95130

96131
if [ -n "$ACTION_ARGS" ]

0 commit comments

Comments
 (0)