class BlockTest in Drupal 10
Same name in this branch
- 10 core/modules/jsonapi/tests/src/Functional/BlockTest.php \Drupal\Tests\jsonapi\Functional\BlockTest
- 10 core/modules/block/tests/src/Functional/BlockTest.php \Drupal\Tests\block\Functional\BlockTest
- 10 core/modules/views/tests/src/Unit/Plugin/views/display/BlockTest.php \Drupal\Tests\views\Unit\Plugin\views\display\BlockTest
- 10 core/modules/block/tests/src/Kernel/Plugin/migrate/source/BlockTest.php \Drupal\Tests\block\Kernel\Plugin\migrate\source\BlockTest
Same name and namespace in other branches
- 8 core/modules/views/tests/src/Unit/Plugin/views/display/BlockTest.php \Drupal\Tests\views\Unit\Plugin\views\display\BlockTest
- 9 core/modules/views/tests/src/Unit/Plugin/views/display/BlockTest.php \Drupal\Tests\views\Unit\Plugin\views\display\BlockTest
@coversDefaultClass \Drupal\views\Plugin\views\display\Block @group block
Hierarchy
- class \Drupal\Tests\UnitTestCase extends \PHPUnit\Framework\TestCase uses \Drupal\Tests\PhpUnitCompatibilityTrait, \Symfony\Bridge\PhpUnit\ExpectDeprecationTrait, PhpUnitWarnings- class \Drupal\Tests\views\Unit\Plugin\views\display\BlockTest
 
Expanded class hierarchy of BlockTest
File
- core/modules/ views/ tests/ src/ Unit/ Plugin/ views/ display/ BlockTest.php, line 11 
Namespace
Drupal\Tests\views\Unit\Plugin\views\displayView source
class BlockTest extends UnitTestCase {
  /**
   * The view executable.
   *
   * @var \Drupal\views\ViewExecutable|\PHPUnit\Framework\MockObject\MockObject
   */
  protected $executable;
  /**
   * The views block plugin.
   *
   * @var \Drupal\views\Plugin\Block\ViewsBlock|\PHPUnit\Framework\MockObject\MockObject
   */
  protected $blockPlugin;
  /**
   * The tested block display plugin.
   *
   * @var \Drupal\views\Plugin\views\display\Block|\PHPUnit\Framework\MockObject\MockObject
   */
  protected $blockDisplay;
  /**
   * {@inheritdoc}
   */
  protected function setUp() : void {
    parent::setUp();
    $this->executable = $this
      ->getMockBuilder('Drupal\\views\\ViewExecutable')
      ->disableOriginalConstructor()
      ->onlyMethods([
      'executeDisplay',
      'setDisplay',
      'setItemsPerPage',
    ])
      ->getMock();
    $this->executable
      ->expects($this
      ->any())
      ->method('setDisplay')
      ->with('block_1')
      ->will($this
      ->returnValue(TRUE));
    $this->blockDisplay = $this->executable->display_handler = $this
      ->getMockBuilder('Drupal\\views\\Plugin\\views\\display\\Block')
      ->disableOriginalConstructor()
      ->onlyMethods([])
      ->getMock();
    $this->blockDisplay->view = $this->executable;
    $this->blockPlugin = $this
      ->getMockBuilder('Drupal\\views\\Plugin\\Block\\ViewsBlock')
      ->disableOriginalConstructor()
      ->getMock();
  }
  /**
   * Tests the build method with no overriding.
   */
  public function testBuildNoOverride() {
    $this->executable
      ->expects($this
      ->never())
      ->method('setItemsPerPage');
    $this->blockPlugin
      ->expects($this
      ->once())
      ->method('getConfiguration')
      ->will($this
      ->returnValue([
      'items_per_page' => 'none',
    ]));
    $this->blockDisplay
      ->preBlockBuild($this->blockPlugin);
  }
  /**
   * Tests the build method with overriding items per page.
   */
  public function testBuildOverride() {
    $this->executable
      ->expects($this
      ->once())
      ->method('setItemsPerPage')
      ->with(5);
    $this->blockPlugin
      ->expects($this
      ->once())
      ->method('getConfiguration')
      ->will($this
      ->returnValue([
      'items_per_page' => 5,
    ]));
    $this->blockDisplay
      ->preBlockBuild($this->blockPlugin);
  }
}Members
| Name   | Modifiers | Type | Description | Overrides | 
|---|---|---|---|---|
| BlockTest:: | protected | property | The tested block display plugin. | |
| BlockTest:: | protected | property | The views block plugin. | |
| BlockTest:: | protected | property | The view executable. | |
| BlockTest:: | protected | function | Overrides UnitTestCase:: | |
| BlockTest:: | public | function | Tests the build method with no overriding. | |
| BlockTest:: | public | function | Tests the build method with overriding items per page. | |
| PhpUnitWarnings:: | private static | property | Deprecation warnings from PHPUnit to raise with @trigger_error(). | |
| PhpUnitWarnings:: | public | function | Converts PHPUnit deprecation warnings to E_USER_DEPRECATED. | |
| UnitTestCase:: | protected | property | The random generator. | |
| UnitTestCase:: | protected | property | The app root. | 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. | |
| UnitTestCase:: | public static | function | 
