class DesignTokenTest

Same name in this branch
  1. 11.x core/modules/jsonapi/tests/src/Functional/DesignTokenTest.php \Drupal\Tests\jsonapi\Functional\DesignTokenTest

Tests design token object.

Attributes

#[CoversClass(DesignToken::class)] #[Group('design_token')]

Hierarchy

Expanded class hierarchy of DesignTokenTest

File

core/tests/Drupal/Tests/Core/Theme/DesignToken/DesignTokenTest.php, line 21

Namespace

Drupal\Tests\Core\Theme\DesignToken
View source
class DesignTokenTest extends UnitTestCase {
  
  /**
   * Tests getType.
   */
  public function testGetType(?string $type, ?DesignTokenGroup $parent, ?string $expectedType) : void {
    $value = new Number([
      'value' => 5,
    ], 'number', []);
    $token = new DesignToken(provider: 'test', name: 'test', value: $value, parent: $parent, type: $type);
    $this->assertEquals($expectedType, $token->getType());
  }
  
  /**
   * Data provider for ::testGetType().
   *
   * @return \Generator
   *   The test cases.
   */
  public static function providerGetType() : iterable {
    // This case is not supposed to happen on real usage.
    yield 'No type' => [
      NULL,
      NULL,
      NULL,
    ];
    yield 'With type' => [
      'myType',
      NULL,
      'myType',
    ];
    yield 'From parent' => [
      NULL,
      new DesignTokenGroup('test', 'test2', type: 'parentType'),
      'parentType',
    ];
    yield 'With type and parent' => [
      'myType',
      new DesignTokenGroup('test', 'test2', type: 'parentType'),
      'myType',
    ];
  }
  
  /**
   * Tests getPath.
   */
  public function testGetPath(string $name, ?DesignTokenGroup $parent, ?string $expectedType) : void {
    $value = new Number([
      'value' => 5,
    ], 'number', []);
    $token = new DesignToken(provider: 'test', name: $name, value: $value, parent: $parent);
    $this->assertEquals($expectedType, $token->getPath());
  }
  
  /**
   * Data provider for ::testGetPath().
   *
   * @return \Generator
   *   The test cases.
   */
  public static function providerGetPath() : iterable {
    yield 'Root' => [
      'myPath',
      NULL,
      'myPath',
    ];
    yield 'With parent' => [
      'myPath',
      new DesignTokenGroup('test', 'parentName'),
      'parentName.myPath',
    ];
    yield 'With parent with parent' => [
      'myPath',
      new DesignTokenGroup('test', 'parentName', parent: new DesignTokenGroup('test', 'parentName2')),
      'parentName2.parentName.myPath',
    ];
  }
  
  /**
   * Tests toDtcg.
   */
  public function testToDtcg(?string $type, DesignTokenValueInterface $value, ?string $description, array $expected) : void {
    $container = new ContainerBuilder();
    $container->set('string_translation', $this->getStringTranslationStub());
    \Drupal::setContainer($container);
    // phpcs:ignore Drupal.Semantics.FunctionT.NotLiteralString
    $description = $description ? new TranslatableMarkup($description) : NULL;
    $token = new DesignToken(provider: 'test', name: 'test', value: $value, description: $description, type: $type);
    $this->assertEquals($expected, $token->toDtcg());
  }
  
  /**
   * Data provider for ::testToDtcg().
   *
   * @return \Generator
   *   The test cases.
   */
  public static function providerToDtcg() : iterable {
    $value = new Number([
      'value' => 5,
    ], 'number', []);
    yield 'With type' => [
      'myType',
      $value,
      NULL,
      [
        '$value' => 5,
        '$type' => 'myType',
      ],
    ];
    yield 'With description' => [
      NULL,
      $value,
      'my description',
      [
        '$type' => NULL,
        '$value' => 5,
        '$description' => 'my description',
      ],
    ];
  }

}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.