本文整理汇总了PHP中AcceptanceTester::seeResponseCodeIs方法的典型用法代码示例。如果您正苦于以下问题:PHP AcceptanceTester::seeResponseCodeIs方法的具体用法?PHP AcceptanceTester::seeResponseCodeIs怎么用?PHP AcceptanceTester::seeResponseCodeIs使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类AcceptanceTester
的用法示例。
在下文中一共展示了AcceptanceTester::seeResponseCodeIs方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: useDefaultWhenNoStatusCodeIsSetTest
public function useDefaultWhenNoStatusCodeIsSetTest(AcceptanceTester $I)
{
$I->wantTo('fail when the status code is not set');
$request = new Request();
$request->setUrl(new Condition('isEqualTo', '/the/request/url'));
$response = (new Response())->setStatusCode(null);
$expectation = new Expectation();
$expectation->setRequest($request)->setResponse($response);
$I->haveHttpHeader('Content-Type', 'application/json');
$I->sendPOST('/__phiremock/expectations', $expectation);
$I->seeResponseCodeIs(201);
$I->sendGET('/__phiremock/expectations');
$I->seeResponseCodeIs(200);
$I->seeResponseIsJson();
$I->seeResponseEquals('[{"scenarioName":null,"scenarioStateIs":null,"newScenarioState":null,' . '"request":{"method":null,"url":{"isEqualTo":"\\/the\\/request\\/url"},"body":null,"headers":null},' . '"response":{"statusCode":200,"body":null,"headers":null,"delayMillis":null},' . '"proxyTo":null,"priority":0}]');
}
示例2: createAnExpectationWithRegexReplacementFromBodyAndUrl
public function createAnExpectationWithRegexReplacementFromBodyAndUrl(AcceptanceTester $I)
{
$expectation = PhiremockClient::on(A::postRequest()->andUrl(Is::matching('/&test=(\\d+)/'))->andBody(Is::matching('/a tomato (\\d+)/')))->then(Respond::withStatusCode(200)->andBody('the numbers are ${url.1} and ${body.1}'));
$this->phiremock->createExpectation($expectation);
$I->sendPOST('/potato?param1=123&test=456', 'this is a tomato 3kg it weights');
$I->seeResponseCodeIs('200');
$I->seeResponseContains('the numbers are 456 and 3');
}
示例3: mockRequestWithDelayTest
public function mockRequestWithDelayTest(AcceptanceTester $I)
{
$I->wantTo('mock a request with delay');
$request = new Request();
$request->setUrl(new Condition('isEqualTo', '/the/request/url'))->setMethod('GET');
$response = new Response();
$response->setDelayMillis(2000);
$expectation = new Expectation();
$expectation->setRequest($request)->setResponse($response);
$I->haveHttpHeader('Content-Type', 'application/json');
$I->sendPOST('/__phiremock/expectations', $expectation);
$I->seeResponseCodeIs(201);
$start = microtime(true);
$I->sendGET('/the/request/url');
$I->seeResponseCodeIs(200);
$I->assertGreaterThan(2000, (microtime(true) - $start) * 1000);
}
示例4: createAnExpectationWithProxyToTest
public function createAnExpectationWithProxyToTest(AcceptanceTester $I)
{
$expectation = PhiremockClient::on(A::postRequest()->andUrl(Is::equalTo('/potato'))->andHeader('X-Potato', Is::sameStringAs('bAnaNa'))->andScenarioState('PotatoScenario', 'Scenario.START')->andBody(Is::equalTo('{"key": "This is the body"}')))->proxyTo('https://es.wikipedia.org/wiki/Proxy');
$this->phiremock->createExpectation($expectation);
$I->sendGET('/__phiremock/expectations');
$I->seeResponseCodeIs('200');
$I->seeResponseIsJson();
$I->seeResponseEquals('[{"scenarioName":"PotatoScenario","scenarioStateIs":"Scenario.START",' . '"newScenarioState":null,"request":{"method":"post","url":{"isEqualTo":"\\/potato"},' . '"body":{"isEqualTo":"{\\"key\\": \\"This is the body\\"}"},"headers":{"X-Potato":' . '{"isSameString":"bAnaNa"}}},"response":{"statusCode":200,"body":null,"headers":' . 'null,"delayMillis":null},' . '"proxyTo":"https:\\/\\/es.wikipedia.org\\/wiki\\/Proxy","priority":0}]');
}
示例5: failOnEmptyHeadersInspecificationTest
public function failOnEmptyHeadersInspecificationTest(AcceptanceTester $I)
{
$I->wantTo('fail when creating a specification with invalid headers');
$request = new Request();
$request->setUrl(new Condition('isEqualTo', '/the/request/url'));
$response = (new Response())->setHeaders('potato');
$specification = new Expectation();
$specification->setRequest($request)->setResponse($response);
$I->haveHttpHeader('Content-Type', 'application/json');
$I->sendPOST('/__phiremock/expectations', $specification);
$I->seeResponseCodeIs(500);
}
示例6: failWhenInvalidValueSpecifiedTest
public function failWhenInvalidValueSpecifiedTest(AcceptanceTester $I)
{
$I->wantTo('create an expectation that checks url using matches');
$request = new Request();
$request->setUrl(new Condition('isEqualTo', null));
$response = new Response();
$response->setStatusCode(201);
$expectation = new Expectation();
$expectation->setRequest($request)->setResponse($response);
$I->haveHttpHeader('Content-Type', 'application/json');
$I->sendPOST('/__phiremock/expectations', $expectation);
$I->seeResponseCodeIs(500);
$I->seeResponseIsJson();
$I->seeResponseEquals('{"result" : "ERROR", "details" : ["Condition value can not be null"]}');
}
示例7: returnCreatedExpectationTest
public function returnCreatedExpectationTest(AcceptanceTester $I)
{
$request = new Request();
$urlCondition = new Condition('isEqualTo', '/the/request/url');
$request->setUrl($urlCondition);
$response = new Response();
$response->setStatusCode(201);
$expectation = new Expectation();
$expectation->setRequest($request)->setResponse($response);
$I->haveHttpHeader('Content-Type', 'application/json');
$I->sendPOST('/__phiremock/expectations', $expectation);
$I->sendGET('/__phiremock/expectations');
$I->seeResponseCodeIs('200');
$I->seeResponseIsJson();
$I->seeResponseEquals('[{"scenarioName":null,"scenarioStateIs":null,"newScenarioState":null,' . '"request":{"method":null,"url":{"isEqualTo":"\\/the\\/request\\/url"},"body":null,"headers":null},' . '"response":{"statusCode":201,"body":null,"headers":null,"delayMillis":null},' . '"proxyTo":null,"priority":0}]');
}
示例8: responseExpectedWhenSeveralHeadersMatchesTest
public function responseExpectedWhenSeveralHeadersMatchesTest(AcceptanceTester $I)
{
$I->wantTo('see if mocking based in several request headers works');
$request = new Request();
$request->setHeaders(['Content-type' => new Condition('isEqualTo', 'application/x-www-form-urlencoded'), 'X-Potato' => new Condition('matches', '/.*tomato.*/'), 'X-Tomato' => new Condition('isSameString', 'PoTaTo')]);
$response = new Response();
$response->setBody('Found');
$expectation = new Expectation();
$expectation->setRequest($request)->setResponse($response);
$I->haveHttpHeader('Content-Type', 'application/json');
$I->sendPOST('/__phiremock/expectations', $expectation);
$I->seeResponseCodeIs(201);
$I->haveHttpHeader('Content-Type', 'application/x-www-form-urlencoded');
$I->sendGET('/dontcare');
$I->seeResponseCodeIs(404);
$I->haveHttpHeader('Content-Type', 'application/x-www-form-urlencoded');
$I->haveHttpHeader('X-potato', 'a-tomato-0');
$I->haveHttpHeader('X-tomato', 'potato');
$I->sendGET('/dontcare');
$I->seeResponseEquals('Found');
}
示例9: AcceptanceTester
<?php
$I = new AcceptanceTester($scenario);
$I->wantTo('test various search examples');
// simple search of child table
$I->sendGet('/attendees?page=1&per_page=5');
$I->seeResponseCodeIs(200);
$I->seeResponseIsJson();
$I->seeResponseJsonMatchesJsonPath('$.attendees[*].id');
// complex search on child table
$I->sendGet('/attendees?page=1&per_page=5');
$I->seeResponseCodeIs(200);
$I->seeResponseIsJson();
$I->seeResponseJsonMatchesJsonPath('$.attendees[*].id');
// simple search of complex table
$I->sendGet('/events?page=1&per_page=5');
$I->seeResponseCodeIs(200);
$I->seeResponseIsJson();
$I->seeResponseJsonMatchesJsonPath('$.events[*].id');
// test with syntax
$I->sendGet('/events?page=1&per_page=5&with=cabins,locations,programs,sessions');
$I->seeResponseCodeIs(200);
$I->seeResponseIsJson();
$I->seeResponseJsonMatchesJsonPath('$.events[*].id');
$I->seeResponseJsonMatchesJsonPath('$.locations[*].id');
$I->seeResponseJsonMatchesJsonPath('$.programs[*].id');
$I->seeResponseJsonMatchesJsonPath('$.cabins[*].id');
$I->seeResponseJsonMatchesJsonPath('$.sessions[*].id');
// test with + single individual syntax
$I->sendGet('/events/1?page=1&per_page=5&with=cabins,locations,programs,sessions');
$I->seeResponseCodeIs(200);
示例10: it_validates_name_length
public function it_validates_name_length(AcceptanceTester $I)
{
$I->amOnRoute(RegisterPage::$ROUTE);
$I->fillField('name', 'a');
$I->submitForm(RegisterPage::$formId, [], 'Register');
$I->see('The name must be at least 3 characters.');
$I->seeResponseCodeIs(200);
}
示例11: responseExpectedWhenRequestBodyCaseInsensitiveEqualsTest
public function responseExpectedWhenRequestBodyCaseInsensitiveEqualsTest(AcceptanceTester $I)
{
$I->wantTo('see if mocking based in request body case insensitive equality works');
$request = new Request();
$request->setBody(new Condition('isSameString', 'pOtAtO'));
$response = new Response();
$response->setBody('Found');
$expectation = new Expectation();
$expectation->setRequest($request)->setResponse($response);
$I->haveHttpHeader('Content-Type', 'application/json');
$I->sendPOST('/__phiremock/expectations', $expectation);
$I->seeResponseCodeIs(201);
$I->sendPOST('/dontcare', 'potato');
$I->seeResponseCodeIs(200);
$I->seeResponseEquals('Found');
}
示例12: fullUrlShouldBeEvaluated
public function fullUrlShouldBeEvaluated(AcceptanceTester $I)
{
$expectation = PhiremockClient::on(A::postRequest()->andUrl(Is::equalTo('/potato/coconut/?tomato=123'))->andBody(Is::containing('This is the body')))->then(Respond::withStatusCode(202)->andBody('Tomato!')->andDelayInMillis(2500)->andHeader('X-Tomato', 'Potato-received'));
$this->phiremock->createExpectation($expectation);
$I->sendPOST('/potato/coconut/?tomato=123', '{"key": "This is the body"}');
$I->seeResponseCodeIs(202);
$I->seeResponseEquals('Tomato!');
$I->seeHttpHeader('X-Tomato', 'Potato-received');
}
示例13: failWhenInvalidMethodSpecifiedTest
public function failWhenInvalidMethodSpecifiedTest(AcceptanceTester $I)
{
$I->wantTo('create a specification that checks url using matches');
$request = new Request();
$request->setMethod('potato');
$response = new Response();
$response->setStatusCode(201);
$expectation = new Expectation();
$expectation->setRequest($request)->setResponse($response);
$I->haveHttpHeader('Content-Type', 'application/json');
$I->sendPOST('/__phiremock/expectations', $expectation);
$I->seeResponseCodeIs(500);
$I->seeResponseIsJson();
$I->seeResponseEquals('{"result" : "ERROR", "details" : {"request":"method: Field method, was set with invalid value: \'potato\'"}}');
}
示例14: AcceptanceTester
<?php
$I = new AcceptanceTester($scenario);
$I->wantTo('Test AUTH related functions');
$newAccount = array('password_confirm' => 'password01*', 'email' => 'bbarton@email.com', 'first_name' => 'billy', 'last_name' => 'barton', 'user_type' => 'Owner', 'gender' => 'Female', 'relationship' => 'Mother', 'user' => '', 'password' => 'password01*', 'number' => '123-456-7890', 'primary' => 1, 'phone_type' => 'Office');
// create a brand new account
$I->sendPOST('auth/create', $newAccount);
$I->seeResponseIsJson();
$I->seeResponseCodeIs(201);
$result = $I->grabDataFromResponseByJsonPath('$.status');
// load a particular employee
// $I->sendGet("/employees/{$newEmployeeID[0]}");
// $I->seeResponseCodeIs(200);
// $I->seeResponseIsJson();
// $I->seeResponseJsonMatchesJsonPath('$.employee[0].id');
// now remove an employee
// $I->sendDELETE('employees/' . $newEmployeeID[0]);
// $I->seeResponseCodeIs(204);
示例15: creationWithAllOptionsFilledTest
public function creationWithAllOptionsFilledTest(AcceptanceTester $I)
{
$I->wantTo('create an expectation with all possible option filled');
$request = (new Request())->setUrl(new Condition('isEqualTo', '/the/request/url'))->setBody(new Condition('isEqualTo', 'the body'))->setMethod('get')->setHeaders(['Content-Type' => new Condition('matches', '/json/'), 'Accepts' => new Condition('isEqualTo', 'application/json'), 'X-Some-Random-Header' => new Condition('isEqualTo', 'random value')]);
$response = (new Response())->setStatusCode(201)->setBody('Response body')->setDelayMillis(5000)->setHeaders(['X-Special-Header' => 'potato', 'Location' => 'href://potato.tmt']);
$expectation = (new Expectation())->setRequest($request)->setResponse($response)->setScenarioName('potato')->setScenarioStateIs('tomato')->setNewScenarioState('banana')->setPriority(3);
$I->haveHttpHeader('Content-Type', 'application/json');
$I->sendPOST('/__phiremock/expectations', $expectation);
$I->sendGET('/__phiremock/expectations');
$I->seeResponseCodeIs('200');
$I->seeResponseIsJson();
$I->seeResponseEquals('[{"scenarioName":"potato","scenarioStateIs":"tomato","newScenarioState":"banana",' . '"request":{' . '"method":"get","url":{"isEqualTo":"\\/the\\/request\\/url"},' . '"body":{"isEqualTo":"the body"},' . '"headers":{' . '"Content-Type":{"matches":"\\/json\\/"},' . '"Accepts":{"isEqualTo":"application\\/json"},' . '"X-Some-Random-Header":{"isEqualTo":"random value"}}},' . '"response":{' . '"statusCode":201,"body":"Response body","headers":{' . '"X-Special-Header":"potato",' . '"Location":"href:\\/\\/potato.tmt"},' . '"delayMillis":5000},' . '"proxyTo":null,"priority":3}]');
}