protected function WebTestBase::assertUrl

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: (optional) A message to display with the assertion. Do not translate messages: use format_string() 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 'Other'; most tests do not override this default.

Return value

TRUE on pass, FALSE on fail.

14 calls to WebTestBase::assertUrl()
BasicTest::testViewsWizardAndListing in drupal/core/modules/views/lib/Drupal/views/Tests/Wizard/BasicTest.php
ConfigEntityTest::testCRUDUI in drupal/core/modules/config/lib/Drupal/config/Tests/ConfigEntityTest.php
Tests CRUD operations through the UI.
ConfigImportUITest::testImport in drupal/core/modules/config/lib/Drupal/config/Tests/ConfigImportUITest.php
Tests importing configuration.
ConfigImportUITest::testImportLock in drupal/core/modules/config/lib/Drupal/config/Tests/ConfigImportUITest.php
Tests concurrent importing of configuration.
DefaultViewsTest::testDefaultViews in drupal/core/modules/views/lib/Drupal/views/Tests/UI/DefaultViewsTest.php
Tests default views.

... See full list

File

drupal/core/modules/simpletest/lib/Drupal/simpletest/WebTestBase.php, line 2103
Definition of Drupal\simpletest\WebTestBase.

Class

WebTestBase
Test case for typical Drupal tests.

Namespace

Drupal\simpletest

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