class RequiredModuleUninstallValidatorTest
Same name and namespace in other branches
- 11.x core/tests/Drupal/Tests/Core/Extension/RequiredModuleUninstallValidatorTest.php \Drupal\Tests\Core\Extension\RequiredModuleUninstallValidatorTest
- 10 core/tests/Drupal/Tests/Core/Extension/RequiredModuleUninstallValidatorTest.php \Drupal\Tests\Core\Extension\RequiredModuleUninstallValidatorTest
- 9 core/tests/Drupal/Tests/Core/Extension/RequiredModuleUninstallValidatorTest.php \Drupal\Tests\Core\Extension\RequiredModuleUninstallValidatorTest
- 8.9.x core/tests/Drupal/Tests/Core/Extension/RequiredModuleUninstallValidatorTest.php \Drupal\Tests\Core\Extension\RequiredModuleUninstallValidatorTest
Tests Drupal\Core\Extension\RequiredModuleUninstallValidator.
Attributes
#[CoversClass(RequiredModuleUninstallValidator::class)]
#[Group('Extension')]
Hierarchy
- class \Drupal\Tests\UnitTestCase uses \Drupal\Tests\DrupalTestCaseTrait, \Drupal\Tests\PhpUnitCompatibilityTrait, \Prophecy\PhpUnit\ProphecyTrait, \Drupal\TestTools\Extension\DeprecationBridge\ExpectDeprecationTrait, \Drupal\Tests\RandomGeneratorTrait extends \PHPUnit\Framework\TestCase
- class \Drupal\Tests\Core\Extension\RequiredModuleUninstallValidatorTest extends \Drupal\Tests\UnitTestCase
Expanded class hierarchy of RequiredModuleUninstallValidatorTest
File
-
core/
tests/ Drupal/ Tests/ Core/ Extension/ RequiredModuleUninstallValidatorTest.php, line 15
Namespace
Drupal\Tests\Core\ExtensionView source
class RequiredModuleUninstallValidatorTest extends UnitTestCase {
/**
* @var \Drupal\Core\Extension\RequiredModuleUninstallValidator|\PHPUnit\Framework\MockObject\MockObject
*/
protected $uninstallValidator;
/**
* {@inheritdoc}
*/
protected function setUp() : void {
parent::setUp();
$this->uninstallValidator = $this->getMockBuilder('Drupal\\Core\\Extension\\RequiredModuleUninstallValidator')
->disableOriginalConstructor()
->onlyMethods([
'getModuleInfoByModule',
])
->getMock();
$this->uninstallValidator
->setStringTranslation($this->getStringTranslationStub());
}
/**
* Tests validate no module.
*/
public function testValidateNoModule() : void {
$this->uninstallValidator
->expects($this->once())
->method('getModuleInfoByModule')
->willReturn([]);
$module = $this->randomMachineName();
$expected = [];
$reasons = $this->uninstallValidator
->validate($module);
$this->assertSame($expected, $reasons);
}
/**
* Tests validate not required.
*/
public function testValidateNotRequired() : void {
$module = $this->randomMachineName();
$this->uninstallValidator
->expects($this->once())
->method('getModuleInfoByModule')
->willReturn([
'required' => FALSE,
'name' => $module,
]);
$expected = [];
$reasons = $this->uninstallValidator
->validate($module);
$this->assertSame($expected, $reasons);
}
/**
* Tests validate required.
*/
public function testValidateRequired() : void {
$module = $this->randomMachineName();
$this->uninstallValidator
->expects($this->once())
->method('getModuleInfoByModule')
->willReturn([
'required' => TRUE,
'name' => $module,
]);
$expected = [
"The {$module} module is required",
];
$reasons = $this->uninstallValidator
->validate($module);
$this->assertEquals($expected, $reasons);
}
}
Members
| Title Sort descending | Deprecated | Modifiers | Object type | Summary | Overriden Title |
|---|---|---|---|---|---|
| DrupalTestCaseTrait::checkErrorHandlerOnTearDown | public | function | Checks the test error handler after test execution. | ||
| ExpectDeprecationTrait::expectDeprecation | Deprecated | public | function | Adds an expected deprecation. | |
| ExpectDeprecationTrait::regularExpressionForFormatDescription | private | function | |||
| RandomGeneratorTrait::getRandomGenerator | protected | function | Gets the random generator for the utility methods. | ||
| RandomGeneratorTrait::randomMachineName | protected | function | Generates a unique random string containing letters and numbers. | ||
| RandomGeneratorTrait::randomObject | public | function | Generates a random PHP object. | ||
| RandomGeneratorTrait::randomString | public | function | Generates a pseudo-random string of ASCII characters of codes 32 to 126. | ||
| RequiredModuleUninstallValidatorTest::$uninstallValidator | protected | property | |||
| RequiredModuleUninstallValidatorTest::setUp | protected | function | Overrides UnitTestCase::setUp | ||
| RequiredModuleUninstallValidatorTest::testValidateNoModule | public | function | Tests validate no module. | ||
| RequiredModuleUninstallValidatorTest::testValidateNotRequired | public | function | Tests validate not required. | ||
| RequiredModuleUninstallValidatorTest::testValidateRequired | public | function | Tests validate required. | ||
| UnitTestCase::$root | protected | property | The app root. | ||
| UnitTestCase::getClassResolverStub | protected | function | Returns a stub class resolver. | ||
| UnitTestCase::getConfigFactoryStub | public | function | Returns a stub config factory that behaves according to the passed array. | ||
| UnitTestCase::getContainerWithCacheTagsInvalidator | protected | function | Sets up a container with a cache tags invalidator. | ||
| UnitTestCase::getStringTranslationStub | public | function | Returns a stub translation manager that just returns the passed string. | ||
| UnitTestCase::setDebugDumpHandler | public static | function | Registers the dumper CLI handler when the DebugDump extension is enabled. | ||
| UnitTestCase::setupMockIterator | protected | function | Set up a traversable class mock to return specific items when iterated. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.