You are here

public function TrackerNodeAccessTest::testTrackerNodeAccess in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/tracker/tests/src/Functional/TrackerNodeAccessTest.php \Drupal\Tests\tracker\Functional\TrackerNodeAccessTest::testTrackerNodeAccess()

Ensure private node on /tracker is only visible to users with permission.

File

core/modules/tracker/tests/src/Functional/TrackerNodeAccessTest.php, line 74

Class

TrackerNodeAccessTest
Tests for private node access on /tracker.

Namespace

Drupal\Tests\tracker\Functional

Code

public function testTrackerNodeAccess() {

  // Create user with node test view permission.
  $access_user = $this
    ->drupalCreateUser([
    'node test view',
    'access user profiles',
  ]);

  // Create user without node test view permission.
  $no_access_user = $this
    ->drupalCreateUser([
    'access user profiles',
  ]);
  $this
    ->drupalLogin($access_user);

  // Create some nodes.
  $private_node = $this
    ->drupalCreateNode([
    'title' => t('Private node test'),
    'private' => TRUE,
  ]);
  $public_node = $this
    ->drupalCreateNode([
    'title' => t('Public node test'),
    'private' => FALSE,
  ]);

  // User with access should see both nodes created.
  $this
    ->drupalGet('activity');
  $this
    ->assertSession()
    ->pageTextContains($private_node
    ->getTitle());
  $this
    ->assertSession()
    ->pageTextContains($public_node
    ->getTitle());
  $this
    ->drupalGet('user/' . $access_user
    ->id() . '/activity');
  $this
    ->assertSession()
    ->pageTextContains($private_node
    ->getTitle());
  $this
    ->assertSession()
    ->pageTextContains($public_node
    ->getTitle());

  // User without access should not see private node.
  $this
    ->drupalLogin($no_access_user);
  $this
    ->drupalGet('activity');
  $this
    ->assertSession()
    ->pageTextNotContains($private_node
    ->getTitle());
  $this
    ->assertSession()
    ->pageTextContains($public_node
    ->getTitle());
  $this
    ->drupalGet('user/' . $access_user
    ->id() . '/activity');
  $this
    ->assertSession()
    ->pageTextNotContains($private_node
    ->getTitle());
  $this
    ->assertSession()
    ->pageTextContains($public_node
    ->getTitle());
}