class HandlerBaseTest

Same name and namespace in other branches
  1. 9 core/modules/views/tests/src/Unit/Plugin/HandlerBaseTest.php \Drupal\Tests\views\Unit\Plugin\HandlerBaseTest
  2. 8.9.x core/modules/views/tests/src/Unit/Plugin/HandlerBaseTest.php \Drupal\Tests\views\Unit\Plugin\HandlerBaseTest
  3. 11.x core/modules/views/tests/src/Unit/Plugin/HandlerBaseTest.php \Drupal\Tests\views\Unit\Plugin\HandlerBaseTest

@coversDefaultClass \Drupal\views\Plugin\views\HandlerBase
@group Views

Hierarchy

Expanded class hierarchy of HandlerBaseTest

File

core/modules/views/tests/src/Unit/Plugin/HandlerBaseTest.php, line 14

Namespace

Drupal\Tests\views\Unit\Plugin
View source
class HandlerBaseTest extends UnitTestCase {
  use HandlerTestTrait;
  
  /**
   * {@inheritdoc}
   */
  protected function setUp() : void {
    parent::setUp();
    $this->setupViewsData();
    $this->setupExecutableAndView();
    $this->setupDisplay();
  }
  
  /**
   * @covers ::getEntityType
   */
  public function testGetEntityTypeForFieldOnBaseTable() : void {
    $handler = new TestHandler([], 'test_handler', []);
    $handler->init($this->executable, $this->display);
    $this->view
      ->expects($this->any())
      ->method('get')
      ->with('base_table')
      ->willReturn('test_entity_type_table');
    $this->viewsData
      ->expects($this->any())
      ->method('get')
      ->with('test_entity_type_table')
      ->willReturn([
      'table' => [
        'entity type' => 'test_entity_type',
      ],
    ]);
    $handler->setViewsData($this->viewsData);
    $this->assertEquals('test_entity_type', $handler->getEntityType());
  }
  
  /**
   * @covers ::getEntityType
   */
  public function testGetEntityTypeForFieldWithRelationship() : void {
    $handler = new TestHandler([], 'test_handler', []);
    $options = [
      'relationship' => 'test_relationship',
    ];
    $handler->init($this->executable, $this->display, $options);
    $this->display
      ->expects($this->atLeastOnce())
      ->method('getOption')
      ->with('relationships')
      ->willReturn([
      'test_relationship' => [
        'table' => 'test_entity_type_table',
        'id' => 'test_relationship',
        'field' => 'test_relationship',
      ],
    ]);
    $this->view
      ->expects($this->any())
      ->method('get')
      ->with('base_table')
      ->willReturn('test_entity_type_table');
    $this->viewsData
      ->expects($this->any())
      ->method('get')
      ->willReturnMap([
      [
        'test_entity_type_table',
        [
          'table' => [
            'entity type' => 'test_entity_type',
          ],
          'test_relationship' => [
            'relationship' => [
              'base' => 'test_other_entity_type_table',
              'base field' => 'id',
            ],
          ],
        ],
      ],
      [
        'test_other_entity_type_table',
        [
          'table' => [
            'entity type' => 'test_other_entity_type',
          ],
        ],
      ],
    ]);
    $handler->setViewsData($this->viewsData);
    $this->assertEquals('test_other_entity_type', $handler->getEntityType());
  }

}

Members

Title Sort descending Deprecated Modifiers Object type Summary Overriden Title Overrides
HandlerBaseTest::setUp protected function Overrides UnitTestCase::setUp
HandlerBaseTest::testGetEntityTypeForFieldOnBaseTable public function @covers ::getEntityType[[api-linebreak]]
HandlerBaseTest::testGetEntityTypeForFieldWithRelationship public function @covers ::getEntityType[[api-linebreak]]
HandlerTestTrait::$display protected property The mocked display.
HandlerTestTrait::$executable protected property The mocked view executable.
HandlerTestTrait::$view protected property The mocked view entity.
HandlerTestTrait::$viewsData protected property The mocked views data.
HandlerTestTrait::setupDisplay protected function Sets up a mocked display object.
HandlerTestTrait::setupExecutableAndView protected function Sets up a view executable and a view entity.
HandlerTestTrait::setupViewsData protected function Sets up a mocked views data object.
PhpUnitWarnings::$deprecationWarnings private static property Deprecation warnings from PHPUnit to raise with @trigger_error().
PhpUnitWarnings::addWarning public function Converts PHPUnit deprecation warnings to E_USER_DEPRECATED.
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.
RandomGeneratorTrait::randomStringValidate Deprecated public function Callback for random string validation.
UnitTestCase::$root protected property The app root. 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::getStringTranslationStub public function Returns a stub translation manager that just returns the passed string.
UnitTestCase::setUpBeforeClass public static function
UnitTestCase::__get public function

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.