function AggregatorFeedViewsFieldAccessTest::testAggregatorFeedFields

Same name and namespace in other branches
  1. 9 core/modules/aggregator/tests/src/Kernel/Views/AggregatorFeedViewsFieldAccessTest.php \Drupal\Tests\aggregator\Kernel\Views\AggregatorFeedViewsFieldAccessTest::testAggregatorFeedFields()

Checks access for aggregator_feed fields.

File

core/modules/aggregator/tests/src/Kernel/Views/AggregatorFeedViewsFieldAccessTest.php, line 32

Class

AggregatorFeedViewsFieldAccessTest
Tests base field access in Views for the aggregator_feed entity.

Namespace

Drupal\Tests\aggregator\Kernel\Views

Code

public function testAggregatorFeedFields() {
    $feed = Feed::create([
        'title' => 'Drupal org',
        'url' => 'https://www.drupal.org/rss.xml',
        'link' => 'https://www.drupal.org/rss.xml',
    ]);
    $feed->save();
    // @todo Expand the test coverage in https://www.drupal.org/node/2464635
    // $this->assertFieldAccess('aggregator_feed', 'title', $feed->label());
    $this->assertFieldAccess('aggregator_feed', 'langcode', $feed->language()
        ->getName());
    $this->assertFieldAccess('aggregator_feed', 'url', $feed->getUrl());
}

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