class AnnotationProcessingTest in Rules 8.3
Tests processing of the ContextDefinition annotation.
@group Rules
Hierarchy
- class \Drupal\Tests\UnitTestCase extends \PHPUnit\Framework\TestCase uses PhpunitCompatibilityTrait
- class \Drupal\Tests\rules\Unit\Integration\RulesIntegrationTestBase
- class \Drupal\Tests\rules\Unit\Integration\Engine\AnnotationProcessingTest
- class \Drupal\Tests\rules\Unit\Integration\RulesIntegrationTestBase
Expanded class hierarchy of AnnotationProcessingTest
File
- tests/
src/ Unit/ Integration/ Engine/ AnnotationProcessingTest.php, line 14
Namespace
Drupal\Tests\rules\Unit\Integration\EngineView source
class AnnotationProcessingTest extends RulesIntegrationTestBase {
/**
* {@inheritdoc}
*/
protected function setUp() : void {
parent::setUp();
$this
->enableModule('user');
// Some of our plugins assume sessions exist:
$session_manager = $this
->prophesize(SessionManagerInterface::class);
$this->container
->set('session_manager', $session_manager
->reveal());
}
/**
* Make sure @ Translation annotations do not leak out into the wild.
*/
public function testTranslationSquelching() {
// Get a sample Rules plugin.
$plugin = $this->conditionManager
->createInstance('rules_list_contains');
$context = $plugin
->getContext('list');
$definition = $context
->getContextDefinition();
// These can reasonable be string or TranslatableMarkup, but never
// a Translation object.
$label = $definition
->getLabel();
$description = $definition
->getDescription();
$this
->assertFalse($label instanceof Translation, 'Label is not a Translation object');
$this
->assertFalse($description instanceof Translation, 'Description is not a Translation object');
// Check also the toArray() path.
$definition = $context
->getContextDefinition();
$values = $definition
->toArray();
$label = $values['label'];
$description = $values['description'];
$this
->assertFalse($label instanceof Translation, "\$values['label'] is not a Translation object");
$this
->assertFalse($description instanceof Translation, "\$values['description'] is not a Translation object");
}
/**
* Tests if our ContextDefinition annotations are correctly processed.
*
* @param string $plugin_type
* Type of rules plugin to test (for now, 'action' or 'condition').
* @param string $plugin_id
* Plugin ID for the plugin to be tested.
* @param string $context_name
* The name of the plugin's context to test.
* @param string $expected
* The type of context as defined in the plugin's annotation.
*
* @dataProvider provideRulesPlugins
*/
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}");
}
/**
* Provider for plugins to test.
*
* Passes $plugin_type, $plugin_id, $context_name, and $expected.
*
* @return array
* Array of array of values to be passed to our test.
*/
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',
],
];
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
AnnotationProcessingTest:: |
public | function | Provider for plugins to test. | |
AnnotationProcessingTest:: |
protected | function |
Overrides RulesIntegrationTestBase:: |
|
AnnotationProcessingTest:: |
public | function | Tests if our ContextDefinition annotations are correctly processed. | |
AnnotationProcessingTest:: |
public | function | Make sure @ Translation annotations do not leak out into the wild. | |
PhpunitCompatibilityTrait:: |
public | function | Returns a mock object for the specified class using the available method. | |
PhpunitCompatibilityTrait:: |
public | function | Compatibility layer for PHPUnit 6 to support PHPUnit 4 code. | |
RulesIntegrationTestBase:: |
protected | property | ||
RulesIntegrationTestBase:: |
protected | property | ||
RulesIntegrationTestBase:: |
protected | property | The class resolver mock for the typed data manager. | |
RulesIntegrationTestBase:: |
protected | property | ||
RulesIntegrationTestBase:: |
protected | property | The Drupal service container. | |
RulesIntegrationTestBase:: |
protected | property | The data fetcher service. | |
RulesIntegrationTestBase:: |
protected | property | The data filter manager. | |
RulesIntegrationTestBase:: |
protected | property | Array object keyed with module names and TRUE as value. | |
RulesIntegrationTestBase:: |
protected | property | ||
RulesIntegrationTestBase:: |
protected | property | ||
RulesIntegrationTestBase:: |
protected | property | ||
RulesIntegrationTestBase:: |
protected | property | A mocked Rules logger.channel.rules_debug service. | 6 |
RulesIntegrationTestBase:: |
protected | property | The messenger service. | |
RulesIntegrationTestBase:: |
protected | property | ||
RulesIntegrationTestBase:: |
protected | property | All setup'ed namespaces. | |
RulesIntegrationTestBase:: |
protected | property | The placeholder resolver service. | |
RulesIntegrationTestBase:: |
protected | property | ||
RulesIntegrationTestBase:: |
protected | property | ||
RulesIntegrationTestBase:: |
protected | property | ||
RulesIntegrationTestBase:: |
protected | function | Determines the path to a module's class files. | |
RulesIntegrationTestBase:: |
protected | function | Fakes the enabling of a module and adds its namespace for plugin loading. | |
RulesIntegrationTestBase:: |
protected | function | Returns a typed data object. | |
RulesIntegrationTestBase:: |
protected | function | Helper method to mock irrelevant cache methods on entities. | |
UnitTestCase:: |
protected | property | The random generator. | |
UnitTestCase:: |
protected | property | The app root. | 1 |
UnitTestCase:: |
protected | function | Asserts if two arrays are equal by sorting them first. | |
UnitTestCase:: |
protected | function | Mocks a block with a block plugin. | 1 |
UnitTestCase:: |
protected | function | Returns a stub class resolver. | |
UnitTestCase:: |
public | function | Returns a stub config factory that behaves according to the passed array. | |
UnitTestCase:: |
public | function | Returns a stub config storage that returns the supplied configuration. | |
UnitTestCase:: |
protected | function | Sets up a container with a cache tags invalidator. | |
UnitTestCase:: |
protected | function | Gets the random generator for the utility methods. | |
UnitTestCase:: |
public | function | Returns a stub translation manager that just returns the passed string. | |
UnitTestCase:: |
public | function | Generates a unique random string containing letters and numbers. |