本文整理匯總了PHP中ApiTester::canSeeResponseCodeIs方法的典型用法代碼示例。如果您正苦於以下問題:PHP ApiTester::canSeeResponseCodeIs方法的具體用法?PHP ApiTester::canSeeResponseCodeIs怎麽用?PHP ApiTester::canSeeResponseCodeIs使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類ApiTester
的用法示例。
在下文中一共展示了ApiTester::canSeeResponseCodeIs方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: invalidTime
public function invalidTime(ApiTester $I)
{
$I->am('an invalid device');
$I->wantTo('verify the endpoint returns validation failures - invalid time');
//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' => 'ABCDEF123456', 'message' => 'boot', 'service' => 'entry', 'time' => 'abcdefgh']);
$I->canSeeResponseCodeIs(422);
}
示例2: 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]);
}
示例3: accessForCheck
public function accessForCheck(ApiTester $I)
{
$first_user = $I->createUser(true, '', false);
$second_user = $I->createUser(true);
$I->loginUser($first_user);
$I->createProjectAndSetHeader();
$consumer = $I->createConsumer();
$table = $I->createTable();
$table_id = $table->_id;
$data = ['borrowers_phone_verification' => 'Positive', 'contact_person_phone_verification' => 'Positive', 'internal_credit_history' => 'Positive', 'employment' => true, 'property' => true, 'matching_rules_type' => 'decision'];
$I->sendPOST("api/v1/tables/{$table_id}/decisions", $data);
$I->canSeeResponseCodeIs(403);
$I->seeResponseContains("Project owner is not activated, try again later");
$I->sendPOST('api/v1/projects/users', ['user_id' => $second_user->_id, 'role' => 'manager', 'scope' => ['tables_view', 'decisions_make']]);
$I->loginUser($second_user);
$I->sendPOST("api/v1/tables/{$table_id}/decisions", $data);
$I->canSeeResponseCodeIs(403);
$I->seeResponseContains("Project owner is not activated, try again later");
$I->loginConsumer($consumer);
$I->sendPOST("api/v1/tables/{$table_id}/decisions", $data);
$I->canSeeResponseCodeIs(403);
$I->seeResponseContains("Project owner is not activated, try again later");
$I->logout();
$I->loginClient($I->getCurrentClient());
$I->sendPOST('api/v1/users/verify/email', ['token' => $first_user->sandbox->token_email->token]);
$I->seeResponseCodeIs(200);
$I->loginUser($first_user);
$I->makeDecision($table_id);
$I->loginConsumer($consumer);
$I->makeDecision($table_id);
$I->loginUser($second_user);
$I->makeDecision($table_id);
}