You are here

public function TemplatePreprocessDefaultVariablesAlterEventTest::testTemplatePreprocessDefaultVariablesAlterEvent in Hook Event Dispatcher 8

TemplatePreprocessDefaultVariablesAlterEvent test.

File

tests/src/Unit/Theme/TemplatePreprocessDefaultVariablesAlterEventTest.php, line 41

Class

TemplatePreprocessDefaultVariablesAlterEventTest
Class TemplatePreprocessDefaultVariablesAlterEventTest.

Namespace

Drupal\Tests\hook_event_dispatcher\Unit\Theme

Code

public function testTemplatePreprocessDefaultVariablesAlterEvent() {
  $newVariable = [
    'test_variable' => TRUE,
  ];
  $this->manager
    ->setEventCallbacks([
    HookEventDispatcherInterface::TEMPLATE_PREPROCESS_DEFAULT_VARIABLES_ALTER => function (TemplatePreprocessDefaultVariablesAlterEvent $event) use ($newVariable) {
      $variables =& $event
        ->getVariables();
      $variables += $newVariable;
    },
  ]);
  $variables = [
    'attributes' => [],
    'title_attributes' => [],
    'content_attributes' => [],
    'title_prefix' => [],
    'title_suffix' => [],
    'db_is_active' => !defined('MAINTENANCE_MODE'),
    'is_admin' => FALSE,
    'logged_in' => FALSE,
  ];
  $expectedVariables = $variables + $newVariable;
  hook_event_dispatcher_template_preprocess_default_variables_alter($variables);

  /** @var \Drupal\hook_event_dispatcher\Event\Theme\TemplatePreprocessDefaultVariablesAlterEvent $event */
  $event = $this->manager
    ->getRegisteredEvent(HookEventDispatcherInterface::TEMPLATE_PREPROCESS_DEFAULT_VARIABLES_ALTER);
  self::assertSame($expectedVariables, $event
    ->getVariables());
}