diff --git a/package_manager/tests/src/Build/TemplateProjectTestBase.php b/package_manager/tests/src/Build/TemplateProjectTestBase.php index 5d73aedd2928f622cdd2c4422e3fa2fd66b91a99..1863c8b2750fe878abac75704a94c5a5bcfb13f1 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 f0f203273ce860173e5071314f9bf78dd42f0147..6e1a882abb8483b431b1fd329642fefdf98607df 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 = [