Skip to content
Snippets Groups Projects

Issue #3260698: Make it simpler to disable validators in tests

Merged Issue #3260698: Make it simpler to disable validators in tests
All threads resolved!
Merged Ted Bowman requested to merge issue/automatic_updates-3260698:3260698-ted-try into 8.x-2.x
All threads resolved!
Files
10
@@ -28,6 +28,21 @@ abstract class PackageManagerKernelTestBase extends KernelTestBase {
@@ -28,6 +28,21 @@ abstract class PackageManagerKernelTestBase extends KernelTestBase {
'package_manager_bypass',
'package_manager_bypass',
];
];
 
/**
 
* The service IDs of any validators to disable.
 
*
 
* @var string[]
 
*/
 
protected $disableValidators = [
 
// Disable the filesystem permissions validator, since we cannot guarantee
 
// that the current code base will be writable in all testing situations.
 
// We test this validator functionally in Automatic Updates' build tests,
 
// since those do give us control over the filesystem permissions.
 
// @see \Drupal\Tests\automatic_updates\Build\CoreUpdateTest::assertReadOnlyFileSystemError()
 
// @see \Drupal\Tests\package_manager\Kernel\WritableFileSystemValidatorTest
 
'package_manager.validator.file_system',
 
];
 
/**
/**
* {@inheritdoc}
* {@inheritdoc}
*/
*/
@@ -41,20 +56,12 @@ abstract class PackageManagerKernelTestBase extends KernelTestBase {
@@ -41,20 +56,12 @@ abstract class PackageManagerKernelTestBase extends KernelTestBase {
*/
*/
public function register(ContainerBuilder $container) {
public function register(ContainerBuilder $container) {
parent::register($container);
parent::register($container);
$this->disableValidators($container);
}
/**
foreach ($this->disableValidators as $service_id) {
* Disables any validators that will interfere with this test.
if ($container->hasDefinition($service_id)) {
*/
$container->getDefinition($service_id)->clearTag('event_subscriber');
protected function disableValidators(ContainerBuilder $container): void {
}
// Disable the filesystem permissions validator, since we cannot guarantee
}
// that the current code base will be writable in all testing situations.
// We test this validator functionally in Automatic Updates' build tests,
// since those do give us control over the filesystem permissions.
// @see \Drupal\Tests\automatic_updates\Build\CoreUpdateTest::assertReadOnlyFileSystemError()
// @see \Drupal\Tests\package_manager\Kernel\WritableFileSystemValidatorTest
$container->removeDefinition('package_manager.validator.file_system');
}
}
/**
/**
Loading