class AggregatorFeedViewsFieldAccessTest

Same name and namespace in other branches
  1. 8.9.x core/modules/aggregator/tests/src/Kernel/Views/AggregatorFeedViewsFieldAccessTest.php \Drupal\Tests\aggregator\Kernel\Views\AggregatorFeedViewsFieldAccessTest

Tests base field access in Views for the aggregator_feed entity.

@group aggregator @group legacy

Hierarchy

Expanded class hierarchy of AggregatorFeedViewsFieldAccessTest

File

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

Namespace

Drupal\Tests\aggregator\Kernel\Views
View source
class AggregatorFeedViewsFieldAccessTest extends FieldFieldAccessTestBase {
  
  /**
   * {@inheritdoc}
   */
  protected static $modules = [
    'aggregator',
    'entity_test',
    'options',
  ];
  
  /**
   * {@inheritdoc}
   */
  protected function setUp($import_test_views = TRUE) : void {
    parent::setUp($import_test_views);
    $this->installEntitySchema('aggregator_feed');
  }
  
  /**
   * Checks access for aggregator_feed fields.
   */
  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.