protected function WebTestBase::assertResponse in SimpleTest 8.3
Asserts the page responds with the specified response code.
Parameters
$code: Response code. For example 200 is a successful page request. For a list of all codes see http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html.
$message: (optional) A message to display with the assertion. Do not translate messages: use \Drupal\Component\Render\FormattableMarkup to embed variables in the message text, not t(). If left blank, a default message will be displayed.
$group: (optional) The group this message is in, which is displayed in a column in test output. Use 'Debug' to indicate this is debugging output. Do not translate this string. Defaults to 'Browser'; most tests do not override this default.
Return value
Assertion result.
3 calls to WebTestBase::assertResponse()
- SimpleTestBrowserTest::testInternalBrowser in src/
Tests/ SimpleTestBrowserTest.php - Test the internal browsers functionality.
- SimpleTestBrowserTest::testUserAgentValidation in src/
Tests/ SimpleTestBrowserTest.php - Test validation of the User-Agent header we use to perform test requests.
- WebTestBase::drupalLogout in src/
WebTestBase.php - Logs a user out of the internal browser and confirms.
File
- src/
WebTestBase.php, line 1976
Class
- WebTestBase
- Test case for typical Drupal tests.
Namespace
Drupal\simpletestCode
protected function assertResponse($code, $message = '', $group = 'Browser') {
$curl_code = curl_getinfo($this->curlHandle, CURLINFO_HTTP_CODE);
$match = is_array($code) ? in_array($curl_code, $code) : $curl_code == $code;
return $this
->assertTrue($match, $message ? $message : new FormattableMarkup('HTTP response expected @code, actual @curl_code', [
'@code' => $code,
'@curl_code' => $curl_code,
]), $group);
}