NodeViewsFieldAccessTest.php

Same filename and directory in other branches
  1. 9 core/modules/node/tests/src/Kernel/Views/NodeViewsFieldAccessTest.php
  2. 10 core/modules/node/tests/src/Kernel/Views/NodeViewsFieldAccessTest.php
  3. 11.x core/modules/node/tests/src/Kernel/Views/NodeViewsFieldAccessTest.php

Namespace

Drupal\Tests\node\Kernel\Views

File

core/modules/node/tests/src/Kernel/Views/NodeViewsFieldAccessTest.php

View source
<?php

namespace Drupal\Tests\node\Kernel\Views;

use Drupal\node\Entity\Node;
use Drupal\node\Entity\NodeType;
use Drupal\user\Entity\User;
use Drupal\Tests\views\Kernel\Handler\FieldFieldAccessTestBase;

/**
 * Tests base field access in Views for the node entity.
 *
 * @group Node
 */
class NodeViewsFieldAccessTest extends FieldFieldAccessTestBase {
    
    /**
     * {@inheritdoc}
     */
    public static $modules = [
        'node',
        'entity_test',
    ];
    
    /**
     * {@inheritdoc}
     */
    protected function setUp($import_test_views = TRUE) {
        parent::setUp($import_test_views);
        $this->installEntitySchema('node');
    }
    
    /**
     * Check access for node fields.
     */
    public function testNodeFields() {
        $user = User::create([
            'name' => 'test user',
        ]);
        $user->save();
        NodeType::create([
            'type' => 'article',
            'name' => 'Article',
        ])->save();
        $node = Node::create([
            'type' => 'article',
            'title' => 'Test title',
            'uid' => $user->id(),
            'status' => 1,
            'promote' => 1,
            'sticky' => 0,
            'created' => 123456,
        ]);
        $node->save();
        // @todo Expand the test coverage in https://www.drupal.org/node/2464635
        $this->assertFieldAccess('node', 'nid', $node->id());
        $this->assertFieldAccess('node', 'uuid', $node->uuid());
        $this->assertFieldAccess('node', 'vid', $node->id());
        $this->assertFieldAccess('node', 'type', $node->type->entity
            ->label());
        $this->assertFieldAccess('node', 'langcode', $node->language()
            ->getName());
        $this->assertFieldAccess('node', 'title', 'Test title');
        $this->assertFieldAccess('node', 'uid', $user->getAccountName());
        // @todo Don't we want to display Published / Unpublished by default,
        //   see https://www.drupal.org/node/2465623
        $this->assertFieldAccess('node', 'status', 'On');
        $this->assertFieldAccess('node', 'promote', 'On');
        $this->assertFieldAccess('node', 'sticky', 'Off');
        // $this->assertFieldAccess('node', 'created', \Drupal::service('date.formatter')->format(123456));
        // $this->assertFieldAccess('node', 'changed', \Drupal::service('date.formatter')->format(REQUEST_TIME));
    }

}

Classes

Title Deprecated Summary
NodeViewsFieldAccessTest Tests base field access in Views for the node entity.

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