function AggregatorTestBase::getDefaultFeedItemCount

Same name in this branch
  1. 8.9.x core/modules/aggregator/src/Tests/AggregatorTestBase.php \Drupal\aggregator\Tests\AggregatorTestBase::getDefaultFeedItemCount()
Same name and namespace in other branches
  1. 9 core/modules/aggregator/tests/src/Functional/AggregatorTestBase.php \Drupal\Tests\aggregator\Functional\AggregatorTestBase::getDefaultFeedItemCount()

Returns the count of the randomly created feed array.

Return value

int Number of feed items on default feed created by createFeed().

2 calls to AggregatorTestBase::getDefaultFeedItemCount()
AggregatorRenderingTest::testBlockLinks in core/modules/aggregator/tests/src/Functional/AggregatorRenderingTest.php
Adds a feed block to the page and checks its links.
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 162

Class

AggregatorTestBase
Defines a base class for testing the Aggregator module.

Namespace

Drupal\Tests\aggregator\Functional

Code

public function getDefaultFeedItemCount() {
    // Our tests are based off of rss.xml, so let's find out how many elements
    // should be related.
    $feed_count = \Drupal::entityQuery('node')->condition('promote', NodeInterface::PROMOTED)
        ->condition('status', NodeInterface::PUBLISHED)
        ->accessCheck(FALSE)
        ->range(0, $this->config('system.rss')
        ->get('items.limit'))
        ->count()
        ->execute();
    return min($feed_count, 10);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.