ibpavlov / codeception-json-schema
This package is abandoned and no longer maintained.
The author suggests using the osi-open-source/codeception-json-schema package instead.
Json schema module for validate response by json schema for codeception test framework
v0.3.0
2019-06-07 20:04 UTC
Requires
- php: ^7.0
- justinrainbow/json-schema: ^5.2
Requires (Dev)
- codeception/codeception: ^2.3|^3.0
README
Codeception Module to validate json on a schema.
Installation
composer require digitaladapt/codeception-json-schema
Usage
<?php class MessageApiCest { public function aTest(ApiTester $I) { /* call api */ $I->wantTo('Ensure API Returns Json which matches schema file.'); $I->sendGET('/path/to/api'); /* check if api matches schema */ $I->seeResponseIsValidOnSchemaFile('/path/to/schema.json'); } public function bTest(ApiTester $I) { /* call api */ $I->wantTo('Ensure API Returns Json which matches schema file.'); $I->sendGET('/path/to/api'); /* alternative syntax, check if api matches schema */ $I->canSeeResponseIsValidOnSchemaFile('/path/to/schema.json'); } public function cTest(ApiTester $I) { /* call api */ $I->wantTo('Ensure API Returns Json which matches inline schema.'); $I->sendGET('/path/to/api'); /* if you don't have a separate schema file, that is alright, you can use inline schema */ /* this schema expects the api to return something like {"message": "SOME_STRING"} */ /* schema as php objects */ $schema = (object)[ 'type' => 'object', 'properties' => (object)[ 'message' => (object)[ 'type' => 'string', ], ], 'required' => ['message'], ]; $I->seeResponseIsValidOnSchema($schema); } public function dTest(ApiTester $I) { /* call api */ $I->wantTo('Ensure API Returns Json which matches inline schema.'); $I->sendGET('/path/to/api'); /* if you don't have a separate schema file, that is alright, you can use inline schema */ /* this schema expects the api to return something like {"message": "SOME_STRING"} */ /* json string, must be decoded before checking if response is valid */ $jsonSchema = '{"type":"object","properties":{"message":{"type":"string"}},"required":["message"]}'; /* alternative syntax, notice we decoded the json string */ $I->canSeeResponseIsValidOnSchema(json_decode($jsonSchema)); } }
Also See
Codeception has a built-in syntax for simple json matches, however it is not compatible with json schema, which is why this was created.
<?php class MessageApiCest { public function eTest(ApiTester $I) { /* call api */ $I->wantTo('Ensure API Returns Json which matches type.'); $I->sendGET('/path/to/api'); /* this type expects the api to return something like {"message": "SOME_STRING"} */ $I->seeResponseMatchesJsonType([ 'message' => 'string', ]); } }
Contributing
If you notice anything wrong or have any suggestions on how to make this better, please open an issue.