You are here

class RequiredModuleUninstallValidatorTest in Drupal 8

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Core/Extension/RequiredModuleUninstallValidatorTest.php \Drupal\Tests\Core\Extension\RequiredModuleUninstallValidatorTest
  2. 10 core/tests/Drupal/Tests/Core/Extension/RequiredModuleUninstallValidatorTest.php \Drupal\Tests\Core\Extension\RequiredModuleUninstallValidatorTest

@coversDefaultClass \Drupal\Core\Extension\RequiredModuleUninstallValidator @group Extension

Hierarchy

Expanded class hierarchy of RequiredModuleUninstallValidatorTest

File

core/tests/Drupal/Tests/Core/Extension/RequiredModuleUninstallValidatorTest.php, line 12

Namespace

Drupal\Tests\Core\Extension
View source
class RequiredModuleUninstallValidatorTest extends UnitTestCase {
  use AssertHelperTrait;

  /**
   * @var \Drupal\Core\Extension\RequiredModuleUninstallValidator|\PHPUnit\Framework\MockObject\MockObject
   */
  protected $uninstallValidator;

  /**
   * {@inheritdoc}
   */
  protected function setUp() {
    parent::setUp();
    $this->uninstallValidator = $this
      ->getMockBuilder('Drupal\\Core\\Extension\\RequiredModuleUninstallValidator')
      ->disableOriginalConstructor()
      ->setMethods([
      'getModuleInfoByModule',
    ])
      ->getMock();
    $this->uninstallValidator
      ->setStringTranslation($this
      ->getStringTranslationStub());
  }

  /**
   * @covers ::validate
   */
  public function testValidateNoModule() {
    $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() {
    $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() {
    $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
      ->assertSame($expected, $this
      ->castSafeStrings($reasons));
  }

}

Members

Namesort descending Modifiers Type Description Overrides
AssertHelperTrait::castSafeStrings protected static function Casts MarkupInterface objects into strings.
PhpunitCompatibilityTrait::getMock Deprecated public function Returns a mock object for the specified class using the available method.
PhpunitCompatibilityTrait::setExpectedException Deprecated public function Compatibility layer for PHPUnit 6 to support PHPUnit 4 code.
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::$randomGenerator protected property The random generator.
UnitTestCase::$root protected property The app root. 1
UnitTestCase::assertArrayEquals protected function Asserts if two arrays are equal by sorting them first.
UnitTestCase::getBlockMockWithMachineName Deprecated protected function Mocks a block with a block plugin. 1
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::getRandomGenerator protected function Gets the random generator for the utility methods.
UnitTestCase::getStringTranslationStub public function Returns a stub translation manager that just returns the passed string.
UnitTestCase::randomMachineName public function Generates a unique random string containing letters and numbers.