You are here

protected function DrupalWebTestCase::assertResponse in SimpleTest 6.2

Same name and namespace in other branches
  1. 7.2 drupal_web_test_case.php \DrupalWebTestCase::assertResponse()
  2. 7 drupal_web_test_case.php \DrupalWebTestCase::assertResponse()

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: Message to display.

Return value

Assertion result.

1 call to DrupalWebTestCase::assertResponse()
SimpleTestFunctionalTest::testInternalBrowser in ./simpletest.test
Test the internal browsers functionality.

File

./drupal_web_test_case.php, line 2980

Class

DrupalWebTestCase
Test case for typical Drupal tests.

Code

protected function assertResponse($code, $message = '') {
  $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 : t('HTTP response expected !code, actual !curl_code', array(
    '!code' => $code,
    '!curl_code' => $curl_code,
  )), t('Browser'));
}