protected function DrupalWebTestCase::assertLinkByHref

Pass if a link containing a given href (part) is found.

Parameters

$href: The full or partial value of the 'href' attribute of the anchor tag.

$index: Link position counting from zero.

$message: Message to display.

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

Return value

TRUE if the assertion succeeded, FALSE otherwise.

10 calls to DrupalWebTestCase::assertLinkByHref()
BlockTestCase::testCustomBlock in drupal/modules/block/block.test
Test creating custom block, moving it to a specific region and then deleting it.
FeedParserTestCase::testAtomSample in drupal/modules/aggregator/aggregator.test
Tests a feed that uses the Atom format.
FeedParserTestCase::testRSS091Sample in drupal/modules/aggregator/aggregator.test
Tests a feed that uses the RSS 0.91 format.
FilterAdminTestCase::testFormatAdmin in drupal/modules/filter/filter.test
Tests the format administration functionality.
MenuUpgradePathTestCase::testMenuUpgrade in drupal/modules/simpletest/tests/upgrade/upgrade.menu.test
Test a successful upgrade.

... See full list

File

drupal/modules/simpletest/drupal_web_test_case.php, line 2729

Class

DrupalWebTestCase
Test case for typical Drupal tests.

Code

protected function assertLinkByHref($href, $index = 0, $message = '', $group = 'Other') {
  $links = $this
    ->xpath('//a[contains(@href, :href)]', array(
    ':href' => $href,
  ));
  $message = $message ? $message : t('Link containing href %href found.', array(
    '%href' => $href,
  ));
  return $this
    ->assert(isset($links[$index]), $message, $group);
}