You are here

class FeedsMapperTaxonomyTestCase in Feeds 7.2

Same name and namespace in other branches
  1. 6 tests/feeds_mapper_taxonomy.test \FeedsMapperTaxonomyTestCase
  2. 7 tests/feeds_mapper_taxonomy.test \FeedsMapperTaxonomyTestCase

Test case for taxonomy mapper mappers/taxonomy.inc.

Hierarchy

Expanded class hierarchy of FeedsMapperTaxonomyTestCase

File

tests/feeds_mapper_taxonomy.test, line 11
Contains FeedsMapperTaxonomyTestCase.

View source
class FeedsMapperTaxonomyTestCase extends FeedsMapperTestCase {

  /**
   * {@inheritdoc}
   */
  public static function getInfo() {
    return array(
      'name' => 'Mapper: Taxonomy',
      'description' => 'Test Feeds Mapper support for Taxonomy.',
      'group' => 'Feeds',
    );
  }

  /**
   * {@inheritdoc}
   */
  public function setUp() {
    parent::setUp();

    // Add Tags vocabulary.
    $edit = array(
      'name' => 'Tags',
      'machine_name' => 'tags',
    );
    $this
      ->drupalPost('admin/structure/taxonomy/add', $edit, 'Save');
    $edit = array(
      'name' => 'term1',
    );
    $this
      ->drupalPost('admin/structure/taxonomy/tags/add', $edit, t('Save'));
    $this
      ->assertText('Created new term term1.');

    // Create term reference field.
    $field = array(
      'field_name' => 'field_tags',
      'type' => 'taxonomy_term_reference',
      'cardinality' => FIELD_CARDINALITY_UNLIMITED,
      'settings' => array(
        'allowed_values' => array(
          array(
            'vocabulary' => 'tags',
            'parent' => 0,
          ),
        ),
      ),
    );
    field_create_field($field);

    // Add a term reference field to the "article" node bundle. Tests use this
    // content type as "feed item": tests imports nodes of this type.
    $this->article_tags = array(
      'field_name' => 'field_tags',
      'bundle' => 'article',
      'entity_type' => 'node',
      'widget' => array(
        'type' => 'options_select',
      ),
      'display' => array(
        'default' => array(
          'type' => 'taxonomy_term_reference_link',
        ),
      ),
    );
    field_create_instance($this->article_tags);

    // Add a term reference field to the "page" node bundle. Tests use this
    // content type as "feed node type": this type is used to attach importers
    // to.
    $this->page_tags = array(
      'field_name' => 'field_tags',
      'bundle' => 'page',
      'entity_type' => 'node',
      'widget' => array(
        'type' => 'options_select',
      ),
      'display' => array(
        'default' => array(
          'type' => 'taxonomy_term_reference_link',
        ),
      ),
    );
    field_create_instance($this->page_tags);

    // Create an importer configuration with basic mapping.
    $this
      ->createImporterConfiguration('Syndication', 'syndication');
    $this
      ->addMappings('syndication', array(
      0 => array(
        'source' => 'title',
        'target' => 'title',
      ),
      1 => array(
        'source' => 'description',
        'target' => 'body',
      ),
      2 => array(
        'source' => 'timestamp',
        'target' => 'created',
      ),
      3 => array(
        'source' => 'url',
        'target' => 'url',
        'unique' => TRUE,
      ),
      4 => array(
        'source' => 'guid',
        'target' => 'guid',
        'unique' => TRUE,
      ),
    ));
  }

  /**
   * Tests inheriting taxonomy from the feed node.
   */
  public function testInheritTaxonomy() {

    // Adjust importer settings.
    $this
      ->setSettings('syndication', NULL, array(
      'import_period' => FEEDS_SCHEDULE_NEVER,
    ));
    $this
      ->setSettings('syndication', NULL, array(
      'import_on_create' => FALSE,
    ));
    $this
      ->assertText('Do not import on submission');

    // Map feed node's taxonomy to feed item node's taxonomy.
    $mappings = array(
      5 => array(
        'source' => 'parent:taxonomy:tags',
        'target' => 'field_tags',
      ),
    );
    $this
      ->addMappings('syndication', $mappings);

    // Create feed node and add term term1.
    $langcode = LANGUAGE_NONE;
    $nid = $this
      ->createFeedNode('syndication', NULL, 'Syndication');
    $term = taxonomy_get_term_by_name('term1');
    $term = reset($term);
    $edit = array(
      'field_tags' . '[' . $langcode . '][]' => $term->tid,
    );
    $this
      ->drupalPost("node/{$nid}/edit", $edit, t('Save'));
    $this
      ->assertTaxonomyTerm($term->name);

    // Import nodes.
    $this
      ->drupalPost("node/{$nid}/import", array(), 'Import');
    $this
      ->assertText('Created 10 nodes.');
    $count = db_query("SELECT COUNT(*) FROM {taxonomy_index}")
      ->fetchField();

    // There should be one term for each node imported plus the term on the feed node.
    $this
      ->assertEqual(11, $count, 'Found correct number of tags for all feed nodes and feed items.');
  }

  /**
   * Tests searching taxonomy terms by name.
   */
  public function testSearchByName() {
    $terms = array(
      'Drupal',
      'localization',
      'localization client',
      'localization server',
      'open atrium',
      'translation',
      'translation server',
      'Drupal planet',
    );
    $this
      ->setSettings('syndication', 'FeedsNodeProcessor', array(
      'skip_hash_check' => TRUE,
      'update_existing' => 2,
    ));
    $mappings = array(
      5 => array(
        'source' => 'tags',
        'target' => 'field_tags',
        'term_search' => 0,
      ),
    );
    $this
      ->addMappings('syndication', $mappings);
    $nid = $this
      ->createFeedNode('syndication', NULL, 'Syndication');
    $this
      ->assertText('Created 10 nodes.');

    // Check that terms we not auto-created.
    $this
      ->drupalGet('node/2');
    foreach ($terms as $term) {
      $this
        ->assertNoTaxonomyTerm($term);
    }
    $this
      ->drupalGet('node/3');
    $this
      ->assertNoTaxonomyTerm('Washington DC');

    // Change the mapping configuration.
    $this
      ->removeMappings('syndication', $mappings);

    // Turn on autocreate.
    $mappings[5]['autocreate'] = TRUE;
    $this
      ->addMappings('syndication', $mappings);
    $this
      ->drupalPost('node/' . $nid . '/import', array(), t('Import'));
    $this
      ->assertText('Updated 10 nodes.');
    $this
      ->drupalGet('node/2');
    foreach ($terms as $term) {
      $this
        ->assertTaxonomyTerm($term);
    }
    $this
      ->drupalGet('node/3');
    $this
      ->assertTaxonomyTerm('Washington DC');
    $names = db_query('SELECT name FROM {taxonomy_term_data}')
      ->fetchCol();
    $this
      ->assertEqual(count($names), 31, 'Found correct number of terms in the database.');

    // Run import again. This verifys that the terms we found by name.
    $this
      ->drupalPost('node/' . $nid . '/import', array(), t('Import'));
    $this
      ->assertText('Updated 10 nodes.');
    $names = db_query('SELECT name FROM {taxonomy_term_data}')
      ->fetchCol();
    $this
      ->assertEqual(count($names), 31, 'Found correct number of terms in the database.');
  }

  /**
   * Tests mapping to taxonomy terms by tid.
   */
  public function testSearchByID() {

    // Create 10 terms. The first one was created in setup.
    $terms = array(
      1,
    );
    foreach (range(2, 10) as $i) {
      $term = (object) array(
        'name' => 'term' . $i,
        'vid' => 1,
      );
      taxonomy_term_save($term);
      $terms[] = $term->tid;
    }
    FeedsPlugin::loadMappers();
    $entity = new stdClass();
    $target = 'field_tags';
    $mapping = array(
      'term_search' => FEEDS_TAXONOMY_SEARCH_TERM_ID,
      'language' => LANGUAGE_NONE,
    );
    $source = FeedsSource::instance('tmp', 0);
    taxonomy_feeds_set_target($source, $entity, $target, $terms, $mapping);
    $this
      ->assertEqual(count($entity->field_tags[LANGUAGE_NONE]), 10);

    // Test a second mapping with a bogus term id.
    taxonomy_feeds_set_target($source, $entity, $target, array(
      1234,
    ), $mapping);
    $this
      ->assertEqual(count($entity->field_tags[LANGUAGE_NONE]), 10);
  }

  /**
   * Tests mapping to a taxonomy term's guid.
   */
  public function testSearchByGUID() {

    // Create 10 terms. The first one was created in setup.
    $tids = array(
      1,
    );
    foreach (range(2, 10) as $i) {
      $term = (object) array(
        'name' => 'term' . $i,
        'vid' => 1,
      );
      taxonomy_term_save($term);
      $tids[] = $term->tid;
    }

    // Create a bunch of bogus imported terms.
    $guids = array();
    foreach ($tids as $tid) {
      $guid = 100 * $tid;
      $guids[] = $guid;
      $record = array(
        'entity_type' => 'taxonomy_term',
        'entity_id' => $tid,
        'id' => 'does_not_exist',
        'feed_nid' => 0,
        'imported' => REQUEST_TIME,
        'url' => '',
        'guid' => $guid,
      );
      drupal_write_record('feeds_item', $record);
    }
    FeedsPlugin::loadMappers();
    $entity = new stdClass();
    $target = 'field_tags';
    $mapping = array(
      'term_search' => FEEDS_TAXONOMY_SEARCH_TERM_GUID,
      'language' => LANGUAGE_NONE,
    );
    $source = FeedsSource::instance('tmp', 0);
    taxonomy_feeds_set_target($source, $entity, $target, $guids, $mapping);
    $this
      ->assertEqual(count($entity->field_tags[LANGUAGE_NONE]), 10);
    foreach ($entity->field_tags[LANGUAGE_NONE] as $delta => $values) {
      $this
        ->assertEqual($tids[$delta], $values['tid'], 'Correct term id foud.');
    }

    // Test a second mapping with a bogus term id.
    taxonomy_feeds_set_target($source, $entity, $target, array(
      1234,
    ), $mapping);
    $this
      ->assertEqual(count($entity->field_tags[LANGUAGE_NONE]), 10);
    foreach ($entity->field_tags[LANGUAGE_NONE] as $delta => $values) {
      $this
        ->assertEqual($tids[$delta], $values['tid'], 'Correct term id foud.');
    }
  }

  /**
   * Tests that only term references are added from allowed vocabularies.
   */
  public function testAllowedVocabularies() {

    // Create a second vocabulary.
    $vocabulary = new stdClass();
    $vocabulary->name = 'Foo';
    $vocabulary->machine_name = 'foo';
    taxonomy_vocabulary_save($vocabulary);

    // Add a term to this vocabulary.
    $term1 = new stdClass();
    $term1->name = 'Foo1';
    $term1->vid = $vocabulary->vid;
    taxonomy_term_save($term1);

    // Add a term to the tags vocabulary.
    $term2 = new stdClass();
    $term2->name = 'Bar1';
    $term2->vid = 1;
    taxonomy_term_save($term2);
    FeedsPlugin::loadMappers();
    $entity = new stdClass();
    $target = 'field_tags';
    $terms = array(
      'Foo1',
      'Bar1',
    );
    $mapping = array(
      'term_search' => FEEDS_TAXONOMY_SEARCH_TERM_NAME,
      'language' => LANGUAGE_NONE,
    );
    $source = FeedsSource::instance('tmp', 0);
    taxonomy_feeds_set_target($source, $entity, $target, $terms, $mapping);

    // Assert that only the term 'Bar1' was set.
    $this
      ->assertEqual(count($entity->field_tags[LANGUAGE_NONE]), 1);
    $this
      ->assertEqual($term2->tid, $entity->field_tags[LANGUAGE_NONE][0]['tid']);
  }

  /**
   * Tests how term caching works across multiple term reference fields.
   *
   * This specifically verifies that terms added to a vocabulary by one mapping
   * are available for use by other fields that are mapping to the same
   * vocabulary.
   *
   * @see https://www.drupal.org/project/feeds/issues/3091682
   */
  public function testAutoCreateUpdatesAllCaches() {

    // Create a second term reference field base.
    $field = array(
      'field_name' => 'field_tags2',
      'type' => 'taxonomy_term_reference',
      'cardinality' => FIELD_CARDINALITY_UNLIMITED,
      'settings' => array(
        'allowed_values' => array(
          array(
            'vocabulary' => 'tags',
            'parent' => 0,
          ),
        ),
      ),
    );
    field_create_field($field);

    // Add a second term reference field instance to to feed node bundle.
    $this->article_tags2 = array(
      'field_name' => 'field_tags2',
      'bundle' => 'article',
      'entity_type' => 'node',
      'widget' => array(
        'type' => 'options_select',
      ),
      'display' => array(
        'default' => array(
          'type' => 'taxonomy_term_reference_link',
        ),
      ),
    );
    field_create_instance($this->article_tags2);

    // Create a CSV importer configuration.
    $this
      ->createImporterConfiguration('Node import from CSV', 'node');
    $this
      ->setSettings('node', NULL, array(
      'content_type' => '',
    ));
    $this
      ->setPlugin('node', 'FeedsFileFetcher');
    $this
      ->setPlugin('node', 'FeedsCSVParser');
    $this
      ->setSettings('node', 'FeedsNodeProcessor', array(
      'bundle' => 'article',
      'update_existing' => TRUE,
    ));
    $this
      ->addMappings('node', array(
      0 => array(
        'source' => 'guid',
        'target' => 'guid',
        'unique' => TRUE,
      ),
      1 => array(
        'source' => 'title',
        'target' => 'title',
      ),
      2 => array(
        'source' => 'tag1',
        'target' => 'field_tags',
        'term_search' => FEEDS_TAXONOMY_SEARCH_TERM_NAME,
        'autocreate' => TRUE,
      ),
      3 => array(
        'source' => 'tag2',
        'target' => 'field_tags2',
        'term_search' => FEEDS_TAXONOMY_SEARCH_TERM_NAME,
        'autocreate' => TRUE,
      ),
    ));
    $this
      ->importFile('node', $this
      ->absolutePath() . '/tests/feeds/taxonomy_multiple_tag_fields.csv');
    $this
      ->assertText('Created 2 nodes');
    $term_names = array(
      'Alpha',
      'Beta',
      'Kiwi',
    );
    foreach ($term_names as $term_name) {
      $loaded_term = taxonomy_get_term_by_name($term_name);
      $terms[$term_name] = reset($loaded_term);
    }
    $expected_node_values = array(
      1 => array(
        'field_tags' => $terms['Alpha']->tid,
        'field_tags2' => $terms['Beta']->tid,
      ),
      2 => array(
        'field_tags' => $terms['Kiwi']->tid,
        'field_tags2' => $terms['Kiwi']->tid,
      ),
    );
    foreach ($expected_node_values as $nid => $node_values) {
      $this
        ->drupalGet("node/{$nid}/edit");
      foreach ($node_values as $field_name => $field_value) {
        $this
          ->assertFieldByName("{$field_name}[und][]", $field_value);
      }
    }
  }

  /**
   * Tests if terms can be mapped when term access modules are enabled.
   */
  public function testTermAccess() {
    FeedsPlugin::loadMappers();

    // Set acting user.
    // @see feeds_tests_query_term_access_alter()
    variable_set('feeds_tests_term_reference_allowed_user', $this->admin_user->uid);

    // Set to import using cron.
    $this
      ->setSettings('syndication', NULL, array(
      'import_period' => 0,
      'import_on_create' => FALSE,
      'process_in_background' => TRUE,
    ));

    // Add target to taxonomy reference field.
    $this
      ->addMappings('syndication', array(
      5 => array(
        'source' => 'tags',
        'target' => 'field_tags',
        'term_search' => FEEDS_TAXONOMY_SEARCH_TERM_NAME,
      ),
    ));

    // Create a few terms used in developmentseed.rss2.
    $term1 = new stdClass();
    $term1->name = 'Drupal';
    $term1->vid = 1;
    taxonomy_term_save($term1);
    $term2 = new stdClass();
    $term2->name = 'translation';
    $term2->vid = 1;
    taxonomy_term_save($term2);

    // Create feed node and initiate import.
    $nid = $this
      ->createFeedNode('syndication', NULL, 'Syndication');

    // Log out to ensure cron is ran as anonymous user.
    $this
      ->drupalLogout();

    // Run cron to run the import and assert 11 created nodes in total.
    $this
      ->cronRun();
    $node_count = db_select('node')
      ->fields('node', array(
      'nid',
    ))
      ->countQuery()
      ->execute()
      ->fetchField();
    $this
      ->assertEqual(11, $node_count, format_string('There are @expected nodes (actual: @actual).', array(
      '@expected' => 11,
      '@actual' => $node_count,
    )));

    // Assert that node 2 got two terms assigned.
    $node = node_load(2);
    $this
      ->assertEqual($term1->tid, $node->field_tags[LANGUAGE_NONE][0]['tid']);
    $this
      ->assertEqual($term2->tid, $node->field_tags[LANGUAGE_NONE][1]['tid']);
  }

  /**
   * Tests importing empty values.
   */
  public function testBlankSourceValues() {

    // Create a CSV importer configuration.
    $this
      ->createImporterConfiguration('Node import from CSV', 'node');
    $this
      ->setPlugin('node', 'FeedsFileFetcher');
    $this
      ->setPlugin('node', 'FeedsCSVParser');
    $this
      ->setSettings('node', 'FeedsNodeProcessor', array(
      'bundle' => 'article',
    ));
    $this
      ->setSettings('node', NULL, array(
      'content_type' => '',
    ));
    $this
      ->addMappings('node', array(
      0 => array(
        'source' => 'title',
        'target' => 'title',
      ),
      1 => array(
        'source' => 'tags',
        'target' => 'field_tags',
        'term_search' => 0,
        'autocreate' => 1,
      ),
      2 => array(
        'source' => 'guid',
        'target' => 'guid',
        'unique' => TRUE,
      ),
    ));

    // Verify that there are 5 nodes total.
    $this
      ->importFile('node', $this
      ->absolutePath() . '/tests/feeds/taxonomy_empty_terms.csv');
    $this
      ->assertText('Created 5 nodes');

    // Make sure only two terms were added.
    $names = db_query('SELECT name FROM {taxonomy_term_data}')
      ->fetchCol();
    $this
      ->assertEqual(count($names), 2, 'Found correct number of terms in the database.');

    // Make sure the correct terms were created.
    $terms = array(
      'term1',
      '0',
    );
    foreach ($terms as $term_name) {
      $this
        ->assertTrue(in_array($term_name, $names), 'Correct term created');
    }
  }

  /**
   * Tests that there are no errors when trying to map to an invalid vocabulary.
   */
  public function testMissingVocabulary() {
    $this
      ->addMappings('syndication', array(
      5 => array(
        'source' => 'tags',
        'target' => 'field_tags',
        'term_search' => 0,
        'autocreate' => TRUE,
      ),
    ));

    // Create an invalid configuration.
    db_delete('taxonomy_vocabulary')
      ->execute();
    $this
      ->createFeedNode('syndication', NULL, 'Syndication');
    $this
      ->assertText('Created 10 nodes.');
  }

  /**
   * Tests if values are cleared out when an empty value or no value
   * is provided.
   */
  public function testClearOutValues() {

    // Create a CSV importer configuration.
    $this
      ->createImporterConfiguration('Node import from CSV', 'node');
    $this
      ->setSettings('node', NULL, array(
      'content_type' => '',
    ));
    $this
      ->setPlugin('node', 'FeedsFileFetcher');
    $this
      ->setPlugin('node', 'FeedsCSVParser');
    $this
      ->setSettings('node', 'FeedsNodeProcessor', array(
      'bundle' => 'article',
      'update_existing' => 1,
    ));
    $this
      ->addMappings('node', array(
      0 => array(
        'source' => 'title',
        'target' => 'title',
      ),
      1 => array(
        'source' => 'alpha',
        'target' => 'field_tags',
        'term_search' => 0,
        'autocreate' => 1,
      ),
      2 => array(
        'source' => 'guid',
        'target' => 'guid',
        'unique' => TRUE,
      ),
    ));
    $this
      ->importFile('node', $this
      ->absolutePath() . '/tests/feeds/content.csv');
    $this
      ->assertText('Created 2 nodes');

    // Check the imported nodes.
    $terms1 = taxonomy_get_term_by_name('Lorem');
    $term1 = reset($terms1);
    $terms2 = taxonomy_get_term_by_name('Ut wisi');
    $term2 = reset($terms2);
    $taxonomy_values = array(
      1 => $term1->tid,
      2 => $term2->tid,
    );
    for ($i = 1; $i <= 2; $i++) {
      $this
        ->drupalGet("node/{$i}/edit");
      $this
        ->assertFieldByName('field_tags[und][]', $taxonomy_values[$i]);
    }

    // Import CSV file with empty values.
    $this
      ->importFile('node', $this
      ->absolutePath() . '/tests/feeds/content_empty.csv');
    $this
      ->assertText('Updated 2 nodes');

    // Check if the taxonomy reference field was cleared out for node 1.
    $this
      ->drupalGet('node/1/edit');
    $this
      ->assertFieldByName('field_tags[und][]', '_none');
    $this
      ->drupalGet('node/1');
    $this
      ->assertNoText('field_tags');

    // Check if zero's didn't cleared out the taxonomy reference field for
    // node 2.
    $terms0 = taxonomy_get_term_by_name('0');
    $term0 = reset($terms0);
    $this
      ->drupalGet('node/2/edit');
    $this
      ->assertFieldByName('field_tags[und][]', $term0->tid);
    $this
      ->drupalGet('node/2');
    $this
      ->assertText('field_tags');

    // Re-import the first file again and check if the values returned.
    $this
      ->importFile('node', $this
      ->absolutePath() . '/tests/feeds/content.csv');
    $this
      ->assertText('Updated 2 nodes');
    for ($i = 1; $i <= 2; $i++) {
      $this
        ->drupalGet("node/{$i}/edit");
      $this
        ->assertFieldByName('field_tags[und][]', $taxonomy_values[$i]);
    }

    // Import CSV file with non-existent values.
    $this
      ->importFile('node', $this
      ->absolutePath() . '/tests/feeds/content_non_existent.csv');
    $this
      ->assertText('Updated 2 nodes');

    // Check if the taxonomy reference field was cleared out for node 1.
    $this
      ->drupalGet('node/1/edit');
    $this
      ->assertFieldByName('field_tags[und][]', '_none');
    $this
      ->drupalGet('node/1');
    $this
      ->assertNoText('field_tags');
  }

  /**
   * Finds node style taxonomy term markup in DOM.
   */
  public function assertTaxonomyTerm($term) {
    $term = check_plain($term);
    $this
      ->assertPattern('/<a href="\\/.*taxonomy\\/term\\/[0-9]+">' . $term . '<\\/a>/', 'Found ' . $term);
  }

  /**
   * Asserts that the term does not exist on a node page.
   */
  public function assertNoTaxonomyTerm($term) {
    $term = check_plain($term);
    $this
      ->assertNoPattern('/<a href="\\/.*taxonomy\\/term\\/[0-9]+">' . $term . '<\\/a>/', 'Did not find ' . $term);
  }

}

Members

Namesort descending Modifiers Type Description Overrides
DrupalTestCase::$assertions protected property Assertions thrown in that test case.
DrupalTestCase::$databasePrefix protected property The database prefix of this test run.
DrupalTestCase::$originalFileDirectory protected property The original file directory, before it was changed for testing purposes.
DrupalTestCase::$results public property Current results of this test case.
DrupalTestCase::$setup protected property Flag to indicate whether the test has been set up.
DrupalTestCase::$setupDatabasePrefix protected property
DrupalTestCase::$setupEnvironment protected property
DrupalTestCase::$skipClasses protected property This class is skipped when looking for the source of an assertion.
DrupalTestCase::$testId protected property The test run ID.
DrupalTestCase::$timeLimit protected property Time limit for the test.
DrupalTestCase::$useSetupInstallationCache public property Whether to cache the installation part of the setUp() method.
DrupalTestCase::$useSetupModulesCache public property Whether to cache the modules installation part of the setUp() method.
DrupalTestCase::$verboseDirectoryUrl protected property URL to the verbose output file directory.
DrupalTestCase::assert protected function Internal helper: stores the assert.
DrupalTestCase::assertEqual protected function Check to see if two values are equal.
DrupalTestCase::assertFalse protected function Check to see if a value is false (an empty string, 0, NULL, or FALSE).
DrupalTestCase::assertIdentical protected function Check to see if two values are identical.
DrupalTestCase::assertNotEqual protected function Check to see if two values are not equal.
DrupalTestCase::assertNotIdentical protected function Check to see if two values are not identical.
DrupalTestCase::assertNotNull protected function Check to see if a value is not NULL.
DrupalTestCase::assertNull protected function Check to see if a value is NULL.
DrupalTestCase::assertTrue protected function Check to see if a value is not false (not an empty string, 0, NULL, or FALSE).
DrupalTestCase::deleteAssert public static function Delete an assertion record by message ID.
DrupalTestCase::error protected function Fire an error assertion. 1
DrupalTestCase::errorHandler public function Handle errors during test runs. 1
DrupalTestCase::exceptionHandler protected function Handle exceptions.
DrupalTestCase::fail protected function Fire an assertion that is always negative.
DrupalTestCase::generatePermutations public static function Converts a list of possible parameters into a stack of permutations.
DrupalTestCase::getAssertionCall protected function Cycles through backtrace until the first non-assertion method is found.
DrupalTestCase::getDatabaseConnection public static function Returns the database connection to the site running Simpletest.
DrupalTestCase::insertAssert public static function Store an assertion from outside the testing context.
DrupalTestCase::pass protected function Fire an assertion that is always positive.
DrupalTestCase::randomName public static function Generates a random string containing letters and numbers.
DrupalTestCase::randomString public static function Generates a random string of ASCII characters of codes 32 to 126.
DrupalTestCase::run public function Run all tests in this class.
DrupalTestCase::verbose protected function Logs a verbose message in a text file.
DrupalWebTestCase::$additionalCurlOptions protected property Additional cURL options.
DrupalWebTestCase::$content protected property The content of the page currently loaded in the internal browser.
DrupalWebTestCase::$cookieFile protected property The current cookie file used by cURL.
DrupalWebTestCase::$cookies protected property The cookies of the page currently loaded in the internal browser.
DrupalWebTestCase::$curlHandle protected property The handle of the current cURL connection.
DrupalWebTestCase::$drupalSettings protected property The value of the Drupal.settings JavaScript variable for the page currently loaded in the internal browser.
DrupalWebTestCase::$elements protected property The parsed version of the page.
DrupalWebTestCase::$generatedTestFiles protected property Whether the files were copied to the test files directory.
DrupalWebTestCase::$headers protected property The headers of the page currently loaded in the internal browser.
DrupalWebTestCase::$httpauth_credentials protected property HTTP authentication credentials (<username>:<password>).
DrupalWebTestCase::$httpauth_method protected property HTTP authentication method
DrupalWebTestCase::$loggedInUser protected property The current user logged in using the internal browser.
DrupalWebTestCase::$originalShutdownCallbacks protected property The original shutdown handlers array, before it was cleaned for testing purposes.
DrupalWebTestCase::$originalUser protected property The original user, before it was changed to a clean uid = 1 for testing purposes.
DrupalWebTestCase::$plainTextContent protected property The content of the page currently loaded in the internal browser (plain text version).
DrupalWebTestCase::$redirect_count protected property The number of redirects followed during the handling of a request.
DrupalWebTestCase::$session_id protected property The current session ID, if available.
DrupalWebTestCase::$session_name protected property The current session name, if available.
DrupalWebTestCase::$url protected property The URL currently loaded in the internal browser.
DrupalWebTestCase::assertField protected function Asserts that a field exists with the given name or ID.
DrupalWebTestCase::assertFieldById protected function Asserts that a field exists in the current page with the given ID and value.
DrupalWebTestCase::assertFieldByName protected function Asserts that a field exists in the current page with the given name and value.
DrupalWebTestCase::assertFieldChecked protected function Asserts that a checkbox field in the current page is checked.
DrupalWebTestCase::assertLink protected function Pass if a link with the specified label is found, and optional with the specified index.
DrupalWebTestCase::assertLinkByHref protected function Pass if a link containing a given href (part) is found.
DrupalWebTestCase::assertMail protected function Asserts that the most recently sent e-mail message has the given value.
DrupalWebTestCase::assertMailPattern protected function Asserts that the most recently sent e-mail message has the pattern in it.
DrupalWebTestCase::assertMailString protected function Asserts that the most recently sent e-mail message has the string in it.
DrupalWebTestCase::assertNoDuplicateIds protected function Asserts that each HTML ID is used for just a single element.
DrupalWebTestCase::assertNoField protected function Asserts that a field does not exist with the given name or ID.
DrupalWebTestCase::assertNoFieldById protected function Asserts that a field does not exist with the given ID and value.
DrupalWebTestCase::assertNoFieldByName protected function Asserts that a field does not exist with the given name and value.
DrupalWebTestCase::assertNoFieldByXPath protected function Asserts that a field doesn't exist or its value doesn't match, by XPath.
DrupalWebTestCase::assertNoFieldChecked protected function Asserts that a checkbox field in the current page is not checked.
DrupalWebTestCase::assertNoLink protected function Pass if a link with the specified label is not found.
DrupalWebTestCase::assertNoLinkByHref protected function Pass if a link containing a given href (part) is not found.
DrupalWebTestCase::assertNoOptionSelected protected function Asserts that a select option in the current page is not checked.
DrupalWebTestCase::assertNoPattern protected function Will trigger a pass if the perl regex pattern is not present in raw content.
DrupalWebTestCase::assertNoRaw protected function Pass if the raw text is NOT found on the loaded page, fail otherwise. Raw text refers to the raw HTML that the page generated.
DrupalWebTestCase::assertNoResponse protected function Asserts the page did not return the specified response code.
DrupalWebTestCase::assertNoText protected function Pass if the text is NOT found on the text version of the page. The text version is the equivalent of what a user would see when viewing through a web browser. In other words the HTML has been filtered out of the contents.
DrupalWebTestCase::assertNoTitle protected function Pass if the page title is not the given string.
DrupalWebTestCase::assertNoUniqueText protected function Pass if the text is found MORE THAN ONCE on the text version of the page.
DrupalWebTestCase::assertOptionSelected protected function Asserts that a select option in the current page is checked.
DrupalWebTestCase::assertPattern protected function Will trigger a pass if the Perl regex pattern is found in the raw content.
DrupalWebTestCase::assertRaw protected function Pass if the raw text IS found on the loaded page, fail otherwise. Raw text refers to the raw HTML that the page generated.
DrupalWebTestCase::assertResponse protected function Asserts the page responds with the specified response code.
DrupalWebTestCase::assertText protected function Pass if the text IS found on the text version of the page. The text version is the equivalent of what a user would see when viewing through a web browser. In other words the HTML has been filtered out of the contents.
DrupalWebTestCase::assertTextHelper protected function Helper for assertText and assertNoText.
DrupalWebTestCase::assertThemeOutput protected function Asserts themed output.
DrupalWebTestCase::assertTitle protected function Pass if the page title is the given string.
DrupalWebTestCase::assertUniqueText protected function Pass if the text is found ONLY ONCE on the text version of the page.
DrupalWebTestCase::assertUniqueTextHelper protected function Helper for assertUniqueText and assertNoUniqueText.
DrupalWebTestCase::assertUrl protected function Pass if the internal browser's URL matches the given path.
DrupalWebTestCase::buildXPathQuery protected function Builds an XPath query.
DrupalWebTestCase::changeDatabasePrefix protected function Changes the database connection to the prefixed one.
DrupalWebTestCase::checkForMetaRefresh protected function Check for meta refresh tag and if found call drupalGet() recursively. This function looks for the http-equiv attribute to be set to "Refresh" and is case-sensitive.
DrupalWebTestCase::checkPermissions protected function Check to make sure that the array of permissions are valid.
DrupalWebTestCase::clickLink protected function Follows a link by name.
DrupalWebTestCase::constructFieldXpath protected function Helper function: construct an XPath for the given set of attributes and value.
DrupalWebTestCase::copySetupCache protected function Copy the setup cache from/to another table and files directory.
DrupalWebTestCase::cronRun protected function Runs cron in the Drupal installed by Simpletest.
DrupalWebTestCase::curlClose protected function Close the cURL handler and unset the handler.
DrupalWebTestCase::curlExec protected function Initializes and executes a cURL request.
DrupalWebTestCase::curlHeaderCallback protected function Reads headers and registers errors received from the tested site.
DrupalWebTestCase::curlInitialize protected function Initializes the cURL connection.
DrupalWebTestCase::drupalCompareFiles protected function Compare two files based on size and file name.
DrupalWebTestCase::drupalCreateContentType protected function Creates a custom content type based on default settings.
DrupalWebTestCase::drupalCreateNode protected function Creates a node based on default settings.
DrupalWebTestCase::drupalCreateRole protected function Creates a role with specified permissions.
DrupalWebTestCase::drupalCreateUser protected function Create a user with a given set of permissions.
DrupalWebTestCase::drupalGet protected function Retrieves a Drupal path or an absolute path.
DrupalWebTestCase::drupalGetAJAX protected function Retrieve a Drupal path or an absolute path and JSON decode the result.
DrupalWebTestCase::drupalGetContent protected function Gets the current raw HTML of requested page.
DrupalWebTestCase::drupalGetHeader protected function Gets the value of an HTTP response header. If multiple requests were required to retrieve the page, only the headers from the last request will be checked by default. However, if TRUE is passed as the second argument, all requests will be processed…
DrupalWebTestCase::drupalGetHeaders protected function Gets the HTTP response headers of the requested page. Normally we are only interested in the headers returned by the last request. However, if a page is redirected or HTTP authentication is in use, multiple requests will be required to retrieve the…
DrupalWebTestCase::drupalGetMails protected function Gets an array containing all e-mails sent during this test case.
DrupalWebTestCase::drupalGetNodeByTitle function Get a node from the database based on its title.
DrupalWebTestCase::drupalGetSettings protected function Gets the value of the Drupal.settings JavaScript variable for the currently loaded page.
DrupalWebTestCase::drupalGetTestFiles protected function Get a list files that can be used in tests.
DrupalWebTestCase::drupalGetToken protected function Generate a token for the currently logged in user.
DrupalWebTestCase::drupalHead protected function Retrieves only the headers for a Drupal path or an absolute path.
DrupalWebTestCase::drupalLogin protected function Log in a user with the internal browser.
DrupalWebTestCase::drupalLogout protected function
DrupalWebTestCase::drupalPost protected function Execute a POST request on a Drupal page. It will be done as usual POST request with SimpleBrowser.
DrupalWebTestCase::drupalPostAJAX protected function Execute an Ajax submission.
DrupalWebTestCase::drupalSetContent protected function Sets the raw HTML content. This can be useful when a page has been fetched outside of the internal browser and assertions need to be made on the returned page.
DrupalWebTestCase::drupalSetSettings protected function Sets the value of the Drupal.settings JavaScript variable for the currently loaded page.
DrupalWebTestCase::getAbsoluteUrl protected function Takes a path and returns an absolute path.
DrupalWebTestCase::getAllOptions protected function Get all option elements, including nested options, in a select.
DrupalWebTestCase::getSelectedItem protected function Get the selected value from a select field.
DrupalWebTestCase::getSetupCacheKey protected function Returns the cache key used for the setup caching.
DrupalWebTestCase::getUrl protected function Get the current URL from the cURL handler.
DrupalWebTestCase::handleForm protected function Handle form input related to drupalPost(). Ensure that the specified fields exist and attempt to create POST data in the correct manner for the particular field type.
DrupalWebTestCase::loadSetupCache protected function Copies the cached tables and files for a cached installation setup.
DrupalWebTestCase::parse protected function Parse content returned from curlExec using DOM and SimpleXML.
DrupalWebTestCase::preloadRegistry protected function Preload the registry from the testing site.
DrupalWebTestCase::prepareDatabasePrefix protected function Generates a database prefix for running tests.
DrupalWebTestCase::prepareEnvironment protected function Prepares the current environment for running the test.
DrupalWebTestCase::recursiveDirectoryCopy protected function Recursively copy one directory to another.
DrupalWebTestCase::refreshVariables protected function Refresh the in-memory set of variables. Useful after a page request is made that changes a variable in a different thread. 1
DrupalWebTestCase::resetAll protected function Reset all data structures after having enabled new modules.
DrupalWebTestCase::storeSetupCache protected function Store the installation setup to a cache.
DrupalWebTestCase::tearDown protected function Delete created files and temporary files directory, delete the tables created by setUp(), and reset the database prefix. 6
DrupalWebTestCase::verboseEmail protected function Outputs to verbose the most recent $count emails sent.
DrupalWebTestCase::xpath protected function Perform an xpath search on the contents of the internal browser. The search is relative to the root element (HTML tag normally) of the page.
DrupalWebTestCase::__construct function Constructor for DrupalWebTestCase. Overrides DrupalTestCase::__construct 1
FeedsMapperTaxonomyTestCase::assertNoTaxonomyTerm public function Asserts that the term does not exist on a node page.
FeedsMapperTaxonomyTestCase::assertTaxonomyTerm public function Finds node style taxonomy term markup in DOM.
FeedsMapperTaxonomyTestCase::getInfo public static function
FeedsMapperTaxonomyTestCase::setUp public function Sets up a Drupal site for running functional and integration tests. Overrides FeedsWebTestCase::setUp
FeedsMapperTaxonomyTestCase::testAllowedVocabularies public function Tests that only term references are added from allowed vocabularies.
FeedsMapperTaxonomyTestCase::testAutoCreateUpdatesAllCaches public function Tests how term caching works across multiple term reference fields.
FeedsMapperTaxonomyTestCase::testBlankSourceValues public function Tests importing empty values.
FeedsMapperTaxonomyTestCase::testClearOutValues public function Tests if values are cleared out when an empty value or no value is provided.
FeedsMapperTaxonomyTestCase::testInheritTaxonomy public function Tests inheriting taxonomy from the feed node.
FeedsMapperTaxonomyTestCase::testMissingVocabulary public function Tests that there are no errors when trying to map to an invalid vocabulary.
FeedsMapperTaxonomyTestCase::testSearchByGUID public function Tests mapping to a taxonomy term's guid.
FeedsMapperTaxonomyTestCase::testSearchByID public function Tests mapping to taxonomy terms by tid.
FeedsMapperTaxonomyTestCase::testSearchByName public function Tests searching taxonomy terms by name.
FeedsMapperTaxonomyTestCase::testTermAccess public function Tests if terms can be mapped when term access modules are enabled.
FeedsMapperTestCase::$field_widgets private static property A lookup map to select the widget for each field type.
FeedsMapperTestCase::assertNodeFieldValue protected function Assert that a form field for the given field with the given value exists in the current form.
FeedsMapperTestCase::assertNoNodeFieldValue protected function Assert that a form field for the given field with the given value does not exist in the current form.
FeedsMapperTestCase::createContentType final protected function Create a new content-type, and add a field to it. Mostly copied from cck/tests/content.crud.test ContentUICrud::testAddFieldUI
FeedsMapperTestCase::getFormFieldsNames protected function Returns the form fields names for a given CCK field. Default implementation provides support for a single form field with the following name pattern <code>"field_{$field_name}[{$index}][value]"</code> 3
FeedsMapperTestCase::getFormFieldsValues protected function Returns the form fields values for a given CCK field. Default implementation returns a single element array with $value casted to a string. 1
FeedsMapperTestCase::selectFieldWidget protected function Select the widget for the field. Default implementation provides widgets for Date, Number, Text, Node reference, User reference, Email, Emfield, Filefield, Image, and Link.
FeedsWebTestCase::$profile protected property The profile to install as a basis for testing. Overrides DrupalWebTestCase::$profile 1
FeedsWebTestCase::absolute public function Absolute path to Drupal root.
FeedsWebTestCase::absolutePath public function Get the absolute directory path of the feeds module.
FeedsWebTestCase::addMappings public function Adds mappings to a given configuration.
FeedsWebTestCase::assertFieldByXPath protected function Overrides DrupalWebTestCase::assertFieldByXPath(). Overrides DrupalWebTestCase::assertFieldByXPath
FeedsWebTestCase::assertFieldDisabled protected function Asserts that a field in the current page is disabled.
FeedsWebTestCase::assertFieldEnabled protected function Asserts that a field in the current page is enabled.
FeedsWebTestCase::assertNodeCount protected function Asserts that the given number of nodes exist.
FeedsWebTestCase::assertPlugins public function Assert a feeds configuration's plugins.
FeedsWebTestCase::changeNodeAuthor protected function Changes the author of a node and asserts the change in the UI.
FeedsWebTestCase::copyDir public function Copies a directory.
FeedsWebTestCase::createFeedNode public function Create a test feed node. Test user has to have sufficient permissions:.
FeedsWebTestCase::createFeedNodes public function Batch create a variable amount of feed nodes. All will have the same URL configured.
FeedsWebTestCase::createImporterConfiguration public function Create an importer configuration.
FeedsWebTestCase::downloadExtractSimplePie public function Download and extract SimplePIE.
FeedsWebTestCase::editFeedNode public function Edit the configuration of a feed node to test update behavior.
FeedsWebTestCase::generateOPML public function Generate an OPML test feed.
FeedsWebTestCase::getCurrentMappings public function Gets an array of current mappings from the feeds_importer config.
FeedsWebTestCase::getNid public function Helper function, retrieves node id from a URL.
FeedsWebTestCase::importFile public function Import a file through the import form. Assumes FeedsFileFetcher in place.
FeedsWebTestCase::importURL public function Import a URL through the import form. Assumes FeedsHTTPFetcher in place.
FeedsWebTestCase::mappingExists public function Determines if a mapping exists for a given importer.
FeedsWebTestCase::removeMappings public function Remove mappings from a given configuration.
FeedsWebTestCase::setPlugin public function Choose a plugin for a importer configuration and assert it.
FeedsWebTestCase::setSettings public function Set importer or plugin settings.