You are here

class EntityOperationsUnitTest in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/views/tests/src/Unit/Plugin/views/field/EntityOperationsUnitTest.php \Drupal\Tests\views\Unit\Plugin\views\field\EntityOperationsUnitTest
  2. 10 core/modules/views/tests/src/Unit/Plugin/views/field/EntityOperationsUnitTest.php \Drupal\Tests\views\Unit\Plugin\views\field\EntityOperationsUnitTest

@coversDefaultClass \Drupal\views\Plugin\views\field\EntityOperations @group Views

Hierarchy

Expanded class hierarchy of EntityOperationsUnitTest

File

core/modules/views/tests/src/Unit/Plugin/views/field/EntityOperationsUnitTest.php, line 15

Namespace

Drupal\Tests\views\Unit\Plugin\views\field
View source
class EntityOperationsUnitTest extends UnitTestCase {

  /**
   * The entity type manager.
   *
   * @var \Drupal\Core\Entity\EntityTypeManagerInterface|\PHPUnit\Framework\MockObject\MockObject
   */
  protected $entityTypeManager;

  /**
   * The entity repository.
   *
   * @var \Drupal\Core\Entity\EntityRepositoryInterface|\PHPUnit\Framework\MockObject\MockObject
   */
  protected $entityRepository;

  /**
   * The language manager.
   *
   * @var \Drupal\Core\Language\LanguageManagerInterface|\PHPUnit\Framework\MockObject\MockObject
   */
  protected $languageManager;

  /**
   * The plugin under test.
   *
   * @var \Drupal\views\Plugin\views\field\EntityOperations
   */
  protected $plugin;

  /**
   * {@inheritdoc}
   *
   * @covers ::__construct
   */
  protected function setUp() {
    $this->entityTypeManager = $this
      ->createMock(EntityTypeManagerInterface::class);
    $this->entityRepository = $this
      ->createMock(EntityRepositoryInterface::class);
    $this->languageManager = $this
      ->createMock('\\Drupal\\Core\\Language\\LanguageManagerInterface');
    $configuration = [];
    $plugin_id = $this
      ->randomMachineName();
    $plugin_definition = [
      'title' => $this
        ->randomMachineName(),
    ];
    $this->plugin = new EntityOperations($configuration, $plugin_id, $plugin_definition, $this->entityTypeManager, $this->languageManager, $this->entityRepository);
    $redirect_service = $this
      ->createMock('Drupal\\Core\\Routing\\RedirectDestinationInterface');
    $redirect_service
      ->expects($this
      ->any())
      ->method('getAsArray')
      ->willReturn([
      'destination' => 'foobar',
    ]);
    $this->plugin
      ->setRedirectDestination($redirect_service);
    $view = $this
      ->getMockBuilder('\\Drupal\\views\\ViewExecutable')
      ->disableOriginalConstructor()
      ->getMock();
    $display = $this
      ->getMockBuilder('\\Drupal\\views\\Plugin\\views\\display\\DisplayPluginBase')
      ->disableOriginalConstructor()
      ->getMockForAbstractClass();
    $view->display_handler = $display;
    $this->plugin
      ->init($view, $display);
  }

  /**
   * @covers ::usesGroupBy
   */
  public function testUsesGroupBy() {
    $this
      ->assertFalse($this->plugin
      ->usesGroupBy());
  }

  /**
   * @covers ::defineOptions
   */
  public function testDefineOptions() {
    $options = $this->plugin
      ->defineOptions();
    $this
      ->assertIsArray($options);
    $this
      ->assertArrayHasKey('destination', $options);
  }

  /**
   * @covers ::render
   */
  public function testRenderWithDestination() {
    $entity_type_id = $this
      ->randomMachineName();
    $entity = $this
      ->getMockBuilder('\\Drupal\\user\\Entity\\Role')
      ->disableOriginalConstructor()
      ->getMock();
    $entity
      ->expects($this
      ->any())
      ->method('getEntityTypeId')
      ->will($this
      ->returnValue($entity_type_id));
    $operations = [
      'foo' => [
        'title' => $this
          ->randomMachineName(),
      ],
    ];
    $list_builder = $this
      ->createMock('\\Drupal\\Core\\Entity\\EntityListBuilderInterface');
    $list_builder
      ->expects($this
      ->once())
      ->method('getOperations')
      ->with($entity)
      ->will($this
      ->returnValue($operations));
    $this->entityTypeManager
      ->expects($this
      ->once())
      ->method('getListBuilder')
      ->with($entity_type_id)
      ->will($this
      ->returnValue($list_builder));
    $this->plugin->options['destination'] = TRUE;
    $result = new ResultRow();
    $result->_entity = $entity;
    $expected_build = [
      '#type' => 'operations',
      '#links' => $operations,
    ];
    $expected_build['#links']['foo']['query'] = [
      'destination' => 'foobar',
    ];
    $build = $this->plugin
      ->render($result);
    $this
      ->assertSame($expected_build, $build);
  }

  /**
   * @covers ::render
   */
  public function testRenderWithoutDestination() {
    $entity_type_id = $this
      ->randomMachineName();
    $entity = $this
      ->getMockBuilder('\\Drupal\\user\\Entity\\Role')
      ->disableOriginalConstructor()
      ->getMock();
    $entity
      ->expects($this
      ->any())
      ->method('getEntityTypeId')
      ->will($this
      ->returnValue($entity_type_id));
    $operations = [
      'foo' => [
        'title' => $this
          ->randomMachineName(),
      ],
    ];
    $list_builder = $this
      ->createMock('\\Drupal\\Core\\Entity\\EntityListBuilderInterface');
    $list_builder
      ->expects($this
      ->once())
      ->method('getOperations')
      ->with($entity)
      ->will($this
      ->returnValue($operations));
    $this->entityTypeManager
      ->expects($this
      ->once())
      ->method('getListBuilder')
      ->with($entity_type_id)
      ->will($this
      ->returnValue($list_builder));
    $this->plugin->options['destination'] = FALSE;
    $result = new ResultRow();
    $result->_entity = $entity;
    $expected_build = [
      '#type' => 'operations',
      '#links' => $operations,
    ];
    $build = $this->plugin
      ->render($result);
    $this
      ->assertSame($expected_build, $build);
  }

}

Members

Namesort descending Modifiers Type Description Overrides
EntityOperationsUnitTest::$entityRepository protected property The entity repository.
EntityOperationsUnitTest::$entityTypeManager protected property The entity type manager.
EntityOperationsUnitTest::$languageManager protected property The language manager.
EntityOperationsUnitTest::$plugin protected property The plugin under test.
EntityOperationsUnitTest::setUp protected function @covers ::__construct Overrides UnitTestCase::setUp
EntityOperationsUnitTest::testDefineOptions public function @covers ::defineOptions
EntityOperationsUnitTest::testRenderWithDestination public function @covers ::render
EntityOperationsUnitTest::testRenderWithoutDestination public function @covers ::render
EntityOperationsUnitTest::testUsesGroupBy public function @covers ::usesGroupBy
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.
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.