class CommentStatusFieldAccessTest in Drupal 10
Same name and namespace in other branches
- 8 core/modules/comment/tests/src/Functional/CommentStatusFieldAccessTest.php \Drupal\Tests\comment\Functional\CommentStatusFieldAccessTest
- 9 core/modules/comment/tests/src/Functional/CommentStatusFieldAccessTest.php \Drupal\Tests\comment\Functional\CommentStatusFieldAccessTest
Tests comment status field access.
@group comment
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\comment\Functional\CommentStatusFieldAccessTest uses CommentTestTrait
 
Expanded class hierarchy of CommentStatusFieldAccessTest
File
- core/modules/ comment/ tests/ src/ Functional/ CommentStatusFieldAccessTest.php, line 14 
Namespace
Drupal\Tests\comment\FunctionalView source
class CommentStatusFieldAccessTest extends BrowserTestBase {
  use CommentTestTrait;
  /**
   * {@inheritdoc}
   */
  public $profile = 'testing';
  /**
   * {@inheritdoc}
   */
  protected $defaultTheme = 'stark';
  /**
   * Comment admin.
   *
   * @var \Drupal\user\UserInterface
   */
  protected $commentAdmin;
  /**
   * Node author.
   *
   * @var \Drupal\user\UserInterface
   */
  protected $nodeAuthor;
  /**
   * {@inheritdoc}
   */
  protected static $modules = [
    'node',
    'comment',
    'user',
    'system',
    'text',
  ];
  /**
   * {@inheritdoc}
   */
  protected function setUp() : void {
    parent::setUp();
    $node_type = NodeType::create([
      'type' => 'article',
      'name' => 'Article',
    ]);
    $node_type
      ->save();
    $this->nodeAuthor = $this
      ->drupalCreateUser([
      'create article content',
      'skip comment approval',
      'post comments',
      'edit own comments',
      'access comments',
      'administer nodes',
    ]);
    $this->commentAdmin = $this
      ->drupalCreateUser([
      'administer comments',
      'create article content',
      'edit own comments',
      'skip comment approval',
      'post comments',
      'access comments',
      'administer nodes',
    ]);
    $this
      ->addDefaultCommentField('node', 'article');
  }
  /**
   * Tests comment status field access.
   */
  public function testCommentStatusFieldAccessStatus() {
    $this
      ->drupalLogin($this->nodeAuthor);
    $this
      ->drupalGet('node/add/article');
    $assert = $this
      ->assertSession();
    $assert
      ->fieldNotExists('comment[0][status]');
    $this
      ->submitForm([
      'title[0][value]' => 'Node 1',
    ], 'Save');
    $assert
      ->fieldExists('subject[0][value]');
    $this
      ->drupalLogin($this->commentAdmin);
    $this
      ->drupalGet('node/add/article');
    $assert
      ->fieldExists('comment[0][status]');
    $this
      ->submitForm([
      'title[0][value]' => 'Node 2',
    ], 'Save');
    $assert
      ->fieldExists('subject[0][value]');
  }
}