Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hugues-m/phpunit-vw
VW PHPUnit extension makes your failing test cases succeed under CI tools scrutiny
https://github.com/hugues-m/phpunit-vw
Last synced: about 1 month ago
JSON representation
VW PHPUnit extension makes your failing test cases succeed under CI tools scrutiny
- Host: GitHub
- URL: https://github.com/hugues-m/phpunit-vw
- Owner: hugues-m
- License: mit
- Created: 2015-09-28T17:14:48.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2018-01-31T13:19:16.000Z (almost 7 years ago)
- Last Synced: 2024-08-11T09:01:04.083Z (3 months ago)
- Language: PHP
- Homepage:
- Size: 25.4 KB
- Stars: 1,745
- Watchers: 32
- Forks: 37
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Phpunit VW Extension
[![Build Status](https://travis-ci.org/hmlb/phpunit-vw.svg)](https://travis-ci.org/hmlb/phpunit-vw)
[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/hmlb/phpunit-vw/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/hmlb/phpunit-vw/?branch=master)
[![SensioLabsInsight](https://insight.sensiolabs.com/projects/199bb078-9e37-4b6f-8503-78125e0cb103/mini.png)](https://insight.sensiolabs.com/projects/199bb078-9e37-4b6f-8503-78125e0cb103)
[![AppVeyor](https://ci.appveyor.com/api/projects/status/io5mwpixtjss8bk8?svg=true)](https://ci.appveyor.com/project/hmlb/phpunit-vw)VW makes failing test cases succeed in continuous integration tools.
Your primary objective is to ship more code to the world. No need to be slowed down by regressions or new bugs that happen during development.
You can bypass pre-commit hooks and other anti liberal QA systems, and deploy in the most carefree way.
* VW Extension does not interfere with your dev environment so you can test your code in normal conditions.
* It automatically detects CI environments and makes your test suites succeed even with failing assertions or unwanted exceptions \o/* Since it may not be obvious anymore * this package was created as a joke during the Volkswagen emissions scandal in 2015 when software was found in VW vehicules that detected official testing conditions and changed the engine parameters to fake the output of emission of pollutant gases.
It has been adapted in a lot of language and we have a good laugh, thank you all :)This is in no way a recommended package to use in any other goals than fun or trolling your QA collegues.
## Example
Here are the results of running the [VWTest case](src/Tests/VWTest.php) in different environments:
```php
class VWTest extends PHPUnit_Framework_TestCase
{
private $emissions = 12000;private $legalLimit = 300;
public function testEnvironmentalImpactCompliance()
{
$this->assertLessThan($this->legalLimit, $this->emissions);
}
}
```Running in development environment:
![Failing VWTest in dev environment](http://i.imgur.com/HYitIFn.png)Running in CI environment: [![Build Status](https://travis-ci.org/hmlb/phpunit-vw.svg)](https://travis-ci.org/hmlb/phpunit-vw)
![Succeeded VWTest in CI environment](http://i.imgur.com/jSw6pTq.png)
## Installation
You can install VW Extension via [Composer](http://getcomposer.org)
composer require hmlb/phpunit-vw:dev-master
## Usage
Just enable it by adding the following to your test suite's `phpunit.xml` file:
```xml
...
```
Now run your test suite as normal.
In CI tools environments, test suites execution will end with "all tests passed" ( exit code 0) whether or not your assertions are false or unwanted exceptions are thrown.
## Configuration
Under the hood (wink wink), the "SecretSoftware" class detects if the phpunit process has been invoked in a CI tools environment. (Actually checks for the most used tools' default environment variables).
If you use another CI tool or want to fool anything else, you can add environment variables to the "scrutiny detection":
**additionalEnvVariables** - Array of additional environment variables to switch the obfuscation on.
Add this in `phpunit.xml` when configuring the listener:
```xml
...
"FOO_CI"
"GOVERNMENT_TEST_TOOL"
```
## Scandal
Any similarities with a current event concerning (but not limited to) a multinational automobile manufacturer are purely coincidental.
## CI tools detection
Currently detects :
* TravisCI
* Appveyor
* Bamboo
* Buildkite
* CircleCI
* CodeShip
* GitlabCI
* Go CD
* Hudson
* Jenkins
* PHPCI
* TeamCity
* WerckerOther CI tools using environment variables like 'BUILD_ID' would be detected as well.
## License
phpunit-vw is available under the MIT License.