protected function DrupalWebTestCase::assertUrl

7.x drupal_web_test_case.php protected DrupalWebTestCase::assertUrl($path, array $options = array(), $message = '', $group = 'Other')

Pass if the internal browser's URL matches the given path.

Parameters

$path: The expected system path.

$options: (optional) Any additional options to pass for $path to url().

$message: Message to display.

$group: The group this message belongs to, defaults to 'Other'.

Return value

TRUE on pass, FALSE on fail.

3 calls to DrupalWebTestCase::assertUrl()
FieldUIManageFieldsTestCase::testDuplicateFieldName in drupal-7.x/modules/field_ui/field_ui.test
Tests that a duplicate field name is caught by validation.
FilterFormatAccessTestCase::testFormatWidgetPermissions in drupal-7.x/modules/filter/filter.test
Tests editing a page using a disallowed text format.
FormsRedirectTestCase::testRedirect in drupal-7.x/modules/simpletest/tests/form.test
Tests form redirection.

File

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

Class

DrupalWebTestCase
Test case for typical Drupal tests.

Code

protected function assertUrl($path, array $options = array(), $message = '', $group = 'Other') {
  if (!$message) {
    $message = t('Current URL is @url.', array(
      '@url' => var_export(url($path, $options), TRUE),
    ));
  }
  $options['absolute'] = TRUE;
  return $this->assertEqual($this->getUrl(), url($path, $options), $message, $group);
}