class PluginTest

Same name in this branch
  1. main core/tests/Drupal/Tests/Component/Plugin/Attribute/PluginTest.php \Drupal\Tests\Component\Plugin\Attribute\PluginTest
Same name and namespace in other branches
  1. 11.x core/tests/Drupal/Tests/Component/Annotation/PluginTest.php \Drupal\Tests\Component\Annotation\PluginTest
  2. 11.x core/tests/Drupal/Tests/Component/Plugin/Attribute/PluginTest.php \Drupal\Tests\Component\Plugin\Attribute\PluginTest
  3. 10 core/tests/Drupal/Tests/Component/Annotation/PluginTest.php \Drupal\Tests\Component\Annotation\PluginTest
  4. 10 core/tests/Drupal/Tests/Component/Plugin/Attribute/PluginTest.php \Drupal\Tests\Component\Plugin\Attribute\PluginTest
  5. 9 core/tests/Drupal/Tests/Component/Annotation/PluginTest.php \Drupal\Tests\Component\Annotation\PluginTest
  6. 8.9.x core/tests/Drupal/Tests/Component/Annotation/PluginTest.php \Drupal\Tests\Component\Annotation\PluginTest

Tests Drupal\Component\Annotation\Plugin.

Attributes

#[CoversClass(Plugin::class)] #[Group('Annotation')]

Hierarchy

  • class \Drupal\Tests\Component\Annotation\PluginTest extends \PHPUnit\Framework\TestCase

Expanded class hierarchy of PluginTest

File

core/tests/Drupal/Tests/Component/Annotation/PluginTest.php, line 15

Namespace

Drupal\Tests\Component\Annotation
View source
class PluginTest extends TestCase {
  
  /**
   * @legacy-covers ::__construct
   * @legacy-covers ::parse
   * @legacy-covers ::get
   */
  public function testGet() : void {
    // Assert all values are accepted through constructor and default value is
    // used for non existent but defined property.
    $plugin = new PluginStub([
      1 => 'oak',
      'foo' => 'bar',
      'biz' => [
        'baz' => 'boom',
      ],
      'nestedAnnotation' => new Plugin([
        'foo' => 'bar',
      ]),
    ]);
    $this->assertEquals([
      // This property wasn't in our definition but is defined as a property on
      // our plugin class.
'defaultProperty' => 'test_value',
      1 => 'oak',
      'foo' => 'bar',
      'biz' => [
        'baz' => 'boom',
      ],
      'nestedAnnotation' => [
        'foo' => 'bar',
      ],
    ], $plugin->get());
    // Without default properties, we get a completely empty plugin definition.
    $plugin = new Plugin([]);
    $this->assertEquals([], $plugin->get());
  }
  
  /**
   * Tests get provider.
   */
  public function testGetProvider() : void {
    $plugin = new Plugin([
      'provider' => 'example',
    ]);
    $this->assertEquals('example', $plugin->getProvider());
  }
  
  /**
   * Tests set provider.
   */
  public function testSetProvider() : void {
    $plugin = new Plugin([]);
    $plugin->setProvider('example');
    $this->assertEquals('example', $plugin->getProvider());
  }
  
  /**
   * Tests get id.
   */
  public function testGetId() : void {
    $plugin = new Plugin([
      'id' => 'example',
    ]);
    $this->assertEquals('example', $plugin->getId());
  }
  
  /**
   * Tests get class.
   */
  public function testGetClass() : void {
    $plugin = new Plugin([
      'class' => 'example',
    ]);
    $this->assertEquals('example', $plugin->getClass());
  }
  
  /**
   * Tests set class.
   */
  public function testSetClass() : void {
    $plugin = new Plugin([]);
    $plugin->setClass('example');
    $this->assertEquals('example', $plugin->getClass());
  }

}

Members

Title Sort descending Modifiers Object type Summary
PluginTest::testGet public function @legacy-covers ::__construct
@legacy-covers ::parse
@legacy-covers ::get
PluginTest::testGetClass public function Tests get class.
PluginTest::testGetId public function Tests get id.
PluginTest::testGetProvider public function Tests get provider.
PluginTest::testSetClass public function Tests set class.
PluginTest::testSetProvider public function Tests set provider.

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