protected function DrupalWebTestCase::assertNoFieldByXPath

Asserts that a field doesn't exist or its value doesn't match, by XPath.

Parameters

$xpath: XPath used to find the field.

$value: (optional) Value for the field, to assert that the field's value on the page doesn't match it. You may pass in NULL to skip checking the value, while still checking that the field doesn't exist.

$message: (optional) Message to display.

$group: (optional) The group this message belongs to.

Return value

TRUE on pass, FALSE on fail.

12 calls to DrupalWebTestCase::assertNoFieldByXPath()
BlockTestCase::testBlock in drupal/modules/block/block.test
Test configuring and moving a module-define block to specific regions.
DrupalWebTestCase::assertNoField in drupal/modules/simpletest/drupal_web_test_case.php
Asserts that a field does not exist with the given name or ID.
DrupalWebTestCase::assertNoFieldById in drupal/modules/simpletest/drupal_web_test_case.php
Asserts that a field does not exist with the given ID and value.
DrupalWebTestCase::assertNoFieldByName in drupal/modules/simpletest/drupal_web_test_case.php
Asserts that a field does not exist with the given name and value.
FieldUITestCase::fieldUIDeleteField in drupal/modules/field_ui/field_ui.test
Deletes a field instance through the Field UI.

... See full list

File

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

Class

DrupalWebTestCase
Test case for typical Drupal tests.

Code

protected function assertNoFieldByXPath($xpath, $value = NULL, $message = '', $group = 'Other') {
  $fields = $this
    ->xpath($xpath);

  // If value specified then check array for match.
  $found = TRUE;
  if (isset($value)) {
    $found = FALSE;
    if ($fields) {
      foreach ($fields as $field) {
        if ($field['value'] == $value) {
          $found = TRUE;
        }
      }
    }
  }
  return $this
    ->assertFalse($fields && $found, $message, $group);
}