function TaxonomyTermTestCase::testTaxonomyNode

7.x taxonomy.test TaxonomyTermTestCase::testTaxonomyNode()

Test that hook_node_$op implementations work correctly.

Save & edit a node and assert that taxonomy terms are saved/loaded properly.

File

drupal-7.x/modules/taxonomy/taxonomy.test, line 613
Tests for taxonomy.module.

Class

TaxonomyTermTestCase
Tests for taxonomy term functions.

Code

function testTaxonomyNode() {
  // Create two taxonomy terms.
  $term1 = $this->createTerm($this->vocabulary);
  $term2 = $this->createTerm($this->vocabulary);

  // Post an article.
  $edit = array();
  $langcode = LANGUAGE_NONE;
  $edit["title"] = $this->randomName();
  $edit["body[$langcode][0][value]"] = $this->randomName();
  $edit[$this->instance['field_name'] . '[' . $langcode . '][]'] = $term1->tid;
  $this->drupalPost('node/add/article', $edit, t('Save'));

  // Check that the term is displayed when the node is viewed.
  $node = $this->drupalGetNodeByTitle($edit["title"]);
  $this->drupalGet('node/' . $node->nid);
  $this->assertText($term1->name, 'Term is displayed when viewing the node.');

  // Edit the node with a different term.
  $edit[$this->instance['field_name'] . '[' . $langcode . '][]'] = $term2->tid;
  $this->drupalPost('node/' . $node->nid . '/edit', $edit, t('Save'));

  $this->drupalGet('node/' . $node->nid);
  $this->assertText($term2->name, 'Term is displayed when viewing the node.');

  // Preview the node.
  $this->drupalPost('node/' . $node->nid . '/edit', $edit, t('Preview'));
  $this->assertNoUniqueText($term2->name, 'Term is displayed when previewing the node.');
  $this->drupalPost(NULL, NULL, t('Preview'));
  $this->assertNoUniqueText($term2->name, 'Term is displayed when previewing the node again.');
}