Run languages tests using PHPUnit test suites
This commit is contained in:
parent
52b503105d
commit
6c7d686454
4 changed files with 38 additions and 7 deletions
|
@ -1,5 +1,11 @@
|
|||
sudo: false
|
||||
language: php
|
||||
addons:
|
||||
apt:
|
||||
packages:
|
||||
- locales
|
||||
- language-pack-de
|
||||
- language-pack-fr
|
||||
cache:
|
||||
directories:
|
||||
- $HOME/.composer/cache
|
||||
|
|
16
Makefile
16
Makefile
|
@ -124,8 +124,20 @@ test:
|
|||
@echo "-------"
|
||||
@echo "PHPUNIT"
|
||||
@echo "-------"
|
||||
@mkdir -p sandbox
|
||||
@$(BIN)/phpunit tests
|
||||
@mkdir -p sandbox coverage
|
||||
@$(BIN)/phpunit --coverage-php coverage/main.cov --testsuite unit-tests
|
||||
|
||||
locale_test_%:
|
||||
@UT_LOCALE=$*.utf8 \
|
||||
$(BIN)/phpunit \
|
||||
--coverage-php coverage/$(firstword $(subst _, ,$*)).cov \
|
||||
--bootstrap tests/languages/bootstrap.php \
|
||||
--testsuite language-$(firstword $(subst _, ,$*))
|
||||
|
||||
all_tests: test locale_test_de_DE locale_test_en_US locale_test_fr_FR
|
||||
@$(BIN)/phpcov merge --html coverage coverage
|
||||
@# --text doesn't work with phpunit 4.* (v5 requires PHP 5.6)
|
||||
@#$(BIN)/phpcov merge --text coverage/txt coverage
|
||||
|
||||
##
|
||||
# Custom release archive generation
|
||||
|
|
|
@ -20,7 +20,8 @@
|
|||
"phpmd/phpmd" : "@stable",
|
||||
"phpunit/phpunit": "4.8.*",
|
||||
"sebastian/phpcpd": "*",
|
||||
"squizlabs/php_codesniffer": "2.*"
|
||||
"squizlabs/php_codesniffer": "2.*",
|
||||
"phpunit/phpcov": "*"
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
|
|
20
phpunit.xml
20
phpunit.xml
|
@ -3,13 +3,25 @@
|
|||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.5/phpunit.xsd"
|
||||
colors="true">
|
||||
<testsuites>
|
||||
<testsuite name="unit-tests">
|
||||
<directory>tests</directory>
|
||||
<exclude>tests/languages</exclude>
|
||||
</testsuite>
|
||||
<testsuite name="language-de">
|
||||
<directory>tests/languages/de</directory>
|
||||
</testsuite>
|
||||
<testsuite name="language-en">
|
||||
<directory>tests/languages/en</directory>
|
||||
</testsuite>
|
||||
<testsuite name="language-fr">
|
||||
<directory>tests/languages/fr</directory>
|
||||
</testsuite>
|
||||
</testsuites>
|
||||
|
||||
<filter>
|
||||
<whitelist addUncoveredFilesFromWhitelist="true">
|
||||
<directory suffix=".php">application</directory>
|
||||
</whitelist>
|
||||
</filter>
|
||||
<logging>
|
||||
<log type="coverage-html" target="coverage" lowUpperBound="30" highLowerBound="80"/>
|
||||
<log type="coverage-text" target="php://stdout" showUncoveredFiles="true"/>
|
||||
</logging>
|
||||
</phpunit>
|
||||
|
|
Loading…
Reference in a new issue