class RequiredModuleUninstallValidatorTest
Same name in other branches
- 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
- 10 core/tests/Drupal/Tests/Core/Extension/RequiredModuleUninstallValidatorTest.php \Drupal\Tests\Core\Extension\RequiredModuleUninstallValidatorTest
@coversDefaultClass \Drupal\Core\Extension\RequiredModuleUninstallValidator @group Extension
Hierarchy
- class \Drupal\Tests\UnitTestCase extends \PHPUnit\Framework\TestCase uses \Drupal\Tests\PhpUnitCompatibilityTrait, \Prophecy\PhpUnit\ProphecyTrait, \Drupal\TestTools\Extension\DeprecationBridge\ExpectDeprecationTrait, \Drupal\Tests\RandomGeneratorTrait
- 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 13
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());
}
/**
* @covers ::validate
*/
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);
}
/**
* @covers ::validate
*/
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);
}
/**
* @covers ::validate
*/
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 | Modifiers | Object type | Summary | Overriden Title |
---|---|---|---|---|
ExpectDeprecationTrait::expectDeprecation | public | function | Adds an expected deprecation. | |
ExpectDeprecationTrait::getCallableName | private static | function | Returns a callable as a string suitable for inclusion in a message. | |
ExpectDeprecationTrait::setUpErrorHandler | public | function | Sets up the test error handler. | |
ExpectDeprecationTrait::tearDownErrorHandler | public | function | Tears down the test error handler. | |
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 | @covers ::validate | |
RequiredModuleUninstallValidatorTest::testValidateNotRequired | public | function | @covers ::validate | |
RequiredModuleUninstallValidatorTest::testValidateRequired | public | function | @covers ::validate | |
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::getConfigStorageStub | public | function | Returns a stub config storage that returns the supplied configuration. | |
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::setUpBeforeClass | public static | function |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.