kenjis / phpunit-helper
Provides helper traits for PHPUnit
Installs: 8 829
Dependents: 3
Suggesters: 0
Security: 0
Stars: 5
Watchers: 3
Forks: 0
Open Issues: 0
Requires
- php: ^7.3||^8.0
- phpunit/phpunit: ^9.5
Requires (Dev)
README
Provides helper traits for PHPUnit.
- TestDouble ... Easy mock creation
- ReflectionHelper ... Easy private property/method testing
- DebugHelper ... Helper function
dd()
andd()
Table of Contents
Requirements
- PHP 7.3 or later
Installation
Run:
$ composer require --dev kenjis/phpunit-helper
Usage
TestDouble
This trait provides helper methods to create mock objects and to verify invocations.
Import the Kenjis\PhpUnitHelper\TestDouble
trait into your test class:
<?php declare(strict_types=1); namespace Foo\Bar\Test\Unit; use Kenjis\PhpUnitHelper\TestDouble; use PHPUnit\Framework; final class BazTest extends Framework\TestCase { use TestDouble; }
$this->getDouble()
returns
(object) PHPUnit mock object.
Gets PHPUnit mock object.
$email = $this->getMockBuilder(CI_Email::class) ->disableOriginalConstructor() ->onlyMethods(['send']) ->getMock(); $email->method('send') ->willReturn(true);
You could write code above like below:
$email = $this->getDouble(CI_Email::class, ['send' => true]);
You can set Closure as the return value of a mocked method.
$ret = function () { throw new RuntimeException('Cannot send email!'); }; $mock = $this->getDouble(CI_Email::class, ['send' => $ret]);
You can also set the mock itself as the return value of a mocked method with using $this->returnSelf()
.
$mock = $this->getDouble(CI_Email::class, [ 'to' => $this->returnSelf(), 'subject' => $this->returnSelf(), 'send' => true, ]);
You can create mocks with consecutive calls.
$mock = $this->getMockBuilder(CI_Email::class) ->disableOriginalConstructor() ->onlyMethods(['method']) ->getMock(); $mock->expects($this->any())->method('method') ->will($this->onConsecutiveCalls('GET', 'POST' ,'DELETE'));
You could write code above like below:
$mock = $this->getDouble( CI_Input::class, [ ['method' => ['GET', 'POST' ,'DELETE']], ] );
$this->verifyInvoked()
Verifies a method was invoked at least once.
$loader->expects($this->atLeastOnce()) ->method('view') ->with( 'shopConfirm', $this->anything(), true );
You could write code above like below:
$this->verifyInvoked( $loader, 'view', [ 'shopConfirm', $this->anything(), true ] );
$this->verifyInvokedOnce()
Verifies that method was invoked only once.
$loader->expects($this->once()) ->method('view') ->with( 'shopConfirm', $this->anything(), true );
You could write code above like below:
$this->verifyInvokedOnce( $loader, 'view', [ 'shopConfirm', $this->anything(), true ] );
$this->verifyInvokedMultipleTimes()
Verifies that method was called exactly $times times.
$loader->expects($this->exactly(2)) ->method('view') ->withConsecutive( ['shopConfirm', $this->anything(), true], ['shopTmplCheckout', $this->anything()] );
You could write code above like below:
$this->verifyInvokedMultipleTimes( $loader, 'view', 2, [ ['shopConfirm', $this->anything(), true], ['shopTmplCheckout', $this->anything()] ] );
$this->verifyNeverInvoked()
Verifies that method was not called.
$loader->expects($this->never()) ->method('view') ->with( 'shopConfirm', $this->anything(), true );
You could write code above like below:
$this->verifyNeverInvoked( $loader, 'view', [ 'shopConfirm', $this->anything(), true ] );
ReflectionHelper
This trait provides helper methods to access private or protected properties and methods.
But generally it is not recommended testing non-public properties or methods, so think twice before you use the methods in this trait.
Import the Kenjis\PhpUnitHelper\ReflectionHelper
trait into your test class:
<?php declare(strict_types=1); namespace Foo\Bar\Test\Unit; use Kenjis\PhpUnitHelper\ReflectionHelper; use PHPUnit\Framework; final class BazTest extends Framework\TestCase { use ReflectionHelper; }
$this->getPrivateProperty()
returns
(mixed) property value.
Gets private or protected property value.
$obj = new SomeClass(); $private_propery = $this->getPrivateProperty( $obj, 'privatePropery' );
$this->setPrivateProperty()
Sets private or protected property value.
$obj = new SomeClass(); $this->setPrivateProperty( $obj, 'privatePropery', 'new value' );
$this->getPrivateMethodInvoker()
returns
(closure) method invoker.
Gets private or protected method invoker.
$obj = new SomeClass(); $method = $this->getPrivateMethodInvoker( $obj, 'privateMethod' ); $this->assertEquals( 'return value of the privateMethod() method', $method() );
DebugHelper
This trait provides helper functions, dd()
and d()
to dump variables.
Import the Kenjis\PhpUnitHelper\DebugHelper
trait into your test class:
<?php declare(strict_types=1); namespace Foo\Bar\Test\Unit; use Kenjis\PhpUnitHelper\DebugHelper; use PHPUnit\Framework; final class BazTest extends Framework\TestCase { use DebugHelper; }
License
This package is licensed using the MIT License.
Please have a look at LICENSE
.