blazy-8.x-2.x-dev/tests/src/Unit/Form/BlazyAdminUnitTest.php
tests/src/Unit/Form/BlazyAdminUnitTest.php
<?php
namespace Drupal\Tests\blazy\Unit\Form;
use Drupal\Tests\UnitTestCase;
use Drupal\Tests\blazy\Traits\BlazyUnitTestTrait;
use Drupal\blazy\Form\BlazyAdmin;
use Symfony\Component\DependencyInjection\ContainerInterface;
/**
* Tests the Blazy admin form.
*
* @coversDefaultClass \Drupal\blazy\Form\BlazyAdmin
* @group blazy
*/
class BlazyAdminUnitTest extends UnitTestCase {
use BlazyUnitTestTrait;
/**
* {@inheritdoc}
*/
protected function setUp(): void {
parent::setUp();
$this->entityDisplayRepository = $this->createMock('\Drupal\Core\Entity\EntityDisplayRepositoryInterface');
$this->typedConfig = $this->createMock('\Drupal\Core\Config\TypedConfigManagerInterface');
$this->blazyManager = $this->createMock('\Drupal\blazy\BlazyManagerInterface');
$this->dateFormatter = $this->createMock('\Drupal\Core\Datetime\DateFormatter');
}
/**
* @covers ::create
* @covers ::__construct
* @covers ::getEntityDisplayRepository
* @covers ::getTypedConfig
* @covers ::blazyManager
*/
public function testBlazyAdminCreate() {
$container = $this->createMock(ContainerInterface::class);
$exception = ContainerInterface::EXCEPTION_ON_INVALID_REFERENCE;
$map = [
['entity_display.repository', $exception, $this->entityDisplayRepository],
['config.typed', $exception, $this->typedConfig],
['date.formatter', $exception, $this->dateFormatter],
['blazy.manager', $exception, $this->blazyManager],
];
$container->expects($this->any())
->method('get')
->willReturnMap($map);
$blazyAdmin = BlazyAdmin::create($container);
$this->assertInstanceOf(BlazyAdmin::class, $blazyAdmin);
$this->assertInstanceOf('\Drupal\Core\Entity\EntityDisplayRepositoryInterface', $blazyAdmin->getEntityDisplayRepository());
$this->assertInstanceOf('\Drupal\Core\Config\TypedConfigManagerInterface', $blazyAdmin->getTypedConfig());
$this->assertInstanceOf('\Drupal\blazy\BlazyManagerInterface', $blazyAdmin->blazyManager());
}
}
