You are here

public function AggregatorTestBase::deleteFeedItems in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/aggregator/tests/src/Functional/AggregatorTestBase.php \Drupal\Tests\aggregator\Functional\AggregatorTestBase::deleteFeedItems()

Confirms an item removal from a feed.

Parameters

\Drupal\aggregator\FeedInterface $feed: Feed object representing the feed.

4 calls to AggregatorTestBase::deleteFeedItems()
AggregatorCronTest::testCron in core/modules/aggregator/tests/src/Functional/AggregatorCronTest.php
Adds feeds and updates them via cron process.
AggregatorTestBase::updateAndDelete in core/modules/aggregator/tests/src/Functional/AggregatorTestBase.php
Adds and deletes feed items and ensure that the count is zero.
FeedFetcherPluginTest::testfetch in core/modules/aggregator/tests/src/Functional/FeedFetcherPluginTest.php
Tests fetching functionality.
UpdateFeedItemTest::testUpdateFeedItem in core/modules/aggregator/tests/src/Functional/UpdateFeedItemTest.php
Tests running "update items" from 'admin/config/services/aggregator' page.

File

core/modules/aggregator/tests/src/Functional/AggregatorTestBase.php, line 222

Class

AggregatorTestBase
Defines a base class for testing the Aggregator module.

Namespace

Drupal\Tests\aggregator\Functional

Code

public function deleteFeedItems(FeedInterface $feed) {
  $this
    ->drupalGet('admin/config/services/aggregator/delete/' . $feed
    ->id());
  $this
    ->submitForm([], 'Delete items');
  $this
    ->assertSession()
    ->pageTextContains('The news items from ' . $feed
    ->label() . ' have been deleted.');
}