| layout | doc |
|---|---|
| title | JsonType - Codeception - Documentation |
JsonType matches JSON structures against templates. You can specify the type of fields in JSON or add additional validation rules.
JsonType is used by REST module in seeResponseMatchesJsonType and dontSeeResponseMatchesJsonType methods.
Usage example:
{% highlight php %}
'davert', 'id' => 1]); $jsonType->matches([ 'name' => 'string:!empty', 'id' => 'integer:>0|string:>0', ])); // => true $jsonType->matches([ 'id' => 'string', ])); // => `id: 1` is not of type string ?>{% endhighlight %}
Class JsonType @package Codeception\Util
Creates instance of JsonType
Pass an array or \Codeception\Util\JsonArray with data.
If non-associative array is passed - the very first element of it will be used for matching.
param$jsonArray array|\Codeception\Util\JsonArray
Adds custom filter to JsonType list. You should specify a name and parameters of a filter.
Example:
{% highlight php %}
use it as 'string:slug' // add custom function to matcher with `len($val)` syntax // parameter matching patterns should be valid regex and start with `/` char JsonType::addCustomFilter('/len\((.*?)\)/', function($value, $len) { return strlen($value) == $len; }); // use it as 'string:len(5)' ?>{% endhighlight %}
param$nameparam callable$callable
Removes all custom filters
Checks data against passed JsonType.
If matching fails function returns a string with a message describing failure.
On success returns true.
param array$jsonTypereturnbool|string