This package contains a collection of additional phpspec matchers.
You can install the package via composer
composer require karriere/phpspec-matchers
To be able to use the matchers you need to add the following definition to your phpspec.yml
extensions:
Karriere\PhpSpecMatchers\Extension: ~
All custom matchers in this package implement the positive and the negative case. For example you can use:
$this->method()->shouldBeAnyOf(1, 2, 3);
and also
$this->method()->shouldNotBeAnyOf(1, 2, 3);
General Matchers
Json Matchers
This matcher allows to check the return value against a set of values.
Assume you have some sort of random mechanism to get an integer between 2 and 4. The you can use the shouldBeAnyOf
matcher:
$this->method()->shouldBeAnyOf(2, 3, 4);
This matcher allows to check if the returned array values are contained in a set of values.
// $this->method() may return [1, 2, 3]
$this->method()->shouldBeSomeOf(1, 2, 3, 4, 5);
This matcher allows to check if the given return value is inside a numeric range.
$this->method()->shouldRangeBetween(2, 4);
$this->method()->shouldRangeBetween(0.1, 0.9);
This matcher allows to check if the given return value is empty. The implementation uses the empty implementation.
$this->method()->shouldBeEmpty();
This matcher allows to check if the given return value is null. The implementation uses the is_null implementation.
$this->method()->shouldBeNull();
This matcher allows to check if the given return value is less than a specified value.
$this->method()->shouldBeLessThan(10);
This matcher allows to check if the given return value is greater than a specified value.
$this->method()->shouldBeGreaterThan(10);
This matcher checks if the return value is a valid json string
$this->method()->shouldBeJson();
This matcher checks if the returned json string contains a json key.
$this->method()->shouldHaveJsonKey('key');
To match against subkey you can use the dot notation. For example let's assume the following json structure
{
"key": {
"subkey": "value"
}
}
The key for this check is 'key.subkey'
$this->method()->shouldHaveJsonKey('key.subkey');
This matcher checks if the returned json string contains the json key and the desired value. The dot syntax for subkeys can also be applied.
$this->method()->shouldHaveJsonKeyWithValue('key.subkey', 'value');
Apache License 2.0 Please see LICENSE for more information.