1 node.test NodeAccessUnitTest::testNodeAccess()

Runs basic tests for node_access function.

File

core/modules/node/tests/node.test, line 1528
Tests for node.module.

Class

NodeAccessUnitTest
Tests basic node_access functionality.

Code

function testNodeAccess() {
  // Ensures user without 'access content' permission can do nothing.
  $web_user1 = $this->backdropCreateUser(array('create page content', 'edit any page content', 'delete any page content'));
  $node1 = $this->backdropCreateNode(array('type' => 'page'));
  $this->assertNodeAccess(array('create' => FALSE), 'page', $web_user1);
  $this->assertNodeAccess(array('view' => FALSE, 'update' => FALSE, 'delete' => FALSE), $node1, $web_user1);

  // Ensures user with 'bypass node access' permission can do everything.
  $web_user2 = $this->backdropCreateUser(array('bypass node access'));
  $node2 = $this->backdropCreateNode(array('type' => 'page'));
  $this->assertNodeAccess(array('create' => TRUE), 'page', $web_user2);
  $this->assertNodeAccess(array('view' => TRUE, 'update' => TRUE, 'delete' => TRUE), $node2, $web_user2);

  // User cannot 'view own unpublished content'.
  $web_user3 = $this->backdropCreateUser(array('access content'));
  $node3 = $this->backdropCreateNode(array('status' => 0, 'uid' => $web_user3->uid));
  $this->assertNodeAccess(array('view' => FALSE), $node3, $web_user3);

  // User cannot create content without permission.
  $this->assertNodeAccess(array('create' => FALSE), 'page', $web_user3);

  // User can 'view own unpublished content', but another user cannot.
  $web_user4 = $this->backdropCreateUser(array('access content', 'view own unpublished content'));
  $web_user5 = $this->backdropCreateUser(array('access content', 'view own unpublished content'));
  $node4 = $this->backdropCreateNode(array('status' => 0, 'uid' => $web_user4->uid));
  $this->assertNodeAccess(array('view' => TRUE, 'update' => FALSE), $node4, $web_user4);
  $this->assertNodeAccess(array('view' => FALSE), $node4, $web_user5);

  // User can 'view all unpublished content'.
  $web_user6 = $this->backdropCreateUser(array('access content', 'view any unpublished content'));
  $this->assertNodeAccess(array('view' => TRUE, 'update' => FALSE), $node4, $web_user6);
  $node5 = $this->backdropCreateNode(array('status' => 0, 'uid' => $web_user5->uid));
  $this->assertNodeAccess(array('view' => TRUE, 'update' => FALSE), $node5, $web_user6);

  // Tests the default access provided for a published node.
  $node5 = $this->backdropCreateNode();
  $this->assertNodeAccess(array('view' => TRUE, 'update' => FALSE, 'delete' => FALSE), $node5, $web_user3);
}