-
-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(Generator\WPUnit) remove Compat. layer
- Loading branch information
Showing
2 changed files
with
115 additions
and
132 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,118 +1,120 @@ | ||
<?php namespace Codeception\Lib\Generator; | ||
|
||
use Codeception\TestCase\WPTestCase; | ||
use lucatume\WPBrowser\Tests\Traits\WithUopz; | ||
use PHPUnit\Runner\Version; | ||
use ReflectionClass; | ||
use tad\Codeception\SnapshotAssertions\SnapshotAssertions; | ||
use tad\WPBrowser\Compat\Compatibility; | ||
|
||
class WPUnitTest extends \Codeception\Test\Unit | ||
{ | ||
|
||
use SnapshotAssertions; | ||
|
||
/** | ||
* A backup of the current PHPUnit Series env var. | ||
* @var array|false|string | ||
*/ | ||
protected $phpunitSeriesEnv; | ||
/** | ||
* @var \UnitTester | ||
*/ | ||
protected $tester; | ||
|
||
protected $compatibility; | ||
|
||
/** | ||
* It should scaffold PHPUnit v8 compatible code on series 8 | ||
* | ||
* @test | ||
* @dataProvider phpUnitEq8Series | ||
*/ | ||
public function should_scaffold_php_unit_v_8_code_on_series_8($series) | ||
{ | ||
$this->setPhpUnitSeriesTo('8.0'); | ||
$settings = ['namespace' => 'Acme']; | ||
$name = 'SomeClass'; | ||
$generator = new WPUnit($settings, $name, WPTestCase::class); | ||
$generator->setCompatibilityLayer($this->compatibility); | ||
|
||
$code = $generator->produce(); | ||
|
||
$this->assertMatchesCodeSnapshot($code, 'php'); | ||
} | ||
|
||
protected function setPhpUnitSeriesTo($series) | ||
{ | ||
$this->compatibility = $this->make(Compatibility::class, [ | ||
'phpunitVersion' => $series | ||
]); | ||
} | ||
|
||
public function phpUnitLt8Series() | ||
{ | ||
return [ | ||
'5.5' => ['5.5'], | ||
'5.5.5' => ['5.5'], | ||
'6.2' => ['6.2'], | ||
'6.2.3' => ['6.2'], | ||
'7.5' => ['7.5'], | ||
'7.5.6' => ['7.5'], | ||
]; | ||
} | ||
|
||
/** | ||
* It should scaffold PHPUnit lt 8.0 compatible code on series lt 8 | ||
* | ||
* @test | ||
* @dataProvider phpUnitLt8Series | ||
*/ | ||
public function should_scaffold_php_unit_lt_8_0_compatible_code_on_series_lt_8($series) | ||
{ | ||
$this->setPhpUnitSeriesTo($series); | ||
$settings = ['namespace' => 'Acme']; | ||
$name = 'SomeClass'; | ||
$generator = new WPUnit($settings, $name, WPTestCase::class); | ||
$generator->setCompatibilityLayer($this->compatibility); | ||
|
||
$code = $generator->produce(); | ||
|
||
$this->assertMatchesCodeSnapshot($code, 'php'); | ||
} | ||
|
||
/** | ||
* It should correctly add the tester property if actor is set in the settings | ||
* | ||
* @test | ||
*/ | ||
public function should_correctly_add_the_tester_property_if_actor_is_set_in_the_settings() | ||
{ | ||
$this->setPhpUnitSeriesTo('6.0'); | ||
$settings = ['namespace' => 'Acme', 'actor' => 'Fixer']; | ||
$name = 'SomeClass'; | ||
$generator = new WPUnit($settings, $name, WPTestCase::class); | ||
$generator->setCompatibilityLayer($this->compatibility); | ||
|
||
$code = $generator->produce(); | ||
|
||
$this->assertMatchesCodeSnapshot($code, 'php'); | ||
} | ||
|
||
public function phpUnitEq8Series() | ||
{ | ||
return [ | ||
'8.0' => ['8.0'], | ||
'8.0.4' => ['8.0.4'], | ||
'8.1' => ['8.1'], | ||
'8.1.6' => ['8.1.6'], | ||
]; | ||
} | ||
|
||
protected function _before() | ||
{ | ||
$this->phpunitSeriesEnv = getenv('WPBROWSER_PHPUNIT_SERIES'); | ||
} | ||
|
||
protected function _after() | ||
{ | ||
putenv('WPBROWSER_PHPUNIT_SERIES='.$this->phpunitSeriesEnv); | ||
} | ||
class WPUnitTest extends \Codeception\Test\Unit { | ||
use WithUopz; | ||
use SnapshotAssertions; | ||
|
||
/** | ||
* A backup of the current PHPUnit Series env var. | ||
* @var array|false|string | ||
*/ | ||
protected $phpunitSeriesEnv; | ||
/** | ||
* @var \UnitTester | ||
*/ | ||
protected $tester; | ||
|
||
/** | ||
* @var string | ||
*/ | ||
private $phpunitVersionPropertyBackup = null; | ||
|
||
private function setPhpUnitSeriesTo( $series ) { | ||
$reflectionClass = new ReflectionClass( Version::class ); | ||
$versionProp = $reflectionClass->getProperty( 'version' ); | ||
$versionProp->setAccessible( true ); | ||
$this->phpunitVersionPropertyBackup = $versionProp->getValue(); | ||
$versionProp->setValue( $series ); | ||
} | ||
|
||
/** | ||
* @after | ||
*/ | ||
public function restorePhpunitVersionProperty() { | ||
if ( null === $this->phpunitVersionPropertyBackup ) { | ||
return; | ||
} | ||
$reflectionClass = new ReflectionClass( Version::class ); | ||
$versionProp = $reflectionClass->getProperty( 'version' ); | ||
$versionProp->setAccessible( true ); | ||
$versionProp->setValue( $this->phpunitVersionPropertyBackup ); | ||
$this->phpunitVersionPropertyBackup = null; | ||
} | ||
|
||
/** | ||
* It should scaffold PHPUnit v8 compatible code on series 8 | ||
* | ||
* @test | ||
* @dataProvider phpUnitEq8Series | ||
*/ | ||
public function should_scaffold_php_unit_v_8_code_on_series_8( $series ) { | ||
$this->setPhpUnitSeriesTo( '8.0' ); | ||
$settings = [ 'namespace' => 'Acme' ]; | ||
$name = 'SomeClass'; | ||
|
||
$generator = new WPUnit( $settings, $name, WPTestCase::class ); | ||
$code = $generator->produce(); | ||
|
||
$this->assertMatchesCodeSnapshot( $code, 'php' ); | ||
} | ||
|
||
public function phpUnitLt8Series() { | ||
return [ | ||
'5.5' => [ '5.5' ], | ||
'5.5.5' => [ '5.5' ], | ||
'6.2' => [ '6.2' ], | ||
'6.2.3' => [ '6.2' ], | ||
'7.5' => [ '7.5' ], | ||
'7.5.6' => [ '7.5' ], | ||
]; | ||
} | ||
|
||
/** | ||
* It should scaffold PHPUnit lt 8.0 compatible code on series lt 8 | ||
* | ||
* @test | ||
* @dataProvider phpUnitLt8Series | ||
*/ | ||
public function should_scaffold_php_unit_lt_8_0_compatible_code_on_series_lt_8( $series ) { | ||
$this->setPhpUnitSeriesTo( $series ); | ||
$settings = [ 'namespace' => 'Acme' ]; | ||
$name = 'SomeClass'; | ||
|
||
$generator = new WPUnit( $settings, $name, WPTestCase::class ); | ||
$code = $generator->produce(); | ||
|
||
$this->assertMatchesCodeSnapshot( $code, 'php' ); | ||
} | ||
|
||
/** | ||
* It should correctly add the tester property if actor is set in the settings | ||
* | ||
* @test | ||
*/ | ||
public function should_correctly_add_the_tester_property_if_actor_is_set_in_the_settings() { | ||
$this->setPhpUnitSeriesTo( '6.0' ); | ||
$settings = [ 'namespace' => 'Acme', 'actor' => 'Fixer' ]; | ||
$name = 'SomeClass'; | ||
|
||
$generator = new WPUnit( $settings, $name, WPTestCase::class ); | ||
$code = $generator->produce(); | ||
|
||
$this->assertMatchesCodeSnapshot( $code, 'php' ); | ||
} | ||
|
||
public function phpUnitEq8Series() { | ||
return [ | ||
'8.0' => [ '8.0' ], | ||
'8.0.4' => [ '8.0.4' ], | ||
'8.1' => [ '8.1' ], | ||
'8.1.6' => [ '8.1.6' ], | ||
]; | ||
} | ||
} |