You are here

public function NoJavaScriptAnonymousTest::testNoJavaScript in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/system/tests/src/Functional/Common/NoJavaScriptAnonymousTest.php \Drupal\Tests\system\Functional\Common\NoJavaScriptAnonymousTest::testNoJavaScript()
  2. 9 core/modules/system/tests/src/Functional/Common/NoJavaScriptAnonymousTest.php \Drupal\Tests\system\Functional\Common\NoJavaScriptAnonymousTest::testNoJavaScript()

Tests that anonymous users are not served any JavaScript.

File

core/modules/system/tests/src/Functional/Common/NoJavaScriptAnonymousTest.php, line 78

Class

NoJavaScriptAnonymousTest
Tests that anonymous users are not served any JavaScript.

Namespace

Drupal\Tests\system\Functional\Common

Code

public function testNoJavaScript() {

  // Create a node of content type 'article' that is listed on the frontpage.
  $this
    ->drupalCreateContentType([
    'type' => 'article',
  ]);
  $this
    ->drupalCreateNode([
    'type' => 'article',
    'promote' => NodeInterface::PROMOTED,
  ]);

  // Test frontpage.
  $this
    ->drupalGet('');
  $this
    ->assertNoJavaScript();

  // Test node page.
  $this
    ->drupalGet('node/1');
  $this
    ->assertNoJavaScript();

  // Test user profile page.
  $user = $this
    ->drupalCreateUser();
  $this
    ->drupalGet('user/' . $user
    ->id());
  $this
    ->assertNoJavaScript();
}