You are here

class LayoutTempstoreParamConverterTest in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/layout_builder/tests/src/Unit/LayoutTempstoreParamConverterTest.php \Drupal\Tests\layout_builder\Unit\LayoutTempstoreParamConverterTest

@coversDefaultClass \Drupal\layout_builder\Routing\LayoutTempstoreParamConverter

@group layout_builder

Hierarchy

Expanded class hierarchy of LayoutTempstoreParamConverterTest

File

core/modules/layout_builder/tests/src/Unit/LayoutTempstoreParamConverterTest.php, line 16

Namespace

Drupal\Tests\layout_builder\Unit
View source
class LayoutTempstoreParamConverterTest extends UnitTestCase {

  /**
   * @covers ::convert
   */
  public function testConvert() {
    $layout_tempstore_repository = $this
      ->prophesize(LayoutTempstoreRepositoryInterface::class);
    $section_storage_manager = $this
      ->prophesize(SectionStorageManagerInterface::class);
    $converter = new LayoutTempstoreParamConverter($layout_tempstore_repository
      ->reveal(), $section_storage_manager
      ->reveal());
    $section_storage = $this
      ->prophesize(SectionStorageInterface::class);
    $value = 'some_value';
    $definition = [
      'layout_builder_tempstore' => TRUE,
    ];
    $name = 'the_parameter_name';
    $defaults = [
      'section_storage_type' => 'my_type',
    ];
    $expected = 'the_return_value';
    $section_storage_manager
      ->hasDefinition('my_type')
      ->willReturn(TRUE);
    $section_storage_manager
      ->loadEmpty('my_type')
      ->willReturn($section_storage
      ->reveal());
    $section_storage
      ->deriveContextsFromRoute($value, $definition, $name, $defaults)
      ->willReturn([]);
    $section_storage_manager
      ->load('my_type', [])
      ->willReturn($section_storage
      ->reveal());
    $layout_tempstore_repository
      ->get($section_storage
      ->reveal())
      ->willReturn($expected);
    $result = $converter
      ->convert($value, $definition, $name, $defaults);
    $this
      ->assertEquals($expected, $result);
  }

  /**
   * @covers ::convert
   */
  public function testConvertNoType() {
    $layout_tempstore_repository = $this
      ->prophesize(LayoutTempstoreRepositoryInterface::class);
    $section_storage_manager = $this
      ->prophesize(SectionStorageManagerInterface::class);
    $converter = new LayoutTempstoreParamConverter($layout_tempstore_repository
      ->reveal(), $section_storage_manager
      ->reveal());
    $value = 'some_value';
    $definition = [
      'layout_builder_tempstore' => TRUE,
    ];
    $name = 'the_parameter_name';
    $defaults = [
      'section_storage_type' => NULL,
    ];
    $section_storage_manager
      ->hasDefinition()
      ->shouldNotBeCalled();
    $section_storage_manager
      ->loadFromRoute()
      ->shouldNotBeCalled();
    $section_storage_manager
      ->load()
      ->shouldNotBeCalled();
    $layout_tempstore_repository
      ->get()
      ->shouldNotBeCalled();
    $result = $converter
      ->convert($value, $definition, $name, $defaults);
    $this
      ->assertNull($result);
  }

  /**
   * @covers ::convert
   */
  public function testConvertInvalidConverter() {
    $layout_tempstore_repository = $this
      ->prophesize(LayoutTempstoreRepositoryInterface::class);
    $section_storage_manager = $this
      ->prophesize(SectionStorageManagerInterface::class);
    $converter = new LayoutTempstoreParamConverter($layout_tempstore_repository
      ->reveal(), $section_storage_manager
      ->reveal());
    $value = 'some_value';
    $definition = [
      'layout_builder_tempstore' => TRUE,
    ];
    $name = 'the_parameter_name';
    $defaults = [
      'section_storage_type' => 'invalid',
    ];
    $section_storage_manager
      ->hasDefinition('invalid')
      ->willReturn(FALSE);
    $section_storage_manager
      ->loadFromRoute()
      ->shouldNotBeCalled();
    $section_storage_manager
      ->load()
      ->shouldNotBeCalled();
    $layout_tempstore_repository
      ->get()
      ->shouldNotBeCalled();
    $result = $converter
      ->convert($value, $definition, $name, $defaults);
    $this
      ->assertNull($result);
  }

}

Members

Namesort descending Modifiers Type Description Overrides
LayoutTempstoreParamConverterTest::testConvert public function @covers ::convert
LayoutTempstoreParamConverterTest::testConvertInvalidConverter public function @covers ::convert
LayoutTempstoreParamConverterTest::testConvertNoType public function @covers ::convert
PhpunitCompatibilityTrait::getMock Deprecated public function Returns a mock object for the specified class using the available method.
PhpunitCompatibilityTrait::setExpectedException Deprecated public function Compatibility layer for PHPUnit 6 to support PHPUnit 4 code.
UnitTestCase::$randomGenerator protected property The random generator.
UnitTestCase::$root protected property The app root. 1
UnitTestCase::assertArrayEquals protected function Asserts if two arrays are equal by sorting them first.
UnitTestCase::getBlockMockWithMachineName Deprecated protected function Mocks a block with a block plugin. 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::getRandomGenerator protected function Gets the random generator for the utility methods.
UnitTestCase::getStringTranslationStub public function Returns a stub translation manager that just returns the passed string.
UnitTestCase::randomMachineName public function Generates a unique random string containing letters and numbers.
UnitTestCase::setUp protected function 340