Skip to content
Snippets Groups Projects
Commit 0f6883ea authored by Conrad Lara's avatar Conrad Lara
Browse files

Issue #3112393: Allow vendor hardening to remove individual files

parent 6227621d
No related branches found
No related tags found
1 merge request!6097Issue #3112393: Allow vendor hardening to remove individual files
...@@ -343,27 +343,27 @@ protected function cleanPathsForPackage(PackageInterface $package, $paths_for_pa ...@@ -343,27 +343,27 @@ protected function cleanPathsForPackage(PackageInterface $package, $paths_for_pa
return; return;
} }
$this->io->writeError(sprintf('%sCleaning directories in <comment>%s</comment>', str_repeat(' ', 4), $package_name), TRUE, IOInterface::VERY_VERBOSE); $this->io->writeError(sprintf('%sCleaning paths in <comment>%s</comment>', str_repeat(' ', 4), $package_name), TRUE, IOInterface::VERY_VERBOSE);
$fs = new Filesystem(); $fs = new Filesystem();
foreach ($paths_for_package as $cleanup_item) { foreach ($paths_for_package as $cleanup_item) {
$cleanup_path = $package_dir . '/' . $cleanup_item; $cleanup_path = $package_dir . '/' . $cleanup_item;
if (!is_dir($cleanup_path)) { if (!is_dir($cleanup_path) && !is_file($cleanup_path)) {
// If the package has changed or the --prefer-dist version does not // If the package has changed or the --prefer-dist version does not
// include the directory. This is not an error. // include the directory. This is not an error.
$this->io->writeError(sprintf("%s<comment>Directory '%s' does not exist.</comment>", str_repeat(' ', 6), $cleanup_path), TRUE, IOInterface::VERY_VERBOSE); $this->io->writeError(sprintf("%s<comment>Path '%s' does not exist.</comment>", str_repeat(' ', 6), $cleanup_path), TRUE, IOInterface::VERY_VERBOSE);
continue; continue;
} }
if (!$fs->removeDirectory($cleanup_path)) { if (!$fs->remove($cleanup_path)) {
// Always display a message if this fails as it means something // Always display a message if this fails as it means something
// has gone wrong. Therefore the message has to include the // has gone wrong. Therefore the message has to include the
// package name as the first informational message might not // package name as the first informational message might not
// exist. // exist.
$this->io->writeError(sprintf("%s<error>Failure removing directory '%s'</error> in package <comment>%s</comment>.", str_repeat(' ', 6), $cleanup_item, $package_name), TRUE, IOInterface::NORMAL); $this->io->writeError(sprintf("%s<error>Failure removing path '%s'</error> in package <comment>%s</comment>.", str_repeat(' ', 6), $cleanup_item, $package_name), TRUE, IOInterface::NORMAL);
continue; continue;
} }
$this->io->writeError(sprintf("%sRemoving directory <info>'%s'</info>", str_repeat(' ', 4), $cleanup_item), TRUE, IOInterface::VERBOSE); $this->io->writeError(sprintf("%sRemoving path <info>'%s'</info>", str_repeat(' ', 4), $cleanup_item), TRUE, IOInterface::VERBOSE);
} }
} }
......
...@@ -35,6 +35,7 @@ protected function setUp(): void { ...@@ -35,6 +35,7 @@ protected function setUp(): void {
'tests' => [ 'tests' => [
'SomeTest.php' => '<?php', 'SomeTest.php' => '<?php',
], ],
'SomeFile.php' => '<?php',
], ],
], ],
]); ]);
...@@ -92,14 +93,16 @@ public function testCleanPathsForPackage() { ...@@ -92,14 +93,16 @@ public function testCleanPathsForPackage() {
$ref_io->setValue($plugin, $io->reveal()); $ref_io->setValue($plugin, $io->reveal());
$this->assertFileExists(vfsStream::url('vendor/drupal/package/tests/SomeTest.php')); $this->assertFileExists(vfsStream::url('vendor/drupal/package/tests/SomeTest.php'));
$this->assertFileExists(vfsStream::url('vendor/drupal/package/SomeFile.php'));
$package = $this->prophesize(PackageInterface::class); $package = $this->prophesize(PackageInterface::class);
$package->getName()->willReturn('drupal/package'); $package->getName()->willReturn('drupal/package');
$ref_clean = new \ReflectionMethod($plugin, 'cleanPathsForPackage'); $ref_clean = new \ReflectionMethod($plugin, 'cleanPathsForPackage');
$ref_clean->invokeArgs($plugin, [$package->reveal(), ['tests']]); $ref_clean->invokeArgs($plugin, [$package->reveal(), ['tests', 'SomeFile.php']]);
$this->assertFileDoesNotExist(vfsStream::url('vendor/drupal/package/tests')); $this->assertFileDoesNotExist(vfsStream::url('vendor/drupal/package/tests'));
$this->assertFileDoesNotExist(vfsStream::url('vendor/drupal/package/SomeFile.php'));
} }
/** /**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment