Skip to content
Snippets Groups Projects
Unverified Commit 6b769d1e authored by Alex Pott's avatar Alex Pott
Browse files

Issue #3150661 by cburschka: FileFieldRSSContentTest uses XPath incorrectly

parent 073679e7
No related merge requests found
......@@ -63,14 +63,13 @@ public function testFileFieldRSSContent() {
// Check that the RSS enclosure appears in the RSS feed.
$this->drupalGet('rss.xml');
$uploaded_filename = str_replace('public://', '', $node_file->getFileUri());
$selector = sprintf(
'enclosure[@url="%s"][@length="%s"][@type="%s"]',
file_create_url("public://$uploaded_filename", ['absolute' => TRUE]),
'//enclosure[@url="%s" and @length="%s" and @type="%s"]',
file_create_url($node_file->getFileUri()),
$node_file->getSize(),
$node_file->getMimeType()
);
$this->assertNotNull($this->getSession()->getDriver()->find('xpath', $selector), 'File field RSS enclosure is displayed when viewing the RSS feed.');
$this->assertNotEmpty($this->getSession()->getDriver()->find($selector), 'File field RSS enclosure is displayed when viewing the RSS feed.');
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment