1 simpletest.test SimpleTestBrowserTestCase::testXPathEscaping()

Tests XPath escaping.

File

core/modules/simpletest/tests/simpletest.test, line 379
Tests for simpletest.module.

Class

SimpleTestBrowserTestCase
Test internal testing framework browser.

Code

function testXPathEscaping() {
  $test_page = <<< EOF
<html>
<body>
<a href="link1">A "weird" link, just to bother the dumb "XPath 1.0"</a>
<a href="link2">A second "even more weird" link, in memory of George O'Malley</a>
</body>
</html>
EOF;
  $this->backdropSetContent($test_page);

  // Matches the first link.
  $urls = $this->xpath('//a[text()=:text]', array(':text' => 'A "weird" link, just to bother the dumb "XPath 1.0"'));
  $this->assertEqual($urls[0]['href'], 'link1', 'Match with quotes.');

  $urls = $this->xpath('//a[text()=:text]', array(':text' => 'A second "even more weird" link, in memory of George O\'Malley'));
  $this->assertEqual($urls[0]['href'], 'link2', 'Match with mixed single and double quotes.');
}