function RdfCommentAttributesTestCase::_testBasicCommentRdfaMarkup

Helper function for testCommentRdfaMarkup().

Tests the current page for basic comment RDFa markup.

Parameters

$comment: Comment object.

$account: An array containing information about an anonymous user.

1 call to RdfCommentAttributesTestCase::_testBasicCommentRdfaMarkup()
RdfCommentAttributesTestCase::testCommentRdfaMarkup in drupal/modules/rdf/rdf.test
Tests the presence of the RDFa markup for the title, date and author and homepage on registered users and anonymous comments.

File

drupal/modules/rdf/rdf.test, line 562
Tests for rdf.module.

Class

RdfCommentAttributesTestCase

Code

function _testBasicCommentRdfaMarkup($comment, $account = array()) {
  $comment_container = $this
    ->xpath('//div[contains(@class, "comment") and contains(@typeof, "sioct:Comment")]');
  $this
    ->assertTrue(!empty($comment_container), "Comment RDF type for comment found.");
  $comment_title = $this
    ->xpath('//div[contains(@class, "comment") and contains(@typeof, "sioct:Comment")]//h3[@property="dc:title"]');
  $this
    ->assertEqual((string) $comment_title[0]->a, $comment->subject, "RDFa markup for the comment title found.");
  $comment_date = $this
    ->xpath('//div[contains(@class, "comment") and contains(@typeof, "sioct:Comment")]//*[contains(@property, "dc:date") and contains(@property, "dc:created")]');
  $this
    ->assertTrue(!empty($comment_date), "RDFa markup for the date of the comment found.");

  // The author tag can be either a or span
  $comment_author = $this
    ->xpath('//div[contains(@class, "comment") and contains(@typeof, "sioct:Comment")]//span[@rel="sioc:has_creator"]/*[contains(@class, "username") and @typeof="sioc:UserAccount" and @property="foaf:name" and @datatype=""]');
  $name = empty($account["name"]) ? $this->web_user->name : $account["name"] . " (not verified)";
  $this
    ->assertEqual((string) $comment_author[0], $name, "RDFa markup for the comment author found.");
  $comment_body = $this
    ->xpath('//div[contains(@class, "comment") and contains(@typeof, "sioct:Comment")]//div[@class="content"]//div[contains(@class, "comment-body")]//div[@property="content:encoded"]');
  $this
    ->assertEqual((string) $comment_body[0]->p, $comment->comment, "RDFa markup for the comment body found.");
}