eca-1.0.x-dev/modules/render/tests/src/Kernel/EntityViewTest.php

modules/render/tests/src/Kernel/EntityViewTest.php
<?php

namespace Drupal\Tests\eca_render\Kernel;

use Drupal\eca_test_render_basics\Event\BasicRenderEvent;
use Drupal\eca_test_render_basics\RenderBasicsEvents;
use Drupal\node\Entity\Node;
use Drupal\user\Entity\User;

/**
 * Kernel tests regarding ECA render EntityView action.
 *
 * @group eca
 * @group eca_render
 */
class EntityViewTest extends RenderActionsTestBase {

  /**
   * Tests the action plugin "eca_render_entity_view".
   */
  public function testEntityView(): void {
    /** @var \Drupal\eca_render\Plugin\Action\EntityView $action */
    $action = $this->actionManager->createInstance('eca_render_entity_view', [
      'view_mode' => 'default',
      'object' => 'node',
      'name' => '',
      'token_name' => '',
      'weight' => '100',
      'mode' => 'append',
    ]);

    $build = [];
    $this->eventDispatcher->addListener(RenderBasicsEvents::BASIC, function (BasicRenderEvent $event) use (&$action, &$build) {
      $action->setEvent($event);
      $node = $this->tokenService->getTokenData('node');
      if ($action->access($node)) {
        $action->execute($node);
      }
      $build = $event->getRenderArray();
    });

    $this->tokenService->addTokenData('node', Node::create([
      'title' => $this->randomMachineName(),
      'body' => $this->randomMachineName(),
      'type' => 'article',
      'status' => TRUE,
    ]));
    $this->dispatchBasicRenderEvent([]);

    $this->assertFalse(isset($build[0]), "User has no access to view the node.");

    /** @var \Drupal\Core\Session\AccountSwitcherInterface $account_switcher */
    $account_switcher = \Drupal::service('account_switcher');
    $account_switcher->switchTo(User::load(1));

    $this->dispatchBasicRenderEvent([]);
    $this->assertTrue(isset($build[0]), "Admin has access to view the node.");
  }

}

Главная | Обратная связь

drupal hosting | друпал хостинг | it patrol .inc