本文整理汇总了PHP中ApiTester::canSeeResponseContainsJson方法的典型用法代码示例。如果您正苦于以下问题:PHP ApiTester::canSeeResponseContainsJson方法的具体用法?PHP ApiTester::canSeeResponseContainsJson怎么用?PHP ApiTester::canSeeResponseContainsJson使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ApiTester
的用法示例。
在下文中一共展示了ApiTester::canSeeResponseContainsJson方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: successfullEnd
public function successfullEnd(ApiTester $I)
{
$I->am('a valid user');
$I->wantTo('verify the endpoint returns a success response and creates the proper records');
$user = $I->getActiveKeyholderMember();
$keyFob = $I->getMemberKeyFob($user->id);
//Send a bad code to the endpoint
$I->sendPOST('/access-control/device', ['data' => $keyFob->key_id . '|welder|start']);
//The device endpoint always returns 200
$I->canSeeResponseCodeIs(200);
//Make sure a success is returned and a session started
$I->canSeeResponseContainsJson(['valid' => '1']);
$I->seeInDatabase('equipment_log', ['user_id' => $user->id, 'device' => 'welder', 'active' => 1]);
$I->sendPOST('/access-control/device', ['data' => $keyFob->key_id . '|welder|end']);
$I->canSeeResponseCodeIs(200);
$I->dontSeeHttpHeader('Set-Cookie');
$I->dontSeeHttpHeader('Built-By');
$I->canSeeResponseContainsJson(['valid' => '1']);
//Make sure our database record is not active
$I->seeInDatabase('equipment_log', ['user_id' => $user->id, 'device' => 'welder', 'active' => 0]);
//And make sure there is no other active record
$I->cantSeeInDatabase('equipment_log', ['user_id' => $user->id, 'device' => 'welder', 'active' => 1]);
}
示例2: validDoorEntry
public function validDoorEntry(ApiTester $I)
{
$I->am('a valid device');
$I->wantTo('verify the endpoint returns a success door lookup response');
$user = $I->getActiveKeyholderMember();
$keyFob = $I->getMemberKeyFob($user->id);
//Send a bad code to the endpoint
$I->haveHttpHeader('Content-Type', 'application/json');
$I->haveHttpHeader('Accept', 'application/json');
$I->sendPOST('/acs', ['device' => 'main-door', 'tag' => $keyFob->key_id, 'message' => 'lookup', 'service' => 'entry', 'time' => time()]);
$I->canSeeResponseCodeIs(200);
//Make sure a failure is returned
$I->canSeeResponseContainsJson(['valid' => '1']);
}