mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-20 13:39:27 +00:00
16 lines
481 B
PHP
16 lines
481 B
PHP
<?php
|
|
|
|
$I = new ApiTester($scenario);
|
|
$I->wantTo('test the Login API');
|
|
$I->haveHttpHeader('FHC-API-KEY', 'testapikey@fhcomplete.org');
|
|
//$I->haveHttpHeader('username', 'testapikey@fhcomplete.org');
|
|
//$I->haveHttpHeader('password', 'testapikey@fhcomplete.org');
|
|
$I->sendPOST('AuthAPI/login?username=admin&password=1q2w3');
|
|
$I->seeResponseCodeIs(200);
|
|
$I->seeResponseIsJson();
|
|
$I->seeResponseContainsJson([
|
|
'success' => true,
|
|
'message' => 'User successfully logged in']);
|
|
|
|
|