From 1167ce57d5985a72b9c9b2db063273e1ca4958b1 Mon Sep 17 00:00:00 2001
From: catch <catch@35733.no-reply.drupal.org>
Date: Tue, 3 Nov 2020 11:45:09 +0000
Subject: [PATCH] Issue #3151118 by alexpott, Beakerboy, kapilkumar0324,
 anmolgoyal74, jungle, heddn, Mile23, andypost, daffie: Include bootstrap.inc
 using composer

(cherry picked from commit b72fe50a60a5bd12c713f04ec4ce02500ba123a5)
---
 composer.lock                                 |   5 +-
 core/assets/scaffold/files/update.php         |   1 -
 core/composer.json                            |   3 +-
 core/includes/install.core.inc                |   3 -
 core/lib/Drupal/Core/DrupalKernel.php         |   3 -
 core/lib/Drupal/Core/Test/TestKernel.php      |   3 -
 .../tests/src/Unit/EntityViewsDataTest.php    |  21 --
 core/rebuild.php                              |   1 -
 core/scripts/db-tools.php                     |   1 -
 core/scripts/dump-database-d8-mysql.php       |   1 -
 core/scripts/generate-proxy-class.php         |   1 -
 core/scripts/rebuild_token_calculator.sh      |   1 -
 .../Drupal/KernelTests/KernelTestBase.php     |   2 -
 .../Tests/Core/Command/QuickStartTest.php     |   1 -
 core/tests/Drupal/Tests/Core/CronTest.php     |   7 -
 .../Tests/Core/Database/DatabaseTest.php      |   5 -
 .../Core/DrupalKernel/DrupalKernelTest.php    | 328 +++++++++---------
 .../Tests/Core/Error/DrupalLogErrorTest.php   |   1 -
 .../Extension/ExtensionSerializationTest.php  |  10 +-
 .../Core/Render/Element/MachineNameTest.php   |  10 -
 .../Drupal/Tests/TestRequirementsTrait.php    |   3 -
 update.php                                    |   1 -
 22 files changed, 172 insertions(+), 240 deletions(-)

diff --git a/composer.lock b/composer.lock
index e6007e00d5f9..754f4a823335 100644
--- a/composer.lock
+++ b/composer.lock
@@ -527,7 +527,7 @@
             "dist": {
                 "type": "path",
                 "url": "core",
-                "reference": "0809224944e41d0a5d03f65e1f7a179512647923"
+                "reference": "af5b9453adf15c6831b1f73e322f8c59da877f14"
             },
             "require": {
                 "asm89/stack-cors": "^1.1",
@@ -752,6 +752,9 @@
                     "lib/Drupal/Core/DrupalKernelInterface.php",
                     "lib/Drupal/Core/Installer/InstallerRedirectTrait.php",
                     "lib/Drupal/Core/Site/Settings.php"
+                ],
+                "files": [
+                    "includes/bootstrap.inc"
                 ]
             },
             "scripts": {
diff --git a/core/assets/scaffold/files/update.php b/core/assets/scaffold/files/update.php
index 59e808ed24c5..b65649cb8743 100644
--- a/core/assets/scaffold/files/update.php
+++ b/core/assets/scaffold/files/update.php
@@ -16,7 +16,6 @@
 // Disable garbage collection during test runs. Under certain circumstances the
 // update path will create so many objects that garbage collection causes
 // segmentation faults.
-require_once 'core/includes/bootstrap.inc';
 if (drupal_valid_test_ua()) {
   gc_collect_cycles();
   gc_disable();
diff --git a/core/composer.json b/core/composer.json
index 4ef79995f56d..671a37e8d662 100644
--- a/core/composer.json
+++ b/core/composer.json
@@ -198,7 +198,8 @@
             "lib/Drupal/Core/DrupalKernelInterface.php",
             "lib/Drupal/Core/Installer/InstallerRedirectTrait.php",
             "lib/Drupal/Core/Site/Settings.php"
-        ]
+        ],
+        "files": [ "includes/bootstrap.inc" ]
     },
     "config": {
         "preferred-install": "dist"
diff --git a/core/includes/install.core.inc b/core/includes/install.core.inc
index 1d65db263df5..77d3df7bad9c 100644
--- a/core/includes/install.core.inc
+++ b/core/includes/install.core.inc
@@ -311,9 +311,6 @@ function install_begin_request($class_loader, &$install_state) {
     $install_state['parameters']['langcode'] = preg_replace('/[^a-zA-Z_0-9\-]/', '', $install_state['parameters']['langcode']);
   }
 
-  // Allow command line scripts to override server variables used by Drupal.
-  require_once __DIR__ . '/bootstrap.inc';
-
   // If the hash salt leaks, it becomes possible to forge a valid testing user
   // agent, install a new copy of Drupal, and take over the original site.
   // The user agent header is used to pass a database prefix in the request when
diff --git a/core/lib/Drupal/Core/DrupalKernel.php b/core/lib/Drupal/Core/DrupalKernel.php
index a19197f4adfe..fb65d1bbba25 100644
--- a/core/lib/Drupal/Core/DrupalKernel.php
+++ b/core/lib/Drupal/Core/DrupalKernel.php
@@ -984,9 +984,6 @@ public static function bootEnvironment($app_root = NULL) {
       $app_root = static::guessApplicationRoot();
     }
 
-    // Include our bootstrap file.
-    require_once $app_root . '/core/includes/bootstrap.inc';
-
     // Enforce E_STRICT, but allow users to set levels not part of E_STRICT.
     error_reporting(E_STRICT | E_ALL);
 
diff --git a/core/lib/Drupal/Core/Test/TestKernel.php b/core/lib/Drupal/Core/Test/TestKernel.php
index f7eed629d418..124dff402b2d 100644
--- a/core/lib/Drupal/Core/Test/TestKernel.php
+++ b/core/lib/Drupal/Core/Test/TestKernel.php
@@ -13,9 +13,6 @@ class TestKernel extends DrupalKernel {
    * {@inheritdoc}
    */
   public function __construct($environment, $class_loader, $allow_dumping = TRUE) {
-    // Include our bootstrap file.
-    require_once __DIR__ . '/../../../../includes/bootstrap.inc';
-
     // Exit if we should be in a test environment but aren't.
     if (!drupal_valid_test_ua()) {
       header($_SERVER['SERVER_PROTOCOL'] . ' 403 Forbidden');
diff --git a/core/modules/views/tests/src/Unit/EntityViewsDataTest.php b/core/modules/views/tests/src/Unit/EntityViewsDataTest.php
index a88b019bcca9..2338d469c32b 100644
--- a/core/modules/views/tests/src/Unit/EntityViewsDataTest.php
+++ b/core/modules/views/tests/src/Unit/EntityViewsDataTest.php
@@ -1195,24 +1195,3 @@ public function setKey($key, $value) {
   }
 
 }
-
-namespace Drupal\entity_test\Entity;
-
-if (!function_exists('t')) {
-
-  function t($string, array $args = []) {
-    return strtr($string, $args);
-  }
-
-}
-
-
-namespace Drupal\Core\Entity;
-
-if (!function_exists('t')) {
-
-  function t($string, array $args = []) {
-    return strtr($string, $args);
-  }
-
-}
diff --git a/core/rebuild.php b/core/rebuild.php
index 612df7c3eea5..0c4d0d91c083 100644
--- a/core/rebuild.php
+++ b/core/rebuild.php
@@ -25,7 +25,6 @@
 
 $request = Request::createFromGlobals();
 // Manually resemble early bootstrap of DrupalKernel::boot().
-require_once __DIR__ . '/includes/bootstrap.inc';
 DrupalKernel::bootEnvironment();
 
 try {
diff --git a/core/scripts/db-tools.php b/core/scripts/db-tools.php
index 618402199e26..dccd69ce218d 100644
--- a/core/scripts/db-tools.php
+++ b/core/scripts/db-tools.php
@@ -17,7 +17,6 @@
 
 // Bootstrap.
 $autoloader = require __DIR__ . '/../../autoload.php';
-require_once __DIR__ . '/../includes/bootstrap.inc';
 $request = Request::createFromGlobals();
 Settings::initialize(dirname(__DIR__, 2), DrupalKernel::findSitePath($request), $autoloader);
 $kernel = DrupalKernel::createFromRequest($request, $autoloader, 'prod')->boot();
diff --git a/core/scripts/dump-database-d8-mysql.php b/core/scripts/dump-database-d8-mysql.php
index 8c7766947f76..bce5d549bc41 100644
--- a/core/scripts/dump-database-d8-mysql.php
+++ b/core/scripts/dump-database-d8-mysql.php
@@ -17,7 +17,6 @@
 
 // Bootstrap.
 $autoloader = require __DIR__ . '/../../autoload.php';
-require_once __DIR__ . '/../includes/bootstrap.inc';
 $request = Request::createFromGlobals();
 Settings::initialize(dirname(__DIR__, 2), DrupalKernel::findSitePath($request), $autoloader);
 $kernel = DrupalKernel::createFromRequest($request, $autoloader, 'prod')->boot();
diff --git a/core/scripts/generate-proxy-class.php b/core/scripts/generate-proxy-class.php
index 80aa1917ff69..d277c34d5ee3 100644
--- a/core/scripts/generate-proxy-class.php
+++ b/core/scripts/generate-proxy-class.php
@@ -18,7 +18,6 @@
 
 // Bootstrap.
 $autoloader = require __DIR__ . '/../../autoload.php';
-require_once __DIR__ . '/../includes/bootstrap.inc';
 $request = Request::createFromGlobals();
 Settings::initialize(dirname(__DIR__, 2), DrupalKernel::findSitePath($request), $autoloader);
 $kernel = DrupalKernel::createFromRequest($request, $autoloader, 'prod')->boot();
diff --git a/core/scripts/rebuild_token_calculator.sh b/core/scripts/rebuild_token_calculator.sh
index 362be3d5fdaf..0e495b37528e 100755
--- a/core/scripts/rebuild_token_calculator.sh
+++ b/core/scripts/rebuild_token_calculator.sh
@@ -16,7 +16,6 @@
 }
 
 $autoloader = require __DIR__ . '/../../autoload.php';
-require_once __DIR__ . '/../includes/bootstrap.inc';
 
 $request = Request::createFromGlobals();
 Settings::initialize(DRUPAL_ROOT, DrupalKernel::findSitePath($request), $autoloader);
diff --git a/core/tests/Drupal/KernelTests/KernelTestBase.php b/core/tests/Drupal/KernelTests/KernelTestBase.php
index 2627d73dac8b..a5edce16dfae 100644
--- a/core/tests/Drupal/KernelTests/KernelTestBase.php
+++ b/core/tests/Drupal/KernelTests/KernelTestBase.php
@@ -258,8 +258,6 @@ protected function bootEnvironment() {
 
     $this->classLoader = require $this->root . '/autoload.php';
 
-    require_once $this->root . '/core/includes/bootstrap.inc';
-
     // Set up virtual filesystem.
     Database::addConnectionInfo('default', 'test-runner', $this->getDatabaseConnectionInfo()['default']);
     $test_db = new TestDatabase();
diff --git a/core/tests/Drupal/Tests/Core/Command/QuickStartTest.php b/core/tests/Drupal/Tests/Core/Command/QuickStartTest.php
index 594f29eabc06..89612cc8ea65 100644
--- a/core/tests/Drupal/Tests/Core/Command/QuickStartTest.php
+++ b/core/tests/Drupal/Tests/Core/Command/QuickStartTest.php
@@ -60,7 +60,6 @@ public function setUp(): void {
     }
     // Get a lock and a valid site path.
     $this->testDb = new TestDatabase();
-    include $this->root . '/core/includes/bootstrap.inc';
   }
 
   /**
diff --git a/core/tests/Drupal/Tests/Core/CronTest.php b/core/tests/Drupal/Tests/Core/CronTest.php
index c414c86bed70..835eb74fab50 100644
--- a/core/tests/Drupal/Tests/Core/CronTest.php
+++ b/core/tests/Drupal/Tests/Core/CronTest.php
@@ -59,13 +59,6 @@ class CronTest extends UnitTestCase {
   protected function setUp(): void {
     parent::setUp();
 
-    // @todo Remove in https://www.drupal.org/project/drupal/issues/2932518
-    //
-    // This line is currently needed so that watchdog_exception() is available
-    // when unit testing Drupal\Core\Cron and can safely be removed once that
-    // class no longer refers to it.
-    require_once $this->root . '/core/includes/bootstrap.inc';
-
     // Construct a state object used for testing logger assertions.
     $this->state = new State(new KeyValueMemoryFactory());
 
diff --git a/core/tests/Drupal/Tests/Core/Database/DatabaseTest.php b/core/tests/Drupal/Tests/Core/Database/DatabaseTest.php
index 20b9f399f410..7c7dcd25752f 100644
--- a/core/tests/Drupal/Tests/Core/Database/DatabaseTest.php
+++ b/core/tests/Drupal/Tests/Core/Database/DatabaseTest.php
@@ -82,11 +82,6 @@ public function providerFindDriverAutoloadDirectory() {
    */
   public function testFindDriverAutoloadDirectoryException($expected_message, $namespace, $include_tests) {
     new Settings(['extension_discovery_scan_tests' => $include_tests]);
-    if ($include_tests === FALSE) {
-      // \Drupal\Core\Extension\ExtensionDiscovery::scan() needs
-      // drupal_valid_test_ua().
-      include $this->root . '/core/includes/bootstrap.inc';
-    }
     $this->expectException(\RuntimeException::class);
     $this->expectExceptionMessage($expected_message);
     Database::findDriverAutoloadDirectory($namespace, $this->root);
diff --git a/core/tests/Drupal/Tests/Core/DrupalKernel/DrupalKernelTest.php b/core/tests/Drupal/Tests/Core/DrupalKernel/DrupalKernelTest.php
index e77d2e25eb75..881b270390cf 100644
--- a/core/tests/Drupal/Tests/Core/DrupalKernel/DrupalKernelTest.php
+++ b/core/tests/Drupal/Tests/Core/DrupalKernel/DrupalKernelTest.php
@@ -1,195 +1,183 @@
 <?php
 
-namespace Drupal\Tests\Core\DrupalKernel {
+namespace Drupal\Tests\Core\DrupalKernel;
 
-  use Drupal\Core\DrupalKernel;
-  use Drupal\Tests\UnitTestCase;
-  use org\bovigo\vfs\vfsStream;
-  use Symfony\Component\HttpFoundation\Request;
+use Drupal\Core\DrupalKernel;
+use Drupal\Tests\UnitTestCase;
+use org\bovigo\vfs\vfsStream;
+use Symfony\Component\HttpFoundation\Request;
+
+/**
+ * @coversDefaultClass \Drupal\Core\DrupalKernel
+ * @group DrupalKernel
+ */
+class DrupalKernelTest extends UnitTestCase {
 
   /**
-   * @coversDefaultClass \Drupal\Core\DrupalKernel
-   * @group DrupalKernel
+   * Tests hostname validation with settings.
+   *
+   * @covers ::setupTrustedHosts
+   * @dataProvider providerTestTrustedHosts
    */
-  class DrupalKernelTest extends UnitTestCase {
-
-    /**
-     * Tests hostname validation with settings.
-     *
-     * @covers ::setupTrustedHosts
-     * @dataProvider providerTestTrustedHosts
-     */
-    public function testTrustedHosts($host, $server_name, $message, $expected = FALSE) {
-      $request = new Request();
-
-      $trusted_host_patterns = [
-        '^example\.com$',
-        '^.+\.example\.com$',
-        '^example\.org',
-        '^.+\.example\.org',
-      ];
-
-      if (!empty($host)) {
-        $request->headers->set('HOST', $host);
-      }
-
-      $request->server->set('SERVER_NAME', $server_name);
-
-      $method = new \ReflectionMethod('Drupal\Core\DrupalKernel', 'setupTrustedHosts');
-      $method->setAccessible(TRUE);
-      $valid_host = $method->invoke(NULL, $request, $trusted_host_patterns);
-
-      $this->assertSame($expected, $valid_host, $message);
-
-      // Reset the trusted hosts because it is statically stored on the request.
-      $method->invoke(NULL, $request, []);
-      // Reset the request factory because it is statically stored on the request.
-      Request::setFactory(NULL);
+  public function testTrustedHosts($host, $server_name, $message, $expected = FALSE) {
+    $request = new Request();
+
+    $trusted_host_patterns = [
+      '^example\.com$',
+      '^.+\.example\.com$',
+      '^example\.org',
+      '^.+\.example\.org',
+    ];
+
+    if (!empty($host)) {
+      $request->headers->set('HOST', $host);
     }
 
-    /**
-     * Provides test data for testTrustedHosts().
-     */
-    public function providerTestTrustedHosts() {
-      $data = [];
-
-      // Tests canonical URL.
-      $data[] = [
-        'www.example.com',
-        'www.example.com',
-        'canonical URL is trusted',
-        TRUE,
-      ];
-
-      // Tests missing hostname for HTTP/1.0 compatibility where the Host
-      // header is optional.
-      $data[] = [NULL, 'www.example.com', 'empty Host is valid', TRUE];
-
-      // Tests the additional patterns from the settings.
-      $data[] = [
-        'example.com',
-        'www.example.com',
-        'host from settings is trusted',
-        TRUE,
-      ];
-      $data[] = [
-        'subdomain.example.com',
-        'www.example.com',
-        'host from settings is trusted',
-        TRUE,
-      ];
-      $data[] = [
-        'www.example.org',
-        'www.example.com',
-        'host from settings is trusted',
-        TRUE,
-      ];
-      $data[] = [
-        'example.org',
-        'www.example.com',
-        'host from settings is trusted',
-        TRUE,
-      ];
-
-      // Tests mismatch.
-      $data[] = [
-        'www.blackhat.com',
-        'www.example.com',
-        'unspecified host is untrusted',
-        FALSE,
-      ];
-
-      return $data;
-    }
+    $request->server->set('SERVER_NAME', $server_name);
 
-    /**
-     * Tests site path finding.
-     *
-     * This test is run in a separate process since it defines DRUPAL_ROOT. This
-     * stops any possible pollution of other tests.
-     *
-     * @covers ::findSitePath
-     * @runInSeparateProcess
-     */
-    public function testFindSitePath() {
-      $vfs_root = vfsStream::setup('drupal_root');
-      $sites_php = <<<'EOD'
-<?php
-$sites['8888.www.example.org'] = 'example';
-EOD;
+    $method = new \ReflectionMethod('Drupal\Core\DrupalKernel', 'setupTrustedHosts');
+    $method->setAccessible(TRUE);
+    $valid_host = $method->invoke(NULL, $request, $trusted_host_patterns);
 
-      // Create the expected directory structure.
-      vfsStream::create([
-        'sites' => [
-          'sites.php' => $sites_php,
-          'example' => [
-            'settings.php' => 'test',
-          ],
-        ],
-      ]);
-
-      $request = new Request();
-      $request->server->set('SERVER_NAME', 'www.example.org');
-      $request->server->set('SERVER_PORT', '8888');
-      $request->server->set('SCRIPT_NAME', '/index.php');
-      $this->assertEquals('sites/example', DrupalKernel::findSitePath($request, TRUE, $vfs_root->url('drupal_root')));
-      $this->assertEquals('sites/example', DrupalKernel::findSitePath($request, FALSE, $vfs_root->url('drupal_root')));
-    }
+    $this->assertSame($expected, $valid_host, $message);
 
+    // Reset the trusted hosts because it is statically stored on the request.
+    $method->invoke(NULL, $request, []);
+    // Reset the request factory because it is statically stored on the request.
+    Request::setFactory(NULL);
   }
 
   /**
-   * A fake autoloader for testing
+   * Provides test data for testTrustedHosts().
    */
-  class FakeAutoloader {
-
-    /**
-     * Registers this instance as an autoloader.
-     *
-     * @param bool $prepend
-     *   Whether to prepend the autoloader or not
-     */
-    public function register($prepend = FALSE) {
-      spl_autoload_register([$this, 'loadClass'], TRUE, $prepend);
-    }
-
-    /**
-     * Unregisters this instance as an autoloader.
-     */
-    public function unregister() {
-      spl_autoload_unregister([$this, 'loadClass']);
-    }
-
-    /**
-     * Loads the given class or interface.
-     *
-     * @return null
-     *   This class never loads.
-     */
-    public function loadClass() {
-      return NULL;
-    }
+  public function providerTestTrustedHosts() {
+    $data = [];
+
+    // Tests canonical URL.
+    $data[] = [
+      'www.example.com',
+      'www.example.com',
+      'canonical URL is trusted',
+      TRUE,
+    ];
+
+    // Tests missing hostname for HTTP/1.0 compatibility where the Host
+    // header is optional.
+    $data[] = [NULL, 'www.example.com', 'empty Host is valid', TRUE];
+
+    // Tests the additional patterns from the settings.
+    $data[] = [
+      'example.com',
+      'www.example.com',
+      'host from settings is trusted',
+      TRUE,
+    ];
+    $data[] = [
+      'subdomain.example.com',
+      'www.example.com',
+      'host from settings is trusted',
+      TRUE,
+    ];
+    $data[] = [
+      'www.example.org',
+      'www.example.com',
+      'host from settings is trusted',
+      TRUE,
+    ];
+    $data[] = [
+      'example.org',
+      'www.example.com',
+      'host from settings is trusted',
+      TRUE,
+    ];
+
+    // Tests mismatch.
+    $data[] = [
+      'www.blackhat.com',
+      'www.example.com',
+      'unspecified host is untrusted',
+      FALSE,
+    ];
+
+    return $data;
+  }
 
-    /**
-     * Finds a file by class name while caching lookups to APC.
-     *
-     * @return null
-     *   This class never finds.
-     */
-    public function findFile() {
-      return NULL;
-    }
+  /**
+   * Tests site path finding.
+   *
+   * This test is run in a separate process since it defines DRUPAL_ROOT. This
+   * stops any possible pollution of other tests.
+   *
+   * @covers ::findSitePath
+   * @runInSeparateProcess
+   */
+  public function testFindSitePath() {
+    $vfs_root = vfsStream::setup('drupal_root');
+    $sites_php = <<<'EOD'
+<?php
+$sites['8888.www.example.org'] = 'example';
+EOD;
 
+    // Create the expected directory structure.
+    vfsStream::create([
+      'sites' => [
+        'sites.php' => $sites_php,
+        'example' => [
+          'settings.php' => 'test',
+        ],
+      ],
+    ]);
+
+    $request = new Request();
+    $request->server->set('SERVER_NAME', 'www.example.org');
+    $request->server->set('SERVER_PORT', '8888');
+    $request->server->set('SCRIPT_NAME', '/index.php');
+    $this->assertEquals('sites/example', DrupalKernel::findSitePath($request, TRUE, $vfs_root->url('drupal_root')));
+    $this->assertEquals('sites/example', DrupalKernel::findSitePath($request, FALSE, $vfs_root->url('drupal_root')));
   }
+
 }
 
-namespace {
+/**
+ * A fake autoloader for testing
+ */
+class FakeAutoloader {
 
-  if (!function_exists('drupal_valid_test_ua')) {
+  /**
+   * Registers this instance as an autoloader.
+   *
+   * @param bool $prepend
+   *   Whether to prepend the autoloader or not
+   */
+  public function register($prepend = FALSE) {
+    spl_autoload_register([$this, 'loadClass'], TRUE, $prepend);
+  }
 
-    function drupal_valid_test_ua($new_prefix = NULL) {
-      return FALSE;
-    }
+  /**
+   * Unregisters this instance as an autoloader.
+   */
+  public function unregister() {
+    spl_autoload_unregister([$this, 'loadClass']);
+  }
+
+  /**
+   * Loads the given class or interface.
+   *
+   * @return null
+   *   This class never loads.
+   */
+  public function loadClass() {
+    return NULL;
+  }
 
+  /**
+   * Finds a file by class name while caching lookups to APC.
+   *
+   * @return null
+   *   This class never finds.
+   */
+  public function findFile() {
+    return NULL;
   }
+
 }
diff --git a/core/tests/Drupal/Tests/Core/Error/DrupalLogErrorTest.php b/core/tests/Drupal/Tests/Core/Error/DrupalLogErrorTest.php
index 8b252491319c..a867cd196b0a 100644
--- a/core/tests/Drupal/Tests/Core/Error/DrupalLogErrorTest.php
+++ b/core/tests/Drupal/Tests/Core/Error/DrupalLogErrorTest.php
@@ -23,7 +23,6 @@ public function testFatalExitCode() {
 }
 
 $autoloader = require_once 'autoload.php';
-require_once 'core/includes/bootstrap.inc';
 require_once 'core/includes/errors.inc';
 define('DRUPAL_TEST_IN_CHILD_SITE', FALSE);
 
diff --git a/core/tests/Drupal/Tests/Core/Extension/ExtensionSerializationTest.php b/core/tests/Drupal/Tests/Core/Extension/ExtensionSerializationTest.php
index 10a1d5674025..df22664e590a 100644
--- a/core/tests/Drupal/Tests/Core/Extension/ExtensionSerializationTest.php
+++ b/core/tests/Drupal/Tests/Core/Extension/ExtensionSerializationTest.php
@@ -44,8 +44,6 @@ protected function setUp(): void {
    * @covers ::__wakeup
    */
   public function testServiceAppRouteUsage() {
-    // The assumption of our test is that DRUPAL_ROOT is not defined.
-    $this->assertFalse(defined('DRUPAL_ROOT'), 'Constant DRUPAL_ROOT is defined.');
     $container = new ContainerBuilder();
     // Set a dummy container app.root to test against.
     $container->setParameter('app.root', 'vfs://dummy_app_root');
@@ -56,6 +54,14 @@ public function testServiceAppRouteUsage() {
     $reflected_root = new \ReflectionProperty($extension, 'root');
     $reflected_root->setAccessible(TRUE);
     $this->assertEquals('vfs://dummy_app_root', $reflected_root->getValue($extension));
+
+    // Change the app root and test serializing and unserializing again.
+    $container->setParameter('app.root', 'vfs://dummy_app_root2');
+    \Drupal::setContainer($container);
+    $extension = unserialize(serialize($extension));
+    $reflected_root = new \ReflectionProperty($extension, 'root');
+    $reflected_root->setAccessible(TRUE);
+    $this->assertEquals('vfs://dummy_app_root2', $reflected_root->getValue($extension));
   }
 
   /**
diff --git a/core/tests/Drupal/Tests/Core/Render/Element/MachineNameTest.php b/core/tests/Drupal/Tests/Core/Render/Element/MachineNameTest.php
index 51f84615f4fa..adc70ee2e27b 100644
--- a/core/tests/Drupal/Tests/Core/Render/Element/MachineNameTest.php
+++ b/core/tests/Drupal/Tests/Core/Render/Element/MachineNameTest.php
@@ -111,13 +111,3 @@ public function testProcessMachineName() {
   }
 
 }
-
-namespace Drupal\Core\Render\Element;
-
-if (!function_exists('t')) {
-
-  function t($string, array $args = []) {
-    return strtr($string, $args);
-  }
-
-}
diff --git a/core/tests/Drupal/Tests/TestRequirementsTrait.php b/core/tests/Drupal/Tests/TestRequirementsTrait.php
index 924eb84e5c21..ee5ac3509015 100644
--- a/core/tests/Drupal/Tests/TestRequirementsTrait.php
+++ b/core/tests/Drupal/Tests/TestRequirementsTrait.php
@@ -77,9 +77,6 @@ protected function checkRequirements() {
    *   skipped. Callers should not catch this exception.
    */
   private function checkModuleRequirements($root, array $annotations) {
-    // drupal_valid_ua() might not be loaded.
-    require_once $root . '/core/includes/bootstrap.inc';
-
     // Make a list of required modules.
     $required_modules = [];
     foreach ($annotations as $requirement) {
diff --git a/update.php b/update.php
index 59e808ed24c5..b65649cb8743 100644
--- a/update.php
+++ b/update.php
@@ -16,7 +16,6 @@
 // Disable garbage collection during test runs. Under certain circumstances the
 // update path will create so many objects that garbage collection causes
 // segmentation faults.
-require_once 'core/includes/bootstrap.inc';
 if (drupal_valid_test_ua()) {
   gc_collect_cycles();
   gc_disable();
-- 
GitLab