function AggregatorFeedViewsFieldAccessTest::testAggregatorFeedFields
Same name in other branches
- 8.9.x 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 33
Class
- AggregatorFeedViewsFieldAccessTest
- Tests base field access in Views for the aggregator_feed entity.
Namespace
Drupal\Tests\aggregator\Kernel\ViewsCode
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.