TaxonomyThemeTestCase::testTaxonomyTermThemes

7 taxonomy.test TaxonomyThemeTestCase::testTaxonomyTermThemes()
8 taxonomy.test TaxonomyThemeTestCase::testTaxonomyTermThemes()

Test the theme used when adding, viewing and editing taxonomy terms.

File

modules/taxonomy/taxonomy.test, line 1865
Tests for taxonomy.module.

Code

function testTaxonomyTermThemes() {
  // Adding a term to a vocabulary is considered an administrative action and
  // should use the administrative theme.
  $vocabulary = $this->createVocabulary();
  $this->drupalGet('admin/structure/taxonomy/' . $vocabulary->machine_name . '/add');
  $this->assertRaw('seven/style.css', t("The administrative theme's CSS appears on the page for adding a taxonomy term."));

  // Viewing a taxonomy term should use the default theme.
  $term = $this->createTerm($vocabulary);
  $this->drupalGet('taxonomy/term/' . $term->tid);
  $this->assertRaw('bartik/css/style.css', t("The default theme's CSS appears on the page for viewing a taxonomy term."));

  // Editing a taxonomy term should use the same theme as adding one.
  $this->drupalGet('taxonomy/term/' . $term->tid . '/edit');
  $this->assertRaw('seven/style.css', t("The administrative theme's CSS appears on the page for editing a taxonomy term."));
}
Login or register to post comments