class PageViewTest in Drupal 10
Same name and namespace in other branches
- 8 core/modules/node/tests/src/Functional/PageViewTest.php \Drupal\Tests\node\Functional\PageViewTest
- 9 core/modules/node/tests/src/Functional/PageViewTest.php \Drupal\Tests\node\Functional\PageViewTest
Create a node and test edit permissions.
@group node
Hierarchy
- class \Drupal\Tests\BrowserTestBase extends \PHPUnit\Framework\TestCase uses \Drupal\Tests\PhpUnitCompatibilityTrait, \Symfony\Bridge\PhpUnit\ExpectDeprecationTrait, FunctionalTestSetupTrait, TestSetupTrait, BlockCreationTrait, ConfigTestTrait, ExtensionListTestTrait, ContentTypeCreationTrait, NodeCreationTrait, RandomGeneratorTrait, TestRequirementsTrait, PhpUnitWarnings, UiHelperTrait, UserCreationTrait, XdebugRequestTrait
- class \Drupal\Tests\node\Functional\NodeTestBase
- class \Drupal\Tests\node\Functional\PageViewTest
- class \Drupal\Tests\node\Functional\NodeTestBase
Expanded class hierarchy of PageViewTest
File
- core/
modules/ node/ tests/ src/ Functional/ PageViewTest.php, line 12
Namespace
Drupal\Tests\node\FunctionalView source
class PageViewTest extends NodeTestBase {
/**
* {@inheritdoc}
*/
protected $defaultTheme = 'stark';
/**
* Tests an anonymous and unpermissioned user attempting to edit the node.
*/
public function testPageView() {
// Create a node to view.
$node = $this
->drupalCreateNode();
$this
->assertNotEmpty(Node::load($node
->id()), 'Node created.');
// Try to edit with anonymous user.
$this
->drupalGet("node/" . $node
->id() . "/edit");
$this
->assertSession()
->statusCodeEquals(403);
// Create a user without permission to edit node.
$web_user = $this
->drupalCreateUser([
'access content',
]);
$this
->drupalLogin($web_user);
// Attempt to access edit page.
$this
->drupalGet("node/" . $node
->id() . "/edit");
$this
->assertSession()
->statusCodeEquals(403);
// Create user with permission to edit node.
$web_user = $this
->drupalCreateUser([
'bypass node access',
]);
$this
->drupalLogin($web_user);
// Attempt to access edit page.
$this
->drupalGet("node/" . $node
->id() . "/edit");
$this
->assertSession()
->statusCodeEquals(200);
}
}