You are here

public function NodeViewsFieldAccessTest::testNodeFields in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/node/tests/src/Kernel/Views/NodeViewsFieldAccessTest.php \Drupal\Tests\node\Kernel\Views\NodeViewsFieldAccessTest::testNodeFields()
  2. 9 core/modules/node/tests/src/Kernel/Views/NodeViewsFieldAccessTest.php \Drupal\Tests\node\Kernel\Views\NodeViewsFieldAccessTest::testNodeFields()

Check access for node fields.

File

core/modules/node/tests/src/Kernel/Views/NodeViewsFieldAccessTest.php, line 34

Class

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

Namespace

Drupal\Tests\node\Kernel\Views

Code

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));
}