protected function DrupalWebTestCase::assertResponse

7.x drupal_web_test_case.php protected DrupalWebTestCase::assertResponse($code, $message = '')

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.

111 calls to DrupalWebTestCase::assertResponse()
AccessDeniedTestCase::testAccessDenied in drupal-7.x/modules/system/system.test
AddFeedTestCase::testAddFeed in drupal-7.x/modules/aggregator/aggregator.test
Creates and ensures that a feed is unique, checks source, and deletes feed.
AddFeedTestCase::testAddLongFeed in drupal-7.x/modules/aggregator/aggregator.test
Tests feeds with very long URLs.
AggregatorTestCase::updateFeedItems in drupal-7.x/modules/aggregator/aggregator.test
Updates the feed items.
BlockAdminThemeTestCase::testAdminTheme in drupal-7.x/modules/block/block.test
Check for the accessibility of the admin theme on the block admin page.

... See full list

File

drupal-7.x/modules/simpletest/drupal_web_test_case.php, line 3552

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'));
}