AnnotationProcessingTest.php
View source
<?php
namespace Drupal\Tests\rules\Unit\Integration\Engine;
use Drupal\Core\Annotation\Translation;
use Drupal\Core\Session\SessionManagerInterface;
use Drupal\Tests\rules\Unit\Integration\RulesIntegrationTestBase;
class AnnotationProcessingTest extends RulesIntegrationTestBase {
protected function setUp() : void {
parent::setUp();
$this->enableModule('user');
$session_manager = $this->prophesize(SessionManagerInterface::class);
$this->container
->set('session_manager', $session_manager->reveal());
}
public function testTranslationSquelching() {
$plugin = $this->conditionManager
->createInstance('rules_list_contains');
$context = $plugin->getContext('list');
$definition = $context->getContextDefinition();
$label = $definition->getLabel();
$description = $definition->getDescription();
$this->assertNotInstanceOf(Translation::class, $label, 'Label is not a Translation object');
$this->assertNotInstanceOf(Translation::class, $description, 'Description is not a Translation object');
$definition = $context->getContextDefinition();
$values = $definition->toArray();
$label = $values['label'];
$description = $values['description'];
$this->assertNotInstanceOf(Translation::class, $label, "\$values['label'] is not a Translation object");
$this->assertNotInstanceOf(Translation::class, $description, "\$values['description'] is not a Translation object");
}
public function testCheckConfiguration($plugin_type, $plugin_id, $context_name, $expected) {
$plugin = NULL;
switch ($plugin_type) {
case 'action':
$plugin = $this->actionManager
->createInstance($plugin_id);
break;
case 'condition':
$plugin = $this->conditionManager
->createInstance($plugin_id);
break;
}
$this->assertNotNull($plugin, "{$plugin_type} plugin {$plugin_id} loads");
$context = $plugin->getContext($context_name);
$this->assertNotNull($context, "Plugin {$plugin_id} has context {$context_name}");
$context_def = $context->getContextDefinition();
$type = $context_def->getDataType();
$this->assertSame($type, $expected, "Context type for {$context_name} is {$expected}");
}
public function provideRulesPlugins() {
return [
[
'action',
'rules_user_block',
'user',
'entity:user',
],
[
'condition',
'rules_entity_is_of_bundle',
'entity',
'entity',
],
[
'condition',
'rules_node_is_promoted',
'node',
'entity:node',
],
[
'action',
'rules_list_item_add',
'list',
'list',
],
[
'action',
'rules_list_item_add',
'item',
'any',
],
[
'action',
'rules_list_item_add',
'unique',
'boolean',
],
[
'action',
'rules_list_item_add',
'position',
'string',
],
];
}
}