You are here

FieldUninstallValidatorTest.php in Zircon Profile 8

Same filename and directory in other branches
  1. 8.0 core/modules/field/tests/src/Unit/FieldUninstallValidatorTest.php

File

core/modules/field/tests/src/Unit/FieldUninstallValidatorTest.php
View source
<?php

/**
 * @file
 * Contains \Drupal\Tests\field\Unit\FieldUninstallValidatorTest.
 */
namespace Drupal\Tests\field\Unit;

use Drupal\simpletest\AssertHelperTrait;
use Drupal\Tests\UnitTestCase;

/**
 * @coversDefaultClass \Drupal\field\FieldUninstallValidator
 * @group field
 */
class FieldUninstallValidatorTest extends UnitTestCase {
  use AssertHelperTrait;

  /**
   * @var \Drupal\field\FieldUninstallValidator|\PHPUnit_Framework_MockObject_MockObject
   */
  protected $fieldUninstallValidator;

  /**
   * {@inheritdoc}
   */
  protected function setUp() {
    parent::setUp();
    $this->fieldUninstallValidator = $this
      ->getMockBuilder('Drupal\\field\\FieldUninstallValidator')
      ->disableOriginalConstructor()
      ->setMethods([
      'getFieldStoragesByModule',
    ])
      ->getMock();
    $this->fieldUninstallValidator
      ->setStringTranslation($this
      ->getStringTranslationStub());
  }

  /**
   * @covers ::validate
   */
  public function testValidateNoStorages() {
    $this->fieldUninstallValidator
      ->expects($this
      ->once())
      ->method('getFieldStoragesByModule')
      ->willReturn([]);
    $module = $this
      ->randomMachineName();
    $expected = [];
    $reasons = $this->fieldUninstallValidator
      ->validate($module);
    $this
      ->assertSame($expected, $this
      ->castSafeStrings($reasons));
  }

  /**
   * @covers ::validate
   */
  public function testValidateDeleted() {
    $field_storage = $this
      ->getMockBuilder('Drupal\\field\\Entity\\FieldStorageConfig')
      ->disableOriginalConstructor()
      ->getMock();
    $field_storage
      ->expects($this
      ->once())
      ->method('isDeleted')
      ->willReturn(TRUE);
    $this->fieldUninstallValidator
      ->expects($this
      ->once())
      ->method('getFieldStoragesByModule')
      ->willReturn([
      $field_storage,
    ]);
    $module = $this
      ->randomMachineName();
    $expected = [
      'Fields pending deletion',
    ];
    $reasons = $this->fieldUninstallValidator
      ->validate($module);
    $this
      ->assertSame($expected, $this
      ->castSafeStrings($reasons));
  }

  /**
   * @covers ::validate
   */
  public function testValidateNoDeleted() {
    $field_storage = $this
      ->getMockBuilder('Drupal\\field\\Entity\\FieldStorageConfig')
      ->disableOriginalConstructor()
      ->getMock();
    $field_storage
      ->expects($this
      ->once())
      ->method('isDeleted')
      ->willReturn(FALSE);
    $this->fieldUninstallValidator
      ->expects($this
      ->once())
      ->method('getFieldStoragesByModule')
      ->willReturn([
      $field_storage,
    ]);
    $module = $this
      ->randomMachineName();
    $expected = [
      'Fields type(s) in use',
    ];
    $reasons = $this->fieldUninstallValidator
      ->validate($module);
    $this
      ->assertSame($expected, $this
      ->castSafeStrings($reasons));
  }

}

Classes

Namesort descending Description
FieldUninstallValidatorTest @coversDefaultClass \Drupal\field\FieldUninstallValidator @group field