Unverified Commit 83f07ce0 authored by Alex Pott's avatar Alex Pott
Browse files

Issue #3150661 by cburschka: FileFieldRSSContentTest uses XPath incorrectly

(cherry picked from commit 6b769d1e)
parent 4f61b6f6
Loading
Loading
Loading
Loading
+3 −4
Original line number Diff line number Diff line
@@ -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.');
  }

}