function PluginInstanceTest::assertPluginInstances

Same name and namespace in other branches
  1. 9 core/modules/views/tests/src/Kernel/PluginInstanceTest.php \Drupal\Tests\views\Kernel\PluginInstanceTest::assertPluginInstances()
  2. 10 core/modules/views/tests/src/Kernel/PluginInstanceTest.php \Drupal\Tests\views\Kernel\PluginInstanceTest::assertPluginInstances()
  3. 11.x core/modules/views/tests/src/Kernel/PluginInstanceTest.php \Drupal\Tests\views\Kernel\PluginInstanceTest::assertPluginInstances()

Asserts that instances of every views plugin can be created.

Parameters

bool $test_deprecated: Indicates if deprecated plugins should be tested or skipped.

2 calls to PluginInstanceTest::assertPluginInstances()
PluginInstanceTest::testDeprecatedPluginInstances in core/modules/views/tests/src/Kernel/PluginInstanceTest.php
Tests creating instances of deprecated views plugin.
PluginInstanceTest::testPluginInstances in core/modules/views/tests/src/Kernel/PluginInstanceTest.php
Tests creating instances of every views plugin.

File

core/modules/views/tests/src/Kernel/PluginInstanceTest.php, line 113

Class

PluginInstanceTest
Tests that an instance of all views plugins can be created.

Namespace

Drupal\Tests\views\Kernel

Code

protected function assertPluginInstances($test_deprecated) {
    foreach ($this->definitions as $type => $plugins) {
        // Get a plugin manager for this type.
        $manager = $this->container
            ->get("plugin.manager.views.{$type}");
        foreach ($plugins as $id => $definition) {
            if ($test_deprecated !== in_array($definition['class'], $this->deprecatedPlugins)) {
                continue;
            }
            // Get a reflection class for this plugin.
            // We only want to test true plugins, i.e. They extend PluginBase.
            $reflection = new \ReflectionClass($definition['class']);
            if ($reflection->isSubclassOf(PluginBase::class)) {
                // Create a plugin instance and check what it is. This is not just
                // good to check they can be created but for throwing any notices for
                // method signatures etc. too.
                $instance = $manager->createInstance($id);
                $this->assertInstanceOf($definition['class'], $instance);
            }
        }
    }
}

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