本文整理匯總了PHP中ApiTester::getActiveKeyholderMember方法的典型用法代碼示例。如果您正苦於以下問題:PHP ApiTester::getActiveKeyholderMember方法的具體用法?PHP ApiTester::getActiveKeyholderMember怎麽用?PHP ApiTester::getActiveKeyholderMember使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類ApiTester
的用法示例。
在下文中一共展示了ApiTester::getActiveKeyholderMember方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: 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']);
}
示例2: successfullMemberLogin
public function successfullMemberLogin(ApiTester $I)
{
$I->am('an active member');
$I->wantTo('post to the main door endpoint and get an OK back');
$user = $I->getActiveKeyholderMember();
$keyFob = $I->getMemberKeyFob($user->id);
//Post the keyfob to the endpoint
$I->sendPOST('/access-control/main-door', ['data' => $keyFob->key_id]);
//The endpoint always returns 200
$I->seeResponseCodeIs(200);
//Make sure a good response is returned
$I->seeResponseIsJson();
//Response contains their name
$I->seeResponseContains($user->given_name);
//Make sure the request was allowed
$I->seeResponseContainsJson(['valid' => '1']);
$I->dontSeeHttpHeader('Set-Cookie');
$I->dontSeeHttpHeader('Built-By');
//Confirm an access log record was created
$I->seeInDatabase('access_log', ['user_id' => $user->id, 'key_fob_id' => $keyFob->id, 'response' => 200, 'service' => 'main-door']);
}
示例3: 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]);
}