class ViewTest in Drupal 10
Same name in this branch
- 10 core/modules/jsonapi/tests/src/Functional/ViewTest.php \Drupal\Tests\jsonapi\Functional\ViewTest
- 10 core/modules/views/tests/src/Unit/Plugin/area/ViewTest.php \Drupal\Tests\views\Unit\Plugin\area\ViewTest
Same name and namespace in other branches
- 8 core/modules/views/tests/src/Unit/Plugin/area/ViewTest.php \Drupal\Tests\views\Unit\Plugin\area\ViewTest
- 9 core/modules/views/tests/src/Unit/Plugin/area/ViewTest.php \Drupal\Tests\views\Unit\Plugin\area\ViewTest
@coversDefaultClass \Drupal\views\Plugin\views\area\View @group views
Hierarchy
- class \Drupal\Tests\UnitTestCase extends \PHPUnit\Framework\TestCase uses \Drupal\Tests\PhpUnitCompatibilityTrait, \Symfony\Bridge\PhpUnit\ExpectDeprecationTrait, PhpUnitWarnings
- class \Drupal\Tests\views\Unit\Plugin\area\ViewTest
Expanded class hierarchy of ViewTest
File
- core/
modules/ views/ tests/ src/ Unit/ Plugin/ area/ ViewTest.php, line 12
Namespace
Drupal\Tests\views\Unit\Plugin\areaView source
class ViewTest extends UnitTestCase {
/**
* The mocked entity storage.
*
* @var \Drupal\Core\Entity\EntityStorageInterface|\PHPUnit\Framework\MockObject\MockObject
*/
protected $entityStorage;
/**
* The view handler.
*
* @var \Drupal\views\Plugin\views\area\View
*/
protected $viewHandler;
/**
* {@inheritdoc}
*/
protected function setUp() : void {
parent::setUp();
$this->entityStorage = $this
->createMock('Drupal\\Core\\Entity\\EntityStorageInterface');
$this->viewHandler = new ViewAreaPlugin([], 'view', [], $this->entityStorage);
$this->viewHandler->view = $this
->getMockBuilder('Drupal\\views\\ViewExecutable')
->disableOriginalConstructor()
->getMock();
}
/**
* @covers ::calculateDependencies
*/
public function testCalculateDependencies() {
/** @var \Drupal\views\Entity\View $view_this */
/** @var \Drupal\views\Entity\View $view_other */
$view_this = $this
->createMock('Drupal\\views\\ViewEntityInterface');
$view_this
->expects($this
->any())
->method('getConfigDependencyKey')
->willReturn('config');
$view_this
->expects($this
->any())
->method('getConfigDependencyName')
->willReturn('view.this');
$view_this
->expects($this
->any())
->method('id')
->willReturn('this');
$view_other = $this
->createMock('Drupal\\views\\ViewEntityInterface');
$view_other
->expects($this
->any())
->method('getConfigDependencyKey')
->willReturn('config');
$view_other
->expects($this
->any())
->method('getConfigDependencyName')
->willReturn('view.other');
$this->entityStorage
->expects($this
->any())
->method('load')
->willReturnMap([
[
'this',
$view_this,
],
[
'other',
$view_other,
],
]);
$this->viewHandler->view->storage = $view_this;
$this->viewHandler->options['view_to_insert'] = 'other:default';
$this
->assertEquals([
'config' => [
'view.other',
],
], $this->viewHandler
->calculateDependencies());
$this->viewHandler->options['view_to_insert'] = 'this:default';
$this
->assertSame([], $this->viewHandler
->calculateDependencies());
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
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 | ||
ViewTest:: |
protected | property | The mocked entity storage. | |
ViewTest:: |
protected | property | The view handler. | |
ViewTest:: |
protected | function |
Overrides UnitTestCase:: |
|
ViewTest:: |
public | function | @covers ::calculateDependencies |