當前位置: 首頁>>代碼示例>>PHP>>正文


PHP ApiTester::canSeeResponseContainsJson方法代碼示例

本文整理匯總了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]);
 }
開發者ID:adamstrawson,項目名稱:BBMembershipSystem,代碼行數:23,代碼來源:DeviceAccessControlCest.php

示例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']);
 }
開發者ID:adamstrawson,項目名稱:BBMembershipSystem,代碼行數:14,代碼來源:ACSCest.php


注:本文中的ApiTester::canSeeResponseContainsJson方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。