You are here

public function FeedFetcherPluginTest::testfetch in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/aggregator/tests/src/Functional/FeedFetcherPluginTest.php \Drupal\Tests\aggregator\Functional\FeedFetcherPluginTest::testfetch()

Test fetching functionality.

File

core/modules/aggregator/tests/src/Functional/FeedFetcherPluginTest.php, line 33

Class

FeedFetcherPluginTest
Tests the fetcher plugins functionality and discoverability.

Namespace

Drupal\Tests\aggregator\Functional

Code

public function testfetch() {

  // Create feed with local url.
  $feed = $this
    ->createFeed();
  $this
    ->updateFeedItems($feed);
  $this
    ->assertFalse(empty($feed->items));

  // Delete items and restore checked property to 0.
  $this
    ->deleteFeedItems($feed);

  // Change its name and try again.
  $feed
    ->setTitle('Do not fetch');
  $feed
    ->save();
  $this
    ->updateFeedItems($feed);

  // Fetch should fail due to feed name.
  $this
    ->assertTrue(empty($feed->items));
}