class EntityListBuilderTest in Drupal 8
Same name in this branch
- 8 core/tests/Drupal/Tests/Core/Entity/EntityListBuilderTest.php \Drupal\Tests\Core\Entity\EntityListBuilderTest
- 8 core/modules/system/tests/src/Functional/Entity/EntityListBuilderTest.php \Drupal\Tests\system\Functional\Entity\EntityListBuilderTest
Same name and namespace in other branches
- 9 core/tests/Drupal/Tests/Core/Entity/EntityListBuilderTest.php \Drupal\Tests\Core\Entity\EntityListBuilderTest
- 10 core/tests/Drupal/Tests/Core/Entity/EntityListBuilderTest.php \Drupal\Tests\Core\Entity\EntityListBuilderTest
@coversDefaultClass \Drupal\entity_test\EntityTestListBuilder @group Entity
Hierarchy
- class \Drupal\Tests\UnitTestCase extends \PHPUnit\Framework\TestCase uses PhpunitCompatibilityTrait- class \Drupal\Tests\Core\Entity\EntityListBuilderTest
 
Expanded class hierarchy of EntityListBuilderTest
File
- core/tests/ Drupal/ Tests/ Core/ Entity/ EntityListBuilderTest.php, line 22 
- Contains \Drupal\Tests\Core\Entity\EntityListBuilderTest.
Namespace
Drupal\Tests\Core\EntityView source
class EntityListBuilderTest extends UnitTestCase {
  /**
   * The entity type used for testing.
   *
   * @var \Drupal\Core\Entity\EntityTypeInterface|\PHPUnit\Framework\MockObject\MockObject
   */
  protected $entityType;
  /**
   * The module handler used for testing.
   *
   * @var \Drupal\Core\Extension\ModuleHandlerInterface|\PHPUnit\Framework\MockObject\MockObject
   */
  protected $moduleHandler;
  /**
   * The translation manager used for testing.
   *
   * @var \Drupal\Core\StringTranslation\TranslationInterface
   */
  protected $translationManager;
  /**
   * The role storage used for testing.
   *
   * @var \Drupal\user\RoleStorageInterface|\PHPUnit\Framework\MockObject\MockObject
   */
  protected $roleStorage;
  /**
   * The service container used for testing.
   *
   * @var \Drupal\Core\DependencyInjection\ContainerBuilder
   */
  protected $container;
  /**
   * The entity used to construct the EntityListBuilder.
   *
   * @var \Drupal\user\RoleInterface|\PHPUnit\Framework\MockObject\MockObject
   */
  protected $role;
  /**
   * The redirect destination service.
   *
   * @var \Drupal\Core\Routing\RedirectDestinationInterface|\PHPUnit\Framework\MockObject\MockObject
   */
  protected $redirectDestination;
  /**
   * The EntityListBuilder object to test.
   *
   * @var \Drupal\Core\Entity\EntityListBuilder
   */
  protected $entityListBuilder;
  /**
   * {@inheritdoc}
   */
  protected function setUp() {
    parent::setUp();
    $this->role = $this
      ->createMock('Drupal\\user\\RoleInterface');
    $this->roleStorage = $this
      ->createMock('\\Drupal\\user\\RoleStorageInterface');
    $this->moduleHandler = $this
      ->createMock('\\Drupal\\Core\\Extension\\ModuleHandlerInterface');
    $this->entityType = $this
      ->createMock('\\Drupal\\Core\\Entity\\EntityTypeInterface');
    $this->translationManager = $this
      ->createMock('\\Drupal\\Core\\StringTranslation\\TranslationInterface');
    $this->entityListBuilder = new TestEntityListBuilder($this->entityType, $this->roleStorage);
    $this->redirectDestination = $this
      ->createMock(RedirectDestinationInterface::class);
    $this->container = new ContainerBuilder();
    \Drupal::setContainer($this->container);
  }
  /**
   * @covers ::getOperations
   */
  public function testGetOperations() {
    $operation_name = $this
      ->randomMachineName();
    $operations = [
      $operation_name => [
        'title' => $this
          ->randomMachineName(),
      ],
    ];
    $this->moduleHandler
      ->expects($this
      ->once())
      ->method('invokeAll')
      ->with('entity_operation', [
      $this->role,
    ])
      ->will($this
      ->returnValue($operations));
    $this->moduleHandler
      ->expects($this
      ->once())
      ->method('alter')
      ->with('entity_operation');
    $this->container
      ->set('module_handler', $this->moduleHandler);
    $this->role
      ->expects($this
      ->any())
      ->method('access')
      ->will($this
      ->returnValue(AccessResult::allowed()));
    $this->role
      ->expects($this
      ->any())
      ->method('hasLinkTemplate')
      ->will($this
      ->returnValue(TRUE));
    $url = $this
      ->getMockBuilder('\\Drupal\\Core\\Url')
      ->disableOriginalConstructor()
      ->getMock();
    $url
      ->expects($this
      ->atLeastOnce())
      ->method('mergeOptions')
      ->with([
      'query' => [
        'destination' => '/foo/bar',
      ],
    ]);
    $this->role
      ->expects($this
      ->any())
      ->method('toUrl')
      ->will($this
      ->returnValue($url));
    $this->redirectDestination
      ->expects($this
      ->atLeastOnce())
      ->method('getAsArray')
      ->willReturn([
      'destination' => '/foo/bar',
    ]);
    $list = new EntityListBuilder($this->entityType, $this->roleStorage);
    $list
      ->setStringTranslation($this->translationManager);
    $list
      ->setRedirectDestination($this->redirectDestination);
    $operations = $list
      ->getOperations($this->role);
    $this
      ->assertIsArray($operations);
    $this
      ->assertArrayHasKey('edit', $operations);
    $this
      ->assertIsArray($operations['edit']);
    $this
      ->assertArrayHasKey('title', $operations['edit']);
    $this
      ->assertArrayHasKey('delete', $operations);
    $this
      ->assertIsArray($operations['delete']);
    $this
      ->assertArrayHasKey('title', $operations['delete']);
    $this
      ->assertArrayHasKey($operation_name, $operations);
    $this
      ->assertIsArray($operations[$operation_name]);
    $this
      ->assertArrayHasKey('title', $operations[$operation_name]);
  }
}Members
| Name   | Modifiers | Type | Description | Overrides | 
|---|---|---|---|---|
| EntityListBuilderTest:: | protected | property | The service container used for testing. | |
| EntityListBuilderTest:: | protected | property | The EntityListBuilder object to test. | |
| EntityListBuilderTest:: | protected | property | The entity type used for testing. | |
| EntityListBuilderTest:: | protected | property | The module handler used for testing. | |
| EntityListBuilderTest:: | protected | property | The redirect destination service. | |
| EntityListBuilderTest:: | protected | property | The entity used to construct the EntityListBuilder. | |
| EntityListBuilderTest:: | protected | property | The role storage used for testing. | |
| EntityListBuilderTest:: | protected | property | The translation manager used for testing. | |
| EntityListBuilderTest:: | protected | function | Overrides UnitTestCase:: | |
| EntityListBuilderTest:: | public | function | @covers ::getOperations | |
| PhpunitCompatibilityTrait:: | public | function | Returns a mock object for the specified class using the available method. | |
| PhpunitCompatibilityTrait:: | public | function | Compatibility layer for PHPUnit 6 to support PHPUnit 4 code. | |
| UnitTestCase:: | protected | property | The random generator. | |
| UnitTestCase:: | protected | property | The app root. | 1 | 
| UnitTestCase:: | protected | function | Asserts if two arrays are equal by sorting them first. | |
| UnitTestCase:: | protected | function | Mocks a block with a block plugin. | 1 | 
| UnitTestCase:: | protected | function | Returns a stub class resolver. | |
| UnitTestCase:: | public | function | Returns a stub config factory that behaves according to the passed array. | |
| UnitTestCase:: | public | function | Returns a stub config storage that returns the supplied configuration. | |
| UnitTestCase:: | protected | function | Sets up a container with a cache tags invalidator. | |
| UnitTestCase:: | protected | function | Gets the random generator for the utility methods. | |
| UnitTestCase:: | public | function | Returns a stub translation manager that just returns the passed string. | |
| UnitTestCase:: | public | function | Generates a unique random string containing letters and numbers. | 
