Test tool for PHP
Unit test library that taste good., (*1)
, (*2)
, (*3)
, (*4)
In your project root folder:, (*5)
composer require --dev khalyomede/matcha:0.*
require(__DIR__ . '/../vendor/autoload.php'); use function Khalyomede\Style\expect; describe('trim', function() { it('should return the same string if the string has no spaces around', function() { expect( trim('hello world') )->toBe()->equalTo('hello world'); }); }); return run();
require(__DIR__ . '/../vendor/autoload.php'); use function Khalyomede\Style\expect; describe('empty', function() { it('should return true if the string has no characters', function() { expect( empty('') )->toBe()->true(); }); }); return run();
require(__DIR__ . '/../vendor/autoload.php'); use function Khalyomede\Style\expect; describe('isset', function() { it('should return false if the variable does not exists', function() { expect( isset($GLOBALS['php6']) )->toBe()->false(); }); }); return run();
require(__DIR__ . '/../vendor/autoload.php'); use function Khalyomede\Style\expect; describe('array-sum', function() { it('should not return null', function() { expect( array_sum([1, 2, 3]) )->not()->toBe()->null(); }); }); return run();
require(__DIR__ . '/../vendor/autoload.php'); use function Khalyomede\Style\expect; describe('echo', function() { it('it should display the correct message', function() { expect(function() { echo 'hello world'; })->toDisplay('hello world'); }); }); return run();
require(__DIR__ . '/../vendor/autoload.php'); use function Khalyomede\Style\expect; describe('empty', function() { it('it should return true if an array is empty', function() { expect( empty([]) )->toBe()->aBoolean(); }); }); return run();
require(__DIR__ . '/../vendor/autoload.php'); use function Khalyomede\Style\expect; describe('json', function() { it('should be a valid json string', function() { expect('{"hello": "world"}')->toBe()->aString()->inJsonFormat(); }); }); return run();
require(__DIR__ . '/../vendor/autoload.php'); use function Khalyomede\Style\expect; describe('database connectivity', function() { it('should be reachable', function() { expect([ 'driver' => 'mysql', 'host' => 'ensembldb.ensembl.org', 'user' => 'anonymous' ])->toBe()->aDatabase()->thatIsAccessible(); }); }); return run();
require(__DIR__ . '/../vendor/autoload.php'); use function Khalyomede\Style\expect; use Khalyomede\ReportLevel; describe('array', function() { it('should merge two arrays', function() { expect( array_merge([1, 2, 3], [4, 5, 6]) )->toBe()->equalTo([1, 2, 3, 4, 5, 6]); }); it('should diff two array', function() { expect( array_count_values([1, 1, 3]) )->toBe()->equalTo([1 => 2, 3 => 1]); }); it('should shuffle an array', function() { $array = [1, 2]; expect( shuffle($array) )->toBe()->anArray(); }); }); report('detailed'); // or report(ReportLevel::DETAILED); return run();
use function Khalyomede\Style\expect; describe('abs', function() { it('it should give the absolute value for a positive value', function() { expect(abs(-10 + 2))->toBe()->equalTo(8); }); it('should give the absolute value for a positive value', function() { expect(abs(10 + 2))->toBe()->equalTo(12); }); });
$ bin/matcha example/tests/example-10.php 2018-10-13 18:55:11.628200 โ Running tests for "abs" 2018-10-13 18:55:11.630700 โ 2 tests completed, 0 tests failed 2018-10-13 18:55:11.630800 โ tests ran in 0.0015 sec. (+0.0018 sec.) 2 / 2 โโ 100 %
Check /example/tests, all the files that ends with .php
. You are not constraint by the extension .test.php
, you can ommit it., (*6)
$ bin/matcha example/tests/ 2018-10-13 18:58:05.348300 โ Running tests for "abs" 2018-10-13 18:58:05.351300 โ Running tests for "array_sum" 2018-10-13 18:58:05.351400 โ Running tests for "count" 2018-10-13 18:58:05.351500 โ 8 tests completed, 0 tests failed 2018-10-13 18:58:05.351500 โ tests ran in 0.0019 sec. (+0.0022 sec.) 8 / 8 โโโโโโโโ 100 %
This example is intended to show you how can all of these function can be mixed together., (*7)
require(__DIR__ . '/../vendor/autoload.php'); use function Khalyomede\Style\expect; describe('trim', function() { it('should return a string when triming a string', function() { expect(trim('hello world'))->toBe()->aString(); }); it('should return a string even if triming null', function() { expect(trim(null))->toBe()->aString(); }); it('should return the same string when triming a string without spaces around', function() { expect(trim('hello world'))->toBe()->equalTo('hello world'); }); it('should return the string without spaces around if triming a string with spaces around', function() { expect(trim(' hello world '))->toBe()->equalTo('hello world'); }); }); describe('empty', function() { it('should return true if checking null', function() { expect(empty(null))->toBe()->strictly()->true(); }); it('should return true if checking false', function() { expect(empty(false))->toBe()->true(); }); it('should return true if checking an empty array', function() { expect(empty([]))->toBe()->true(); }); }); describe('isset', function() { it('should return false if a variable is not set', function() { expect(isset($php6))->toBe()->false(); }); it('should return true if an array is set', function() { expect(isset($_GET))->toBe()->true(); }); }); return run();
Returns a new Expect instance., (*8)
function expect($mixed): Expect
require(__DIR__ '/../vendor/autoload.php'); use function Khalyomede\Expect; expect( empty('hello world') );
require(__DIR__ '/../vendor/autoload.php'); use function Khalyomede\Expect; expect(function() { throw new Exception('exception manually thrown'); });
Asserts that we expect the inverse of the test., (*9)
public function not(): Expect
require(__DIR__ . '/../vendor/autoload.php'); use function Khalyomede\Style\expect; describe('empty', function() { it('should not return true if the string is not empty', function() { expect( empty('hello world') )->not()->toBe()->true(); }); }); return run();
Asserts that we expect the test to be also type-tested (this will prevent from PHP to perform implicit cast when running the test)., (*10)
public function strictly(): Expect
require(__DIR__ . '/../vendor/autoload.php'); use function Khalyomede\Style\expect; describe('int cast', function() { it('should return the integer equivalent of the string representation of a number', function() { expect((int) '1')->toBe()->strictly()->equalTo(1); }); }); return run();
Asserts that we are testing an equality., (*11)
public function toBe(): Expect
require(__DIR__ . '/../vendor/autoload.php'); use function Khalyomede\Style\expect; describe('trim', function() { it('should return the same string if it has no spaces around', function() { expect( trim('hello world') )->toBe()->equalTo('hello world'); }); }); return run();
Asserts that we are testing an equality against a particular value., (*12)
public function equalTo($mixed): Expect
require(__DIR__ . '/../vendor/autoload.php'); use function Khalyomede\Style\expect; describe('implicit cast', function() { it('should implicitly cast the string representation of a number', function() { expect('1')->toBe()->equalTo(1) }); }); return run();
Update the level of report in console., (*13)
function report(string $level): void
Available reports levels are detailed
, normal
(by default) and reduced
., (*14)
Reports levels can be used through Khalyomede\ReportLevel
class:, (*15)
use Khalyomede\ReportLevel; ReportLevel::DETAILED; ReportLevel::NORMAL; ReportLevel::REDUCED;