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


PHP ApiTester::setHeader方法代碼示例

本文整理匯總了PHP中ApiTester::setHeader方法的典型用法代碼示例。如果您正苦於以下問題:PHP ApiTester::setHeader方法的具體用法?PHP ApiTester::setHeader怎麽用?PHP ApiTester::setHeader使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在ApiTester的用法示例。


在下文中一共展示了ApiTester::setHeader方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: create

 public function create(ApiTester $I)
 {
     $I->createAndLoginUser();
     $faker = $I->getFaker();
     $project = ['title' => $faker->streetName, 'description' => $faker->text('150')];
     $I->sendPOST('api/v1/projects', $project);
     $project = json_decode($I->grabResponse());
     $I->assertProject('$.data', 201);
     $project_id = $project->data->_id;
     $I->setHeader('X-Application', $project_id);
     $I->sendPOST('api/v1/projects/consumers', ['description' => $faker->text('20'), 'scope' => ['decisions_make']]);
     $I->assertConsumers('$.data[*]', 201);
     $I->sendPOST('api/v1/projects/consumers', ['description' => $faker->text('20'), 'scope' => ['check', 'undefined_scope']]);
     $I->seeResponseCodeIs(422);
 }
開發者ID:Nebo15,項目名稱:gandalf.api,代碼行數:15,代碼來源:ProjectsCest.php

示例2: filters

 public function filters(ApiTester $I)
 {
     $I->createAndLoginUser();
     $I->createProjectAndSetHeader();
     $table = $I->createTable($I->getTableShortData());
     $tableDataAll = $I->getShortTableDataMatchingTypeAll();
     $tableDataAll['description'] = 'Matching type scoring';
     $tableAll = $I->createTable($tableDataAll);
     $I->sendGET('api/v1/admin/tables?title=Title');
     $I->assertTrue(count($I->getResponseFields()->data) == 2, "Wrong amount of the Tables by filter 'Title'");
     $I->sendGET('api/v1/admin/tables?description=cription');
     $I->assertEquals($table->_id, $I->getResponseFields()->data[0]->_id);
     $I->sendGET('api/v1/admin/tables?description=ching');
     $I->assertEquals($tableAll->_id, $I->getResponseFields()->data[0]->_id);
     $I->sendGET('api/v1/admin/tables?matching_type=invalid');
     $I->seeResponseCodeIs(422);
     $I->sendGET('api/v1/admin/tables?matching_type=scoring');
     $I->assertEquals($tableAll->_id, $I->getResponseFields()->data[0]->_id);
     $I->sendGET('api/v1/admin/tables?matching_type=decision');
     $I->assertEquals($table->_id, $I->getResponseFields()->data[0]->_id);
     $secondProject = $I->createProject(true);
     $I->setHeader('X-Application', $secondProject->_id);
     $I->sendGET('api/v1/admin/tables');
     $I->assertEquals(0, count($I->getResponseFields()->data));
 }
開發者ID:Nebo15,項目名稱:gandalf.api,代碼行數:25,代碼來源:TablesCest.php

示例3: invitation

 public function invitation(ApiTester $I)
 {
     $faker = $I->getFaker();
     $I->createAndLoginUser();
     $first_project = $I->createProjectAndSetHeader();
     $second_user_email = $faker->email;
     $I->sendPOST('api/v1/invite', ['email' => $second_user_email, 'role' => 'manager', 'scope' => ['tables_create', 'tables_view']]);
     $I->seeResponseCodeIs(200);
     $second_project = $I->createProject(true);
     $I->setHeader('X-Application', $second_project->_id);
     $I->sendPOST('api/v1/invite', ['email' => $second_user_email, 'role' => 'manager', 'scope' => ['tables_create', 'tables_view']]);
     $I->seeResponseCodeIs(200);
     $I->logout();
     $I->loginClient($I->getCurrentClient());
     $I->loginUser($I->createUser(true, $second_user_email));
     $I->sendGET('api/v1/projects');
     $I->seeResponseCodeIs(200);
     $I->assertContains($first_project->_id, $I->grabResponse());
     $I->assertContains($second_project->_id, $I->grabResponse());
 }
開發者ID:Nebo15,項目名稱:gandalf.api,代碼行數:20,代碼來源:UsersCest.php


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