Updated to Drupal 8.6.4, which is PHP 7.3 friendly. Also updated HTMLaw library....
[yaffs-website] / web / core / modules / aggregator / tests / src / Functional / FeedParserTest.php
1 <?php
2
3 namespace Drupal\Tests\aggregator\Functional;
4
5 use Drupal\Core\Url;
6 use Drupal\aggregator\Entity\Feed;
7
8 /**
9  * Tests the built-in feed parser with valid feed samples.
10  *
11  * @group aggregator
12  */
13 class FeedParserTest extends AggregatorTestBase {
14
15   /**
16    * {@inheritdoc}
17    */
18   protected function setUp() {
19     parent::setUp();
20     // Do not delete old aggregator items during these tests, since our sample
21     // feeds have hardcoded dates in them (which may be expired when this test
22     // is run).
23     $this->config('aggregator.settings')->set('items.expire', AGGREGATOR_CLEAR_NEVER)->save();
24   }
25
26   /**
27    * Tests a feed that uses the RSS 0.91 format.
28    */
29   public function testRSS091Sample() {
30     $feed = $this->createFeed($this->getRSS091Sample());
31     $feed->refreshItems();
32     $this->drupalGet('aggregator/sources/' . $feed->id());
33     $this->assertResponse(200, format_string('Feed %name exists.', ['%name' => $feed->label()]));
34     $this->assertText('First example feed item title');
35     $this->assertLinkByHref('http://example.com/example-turns-one');
36     $this->assertText('First example feed item description.');
37     $this->assertRaw('<img src="http://example.com/images/druplicon.png"');
38
39     // Several additional items that include elements over 255 characters.
40     $this->assertRaw("Second example feed item title.");
41     $this->assertText('Long link feed item title');
42     $this->assertText('Long link feed item description');
43     $this->assertLinkByHref('http://example.com/tomorrow/and/tomorrow/and/tomorrow/creeps/in/this/petty/pace/from/day/to/day/to/the/last/syllable/of/recorded/time/and/all/our/yesterdays/have/lighted/fools/the/way/to/dusty/death/out/out/brief/candle/life/is/but/a/walking/shadow/a/poor/player/that/struts/and/frets/his/hour/upon/the/stage/and/is/heard/no/more/it/is/a/tale/told/by/an/idiot/full/of/sound/and/fury/signifying/nothing');
44     $this->assertText('Long author feed item title');
45     $this->assertText('Long author feed item description');
46     $this->assertLinkByHref('http://example.com/long/author');
47   }
48
49   /**
50    * Tests a feed that uses the Atom format.
51    */
52   public function testAtomSample() {
53     $feed = $this->createFeed($this->getAtomSample());
54     $feed->refreshItems();
55     $this->drupalGet('aggregator/sources/' . $feed->id());
56     $this->assertResponse(200, format_string('Feed %name exists.', ['%name' => $feed->label()]));
57     $this->assertText('Atom-Powered Robots Run Amok');
58     $this->assertLinkByHref('http://example.org/2003/12/13/atom03');
59     $this->assertText('Some text.');
60     $this->assertEqual('urn:uuid:1225c695-cfb8-4ebb-aaaa-80da344efa6a', db_query('SELECT guid FROM {aggregator_item} WHERE link = :link', [':link' => 'http://example.org/2003/12/13/atom03'])->fetchField(), 'Atom entry id element is parsed correctly.');
61
62     // Check for second feed entry.
63     $this->assertText('We tried to stop them, but we failed.');
64     $this->assertLinkByHref('http://example.org/2003/12/14/atom03');
65     $this->assertText('Some other text.');
66     $db_guid = db_query('SELECT guid FROM {aggregator_item} WHERE link = :link', [
67       ':link' => 'http://example.org/2003/12/14/atom03',
68     ])->fetchField();
69     $this->assertEqual('urn:uuid:1225c695-cfb8-4ebb-bbbb-80da344efa6a', $db_guid, 'Atom entry id element is parsed correctly.');
70   }
71
72   /**
73    * Tests a feed that uses HTML entities in item titles.
74    */
75   public function testHtmlEntitiesSample() {
76     $feed = $this->createFeed($this->getHtmlEntitiesSample());
77     $feed->refreshItems();
78     $this->drupalGet('aggregator/sources/' . $feed->id());
79     $this->assertResponse(200, format_string('Feed %name exists.', ['%name' => $feed->label()]));
80     $this->assertRaw("Quote&quot; Amp&amp;");
81   }
82
83   /**
84    * Tests that a redirected feed is tracked to its target.
85    */
86   public function testRedirectFeed() {
87     $redirect_url = Url::fromRoute('aggregator_test.redirect')->setAbsolute()->toString();
88     $feed = Feed::create(['url' => $redirect_url, 'title' => $this->randomMachineName()]);
89     $feed->save();
90     $feed->refreshItems();
91
92     // Make sure that the feed URL was updated correctly.
93     $this->assertEqual($feed->getUrl(), \Drupal::url('aggregator_test.feed', [], ['absolute' => TRUE]));
94   }
95
96   /**
97    * Tests error handling when an invalid feed is added.
98    */
99   public function testInvalidFeed() {
100     // Simulate a typo in the URL to force a curl exception.
101     $invalid_url = 'http:/www.drupal.org';
102     $feed = Feed::create(['url' => $invalid_url, 'title' => $this->randomMachineName()]);
103     $feed->save();
104
105     // Update the feed. Use the UI to be able to check the message easily.
106     $this->drupalGet('admin/config/services/aggregator');
107     $this->clickLink(t('Update items'));
108     $this->assertRaw(t('The feed from %title seems to be broken because of error', ['%title' => $feed->label()]));
109   }
110
111 }