From c83c648d6a853c49af8c7ce43869f642fa99d139 Mon Sep 17 00:00:00 2001
From: Ted Bowman <41201-tedbow@users.noreply.drupalcode.org>
Date: Mon, 26 Jun 2023 15:31:18 +0000
Subject: [PATCH] Issue #3368741 by tedbow: Drush build test symlinks Drush,
 and does not install any of its dependencies

---
 .../tests/src/Build/TemplateProjectTestBase.php    | 14 +++++++++++++-
 tests/src/Build/CoreUpdateTest.php                 |  3 ++-
 2 files changed, 15 insertions(+), 2 deletions(-)

diff --git a/package_manager/tests/src/Build/TemplateProjectTestBase.php b/package_manager/tests/src/Build/TemplateProjectTestBase.php
index 5d73aedd29..1863c8b275 100644
--- a/package_manager/tests/src/Build/TemplateProjectTestBase.php
+++ b/package_manager/tests/src/Build/TemplateProjectTestBase.php
@@ -279,6 +279,9 @@ END;
       $this->runComposer('composer require --no-update drupal/core-vendor-hardening:*', $template_dir);
     }
 
+    // Do not run development Composer plugin.
+    $this->runComposer("composer config allow-plugins.dealerdirect/phpcodesniffer-composer-installer false", $template_dir);
+
     // Create the test project, defining its repository as part of the
     // `composer create-project` command.
     $repository = [
@@ -437,12 +440,21 @@ END;
           ],
           'autoload' => $package_info['autoload'] ?? [],
         ];
+        if (isset($package_info['require'])) {
+          unset(
+            $package_info['require']['symfony/polyfill-php72'],
+            $package_info['require']['symfony/polyfill-php73'],
+            $package_info['require']['symfony/polyfill-php74'],
+            $package_info['require']['symfony/polyfill-php80'],
+            $package_info['require']['symfony/polyfill-php81'],
+          );
+          $packages[$name][$version]['require'] = $package_info['require'];
+        }
         // Composer plugins are loaded and activated as early as possible, and
         // they must have a `class` key defined in their `extra` section, along
         // with a dependency on `composer-plugin-api` (plus any other real
         // runtime dependencies).
         if ($packages[$name][$version]['type'] === 'composer-plugin') {
-          $packages[$name][$version]['require'] = $package_info['require'] ?? [];
           $packages[$name][$version]['extra'] = $package_info['extra'] ?? [];
         }
       }
diff --git a/tests/src/Build/CoreUpdateTest.php b/tests/src/Build/CoreUpdateTest.php
index f0f203273c..6e1a882abb 100644
--- a/tests/src/Build/CoreUpdateTest.php
+++ b/tests/src/Build/CoreUpdateTest.php
@@ -402,7 +402,8 @@ class CoreUpdateTest extends UpdateTestBase {
   public function testDrushUpdate(): void {
     $this->createTestProject('RecommendedProject');
 
-    $this->runComposer('composer require drush/drush', 'project');
+    $output = $this->runComposer('COMPOSER_MIRROR_PATH_REPOS=1 composer require drush/drush', 'project');
+    $this->assertStringNotContainsString('Symlinking', $output);
 
     $dir = $this->getWorkspaceDirectory() . '/project';
     $command = [
-- 
GitLab