function EntityPresaveTest::testEventMetadata

Tests the event metadata.

File

tests/src/Unit/Integration/Event/EntityPresaveTest.php, line 17

Class

EntityPresaveTest
Checks that the entity presave events are defined.

Namespace

Drupal\Tests\rules\Unit\Integration\Event

Code

public function testEventMetadata() {
    $plugin_definition = $this->eventManager
        ->getDefinition('rules_entity_presave:test');
    $this->assertSame('Before saving a test entity', (string) $plugin_definition['label']);
    $context_definition = $plugin_definition['context_definitions']['test'];
    $this->assertSame('entity:test', $context_definition->getDataType());
    $this->assertSame('Test', $context_definition->getLabel());
    // Also check that there is a context for the original entity.
    $context_definition = $plugin_definition['context_definitions']['test_unchanged'];
    $this->assertSame('entity:test', $context_definition->getDataType());
    $this->assertSame('Unchanged test entity', (string) $context_definition->getLabel());
}