Download the PHP package soft-passio/api-test-cases without Composer
On this page you can find all versions of the php package soft-passio/api-test-cases. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download soft-passio/api-test-cases
More information about soft-passio/api-test-cases
Files in soft-passio/api-test-cases
Download soft-passio/api-test-cases
More information about soft-passio/api-test-cases
Files in soft-passio/api-test-cases
Vendor soft-passio
Package api-test-cases
Short Description Test cases for boost up writing PHPUnit tests for API with Symfony 3 framework
License MIT
Package api-test-cases
Short Description Test cases for boost up writing PHPUnit tests for API with Symfony 3 framework
License MIT
Please rate this library. Is it a good library?
Informations about the package api-test-cases
ApiTestCasesBundle
Test cases for boost up writing PHPUnit functional tests for API with Symfony framework. Bundle is helping you debuging failed tests and bosting TDD process.
Examples failed response
Failure! when making the following request:
POST: http://foo.app/app_test.php/api/security/token
HTTP/1.1 404 Not Found
Date: Sat, 08 Jul 2017 12:28:19 GMT
Server: Apache
X-Powered-By: PHP/7.0.15
Cache-Control: no-cache, private
Content-Length: 84
Content-Type: application/problem+json
{
"detail": "Client is blocked",
"status": 404,
"type": "about:blank",
"title": "Not Found"
}
"Client is blocked" does not match "Client is blockedx".
@@ -1,5 +1,5 @@
{
- "detail": "Client is blockedx",
+ "detail": "Client is blocked",
"status": 404,
"type": "about:blank",
"title": "Not Found"
Usage
All you need to do is extend JsonApiTestCase in your functional controller class.
use SoftPassio\ApiTestCasesBundle\Api\Cases\JsonApiTestCase;
use Symfony\Component\HttpFoundation\Response;
class ProfileControllerTest extends JsonApiTestCase
{
...
}
Testing API methods
Test code:
public function testMeActionSuccess()
{
$this->authenticateFixtureUser('profile/user.yml');
$response = $this->client->get('/api/profile/me');
$this->assertResponse($response, 'profile/me/success', Response::HTTP_OK);
}
Alice schema file:
AppBundle\Entity\User:
user1:
username: test
email: [email protected]
password: test
JWT authentication method with lexik/LexikJWTAuthenticationBundle:
protected function authenticateFixtureUser(
string $userFixturePath,
$expired = JwtTokenFactory::EXPIRATION_TIME
) {
$this->loadFixturesFromFile($userFixturePath);
$tokenData = [
'username' => 'test',
'exp' => time() + $expired,
];
$token = $this->getService('lexik_jwt_authentication.encoder')->encode($tokenData);
self::$staticClient->setDefaultOption('headers/Authorization', 'Bearer '.$token);
return $tokenData;
}
config file - config_test.ynl
security:
encoders:
AppBundle\Entity\User: plaintext
All versions of api-test-cases with dependencies
PHP Build Version
Package Version
Requires
php Version
^7.2
doctrine/orm Version *
sensio/framework-extra-bundle Version ^5.3
coduo/php-matcher Version ^4.0
hautelook/alice-bundle Version 2.1
phpspec/php-diff Version ^1.1
phpunit/phpunit Version ^8.0
symfony/phpunit-bridge Version *
sebastian/diff Version ^3.0
theofidry/alice-data-fixtures Version ^1.1
doctrine/orm Version *
sensio/framework-extra-bundle Version ^5.3
coduo/php-matcher Version ^4.0
hautelook/alice-bundle Version 2.1
phpspec/php-diff Version ^1.1
phpunit/phpunit Version ^8.0
symfony/phpunit-bridge Version *
sebastian/diff Version ^3.0
theofidry/alice-data-fixtures Version ^1.1
The package soft-passio/api-test-cases contains the following files
Loading the files please wait ....