From a9119bc74ca2822a3e49aaf9a1a603ce3d65dce8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=CC=81bor=20Hojtsy?= <gabor@hojtsy.hu> Date: Wed, 27 Apr 2022 13:45:37 -0700 Subject: [PATCH] Issue #3276620 by catch, Spokje: Change NoJavaScriptAnonymousTest to use stark theme --- .../Common/NoJavaScriptAnonymousTest.php | 63 +++++++++++++++++-- 1 file changed, 58 insertions(+), 5 deletions(-) diff --git a/core/modules/system/tests/src/Functional/Common/NoJavaScriptAnonymousTest.php b/core/modules/system/tests/src/Functional/Common/NoJavaScriptAnonymousTest.php index 110fc1516f9f..5df3afcce0ad 100644 --- a/core/modules/system/tests/src/Functional/Common/NoJavaScriptAnonymousTest.php +++ b/core/modules/system/tests/src/Functional/Common/NoJavaScriptAnonymousTest.php @@ -6,15 +6,66 @@ use Drupal\Tests\BrowserTestBase; /** - * Tests that anonymous users are not served any JavaScript in the Standard - * installation profile. + * Tests that anonymous users are not served any JavaScript. + * + * This is tested with the core modules that are enabled in the 'standard' + * profile. * * @group Common */ class NoJavaScriptAnonymousTest extends BrowserTestBase { - protected $profile = 'standard'; + /** + * {@inheritdoc} + */ + protected $defaultTheme = 'stark'; + + /** + * Modules to enable. + * + * This is a list of modules that are enabled in the 'standard' profile. + * + * @var array + */ + protected static $modules = [ + 'node', + 'history', + 'block', + 'breakpoint', + 'ckeditor', + 'config', + 'comment', + 'contextual', + 'contact', + 'menu_link_content', + 'datetime', + 'block_content', + 'editor', + 'help', + 'image', + 'menu_ui', + 'options', + 'path', + 'page_cache', + 'dynamic_page_cache', + 'big_pipe', + 'taxonomy', + 'dblog', + 'search', + 'shortcut', + 'toolbar', + 'field_ui', + 'file', + 'rdf', + 'views', + 'views_ui', + 'tour', + 'automated_cron', + ]; + /** + * {@inheritdoc} + */ protected function setUp(): void { parent::setUp(); @@ -26,11 +77,12 @@ protected function setUp(): void { * Tests that anonymous users are not served any JavaScript. */ public function testNoJavaScript() { - // Create a node that is listed on the frontpage. + // Create a node of content type 'article' that is listed on the frontpage. + $this->drupalCreateContentType(['type' => 'article']); $this->drupalCreateNode([ + 'type' => 'article', 'promote' => NodeInterface::PROMOTED, ]); - $user = $this->drupalCreateUser(); // Test frontpage. $this->drupalGet(''); @@ -41,6 +93,7 @@ public function testNoJavaScript() { $this->assertNoJavaScript(); // Test user profile page. + $user = $this->drupalCreateUser(); $this->drupalGet('user/' . $user->id()); $this->assertNoJavaScript(); } -- GitLab