You are here

class VariantCollectionTraitTest in Chaos Tool Suite (ctools) 8.3

Tests the methods of a variant-aware class.

@coversDefaultClass \Drupal\ctools\Plugin\VariantCollectionTrait

@group Ctools

Hierarchy

Expanded class hierarchy of VariantCollectionTraitTest

File

tests/src/Unit/VariantCollectionTraitTest.php, line 20

Namespace

Drupal\Tests\ctools\Unit
View source
class VariantCollectionTraitTest extends UnitTestCase {

  /**
   * @var \Drupal\Component\Plugin\PluginManagerInterface|\PHPUnit_Framework_MockObject_MockObject
   */
  protected $manager;

  /**
   * {@inheritdoc}
   */
  protected function setUp() : void {
    parent::setUp();
    $container = new ContainerBuilder();
    $this->manager = $this
      ->prophesize(PluginManagerInterface::class);
    $container
      ->set('plugin.manager.display_variant', $this->manager
      ->reveal());
    \Drupal::setContainer($container);
  }

  /**
   * @covers ::getVariants
   */
  public function testGetVariantsEmpty() {
    $trait_object = new TestVariantCollectionTrait();
    $this->manager
      ->createInstance()
      ->shouldNotBeCalled();
    $variants = $trait_object
      ->getVariants();
    $this
      ->assertInstanceOf(VariantPluginCollection::class, $variants);
    $this
      ->assertSame(0, count($variants));
  }

  /**
   * @covers ::getVariants
   */
  public function testGetVariants() {
    $trait_object = new TestVariantCollectionTrait();
    $config = [
      'foo' => [
        'id' => 'foo_plugin',
      ],
      'bar' => [
        'id' => 'bar_plugin',
      ],
    ];
    foreach ($config as $value) {
      $plugin = $this
        ->prophesize(VariantInterface::class);
      $this->manager
        ->createInstance($value['id'], $value)
        ->willReturn($plugin
        ->reveal());
    }
    $trait_object
      ->setVariantConfig($config);
    $variants = $trait_object
      ->getVariants();
    $this
      ->assertInstanceOf(VariantPluginCollection::class, $variants);
    $this
      ->assertSame(2, count($variants));
    return $variants;
  }

  /**
   * @covers ::getVariants
   *
   * @depends testGetVariants
   */
  public function testGetVariantsSort(VariantPluginCollection $variants) {
    $this
      ->assertEquals([
      'bar' => 'bar',
      'foo' => 'foo',
    ], $variants
      ->getInstanceIds());
  }

  /**
   * @covers ::addVariant
   */
  public function testAddVariant() {
    $config = [
      'id' => 'foo',
    ];
    $uuid = 'test-uuid';
    $expected_config = $config + [
      'uuid' => $uuid,
    ];
    $uuid_generator = $this
      ->prophesize(UuidInterface::class);
    $uuid_generator
      ->generate()
      ->willReturn($uuid)
      ->shouldBeCalledTimes(1);
    $trait_object = new TestVariantCollectionTrait();
    $trait_object
      ->setUuidGenerator($uuid_generator
      ->reveal());
    $plugin_prophecy = $this
      ->prophesize(VariantInterface::class);
    $plugin_prophecy
      ->getConfiguration()
      ->willReturn($expected_config)
      ->shouldBeCalled();
    $plugin_prophecy
      ->setConfiguration($expected_config)
      ->willReturn($expected_config)
      ->shouldBeCalled();
    $this->manager
      ->createInstance('foo', $expected_config)
      ->willReturn($plugin_prophecy
      ->reveal());
    $resulting_uuid = $trait_object
      ->addVariant($config);
    $this
      ->assertSame($uuid, $resulting_uuid);
    $variants = $trait_object
      ->getVariants();
    $this
      ->assertSame([
      $uuid => $uuid,
    ], $variants
      ->getInstanceIds());
    $this
      ->assertSame([
      $uuid => $expected_config,
    ], $variants
      ->getConfiguration());
    $this
      ->assertSame($plugin_prophecy
      ->reveal(), $variants
      ->get($uuid));
    return [
      $trait_object,
      $uuid,
      $plugin_prophecy
        ->reveal(),
    ];
  }

  /**
   * @covers ::getVariant
   *
   * @depends testAddVariant
   */
  public function testGetVariant($data) {
    list($trait_object, $uuid, $plugin) = $data;
    $this->manager
      ->createInstance()
      ->shouldNotBeCalled();
    $this
      ->assertSame($plugin, $trait_object
      ->getVariant($uuid));
    return [
      $trait_object,
      $uuid,
    ];
  }

  /**
   * @covers ::removeVariant
   *
   * @depends testGetVariant
   */
  public function testRemoveVariant($data) {
    list($trait_object, $uuid) = $data;
    $this
      ->assertSame($trait_object, $trait_object
      ->removeVariant($uuid));
    $this
      ->assertFalse($trait_object
      ->getVariants()
      ->has($uuid));
    return [
      $trait_object,
      $uuid,
    ];
  }

  /**
   * @covers ::getVariant
   *
   * @depends testRemoveVariant
   */
  public function testGetVariantException($data) {
    list($trait_object, $uuid) = $data;

    // Attempt to retrieve a variant that has been removed.
    $this
      ->expectException('\\Drupal\\Component\\Plugin\\Exception\\PluginNotFoundException');
    $this
      ->expectExceptionMessage("Plugin ID 'test-uuid' was not found.");
    $this
      ->assertNull($trait_object
      ->getVariant($uuid));
  }

}

Members

Namesort descending Modifiers Type Description Overrides
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.
VariantCollectionTraitTest::$manager protected property
VariantCollectionTraitTest::setUp protected function Overrides UnitTestCase::setUp
VariantCollectionTraitTest::testAddVariant public function @covers ::addVariant
VariantCollectionTraitTest::testGetVariant public function @covers ::getVariant
VariantCollectionTraitTest::testGetVariantException public function @covers ::getVariant
VariantCollectionTraitTest::testGetVariants public function @covers ::getVariants
VariantCollectionTraitTest::testGetVariantsEmpty public function @covers ::getVariants
VariantCollectionTraitTest::testGetVariantsSort public function @covers ::getVariants
VariantCollectionTraitTest::testRemoveVariant public function @covers ::removeVariant