public function StatusExtraTest::testStatusExtra in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/node/src/Tests/Views/StatusExtraTest.php \Drupal\node\Tests\Views\StatusExtraTest::testStatusExtra()
Tests the status extra filter.
File
- core/
modules/ node/ src/ Tests/ Views/ StatusExtraTest.php, line 28 - Contains \Drupal\node\Tests\Views\StatusExtraTest.
Class
- StatusExtraTest
- Tests the node.status_extra field handler.
Namespace
Drupal\node\Tests\ViewsCode
public function testStatusExtra() {
$node_author = $this
->drupalCreateUser(array(
'view own unpublished content',
));
$node_author_not_unpublished = $this
->drupalCreateUser();
$normal_user = $this
->drupalCreateUser();
$admin_user = $this
->drupalCreateUser(array(
'bypass node access',
));
// Create one published and one unpublished node by the admin.
$node_published = $this
->drupalCreateNode(array(
'uid' => $admin_user
->id(),
));
$node_unpublished = $this
->drupalCreateNode(array(
'uid' => $admin_user
->id(),
'status' => NODE_NOT_PUBLISHED,
));
// Create one unpublished node by a certain author user.
$node_unpublished2 = $this
->drupalCreateNode(array(
'uid' => $node_author
->id(),
'status' => NODE_NOT_PUBLISHED,
));
// Create one unpublished node by a user who does not have the `view own
// unpublished content` permission.
$node_unpublished3 = $this
->drupalCreateNode(array(
'uid' => $node_author_not_unpublished
->id(),
'status' => NODE_NOT_PUBLISHED,
));
// The administrator should simply see all nodes.
$this
->drupalLogin($admin_user);
$this
->drupalGet('test_status_extra');
$this
->assertText($node_published
->label());
$this
->assertText($node_unpublished
->label());
$this
->assertText($node_unpublished2
->label());
$this
->assertText($node_unpublished3
->label());
// The node author should see the published node and his own node.
$this
->drupalLogin($node_author);
$this
->drupalGet('test_status_extra');
$this
->assertText($node_published
->label());
$this
->assertNoText($node_unpublished
->label());
$this
->assertText($node_unpublished2
->label());
$this
->assertNoText($node_unpublished3
->label());
// The normal user should just see the published node.
$this
->drupalLogin($normal_user);
$this
->drupalGet('test_status_extra');
$this
->assertText($node_published
->label());
$this
->assertNoText($node_unpublished
->label());
$this
->assertNoText($node_unpublished2
->label());
$this
->assertNoText($node_unpublished3
->label());
// The author without the permission to see his own unpublished node should
// just see the published node.
$this
->drupalLogin($node_author_not_unpublished);
$this
->drupalGet('test_status_extra');
$this
->assertText($node_published
->label());
$this
->assertNoText($node_unpublished
->label());
$this
->assertNoText($node_unpublished2
->label());
$this
->assertNoText($node_unpublished3
->label());
}