function RdfMappingDefinitionTestCase::testTaxonomyTermRdfaAttributes

7.x rdf.test RdfMappingDefinitionTestCase::testTaxonomyTermRdfaAttributes()

Creates a random term and ensures the right RDFa markup is used.

File

drupal-7.x/modules/rdf/rdf.test, line 401
Tests for rdf.module.

Class

RdfMappingDefinitionTestCase

Code

function testTaxonomyTermRdfaAttributes() {
  $vocabulary = $this->createVocabulary();
  $term = $this->createTerm($vocabulary);

  // Views the term and checks that the RDFa markup is correct.
  $this->drupalGet('taxonomy/term/' . $term->tid);
  $term_url = url('taxonomy/term/' . $term->tid);
  $term_name = $term->name;
  $term_rdfa_meta = $this->xpath('//meta[@typeof="skos:Concept" and @about=:term-url and contains(@property, "rdfs:label") and contains(@property, "skos:prefLabel") and @content=:term-name]', array(
    ':term-url' => $term_url,
    ':term-name' => $term_name,
  ));
  $this->assertTrue(!empty($term_rdfa_meta), 'RDFa markup found on term page.');
}