ServiceContainerCToolsIntegrationTest.php in Service Container 7.2
File
lib/Drupal/service_container/Tests/ServiceContainerCToolsIntegrationTest.php
View source
<?php
namespace Drupal\service_container\Tests;
use Drupal\service_container\DependencyInjection\Container;
class ServiceContainerCToolsIntegrationTest extends ServiceContainerIntegrationTestBase {
protected function setUp() {
parent::setUp('service_container_test_ctools');
$this->container = \Drupal::getContainer();
}
public static function getInfo() {
return array(
'name' => 'ServiceContainerCToolsIntegration',
'description' => 'Tests the \\ServiceContainer class (CTools integration)',
'group' => 'service_container',
);
}
public function testCToolsPluginTypes() {
foreach (ctools_plugin_get_plugin_type_info() as $module_name => $plugins) {
if ($module_name != 'service_container_test_ctools') {
continue;
}
foreach ($plugins as $plugin_type => $plugin_data) {
$services = array();
$services[$module_name . '.' . $plugin_type] = TRUE;
$services[$module_name . '.' . Container::underscore($plugin_type)] = TRUE;
foreach ($services as $service => $value) {
$this
->assertTrue($this->container
->has($service), "Container has plugin manager {$service} for {$module_name} / {$plugin_type}.");
}
}
}
}
public function testCToolsPlugin() {
$service = \Drupal::service('service_container_test_ctools.ServiceContainerTestCtoolsPlugin')
->createInstance('ServiceContainerTestCtoolsPluginTest1');
$this
->assertEqual($service
->beep(), 'beep!');
try {
$service = \Drupal::service('service_container_test_ctools.yolo')
->createInstance('yolo1');
} catch (\Exception $e) {
$this
->pass('Non-existant plugin does not exist in the container.');
}
}
}