WhoIsOnlineBlockTest.php

Same filename and directory in other branches
  1. 11.x core/modules/user/tests/src/Kernel/WhoIsOnlineBlockTest.php

Namespace

Drupal\Tests\user\Kernel

File

core/modules/user/tests/src/Kernel/WhoIsOnlineBlockTest.php

View source
<?php

declare (strict_types=1);
namespace Drupal\Tests\user\Kernel;

use Drupal\block\Entity\Block;
use Drupal\KernelTests\KernelTestBase;
use Drupal\Tests\user\Traits\UserCreationTrait;
use Drupal\user\Entity\User;

/**
 * Tests the Who's Online Block.
 *
 * @group user
 */
class WhoIsOnlineBlockTest extends KernelTestBase {
  use UserCreationTrait;
  
  /**
   * {@inheritdoc}
   */
  protected static $modules = [
    'system',
    'user',
    'block',
    'views',
  ];
  
  /**
   * The block being tested.
   *
   * @var \Drupal\block\BlockInterface
   */
  protected $block;
  
  /**
   * The block storage.
   *
   * @var \Drupal\Core\Config\Entity\ConfigEntityStorageInterface
   */
  protected $controller;
  
  /**
   * The renderer.
   *
   * @var \Drupal\Core\Render\RendererInterface
   */
  protected $renderer;
  
  /**
   * {@inheritdoc}
   */
  protected function setUp() : void {
    parent::setUp();
    $this->container
      ->get('theme_installer')
      ->install([
      'stark',
    ]);
    $this->installConfig([
      'system',
      'block',
      'views',
      'user',
    ]);
    $this->installEntitySchema('user');
    $this->controller = $this->container
      ->get('entity_type.manager')
      ->getStorage('block');
    // Create a block with only required values.
    $this->block = $this->controller
      ->create([
      'plugin' => 'views_block:who_s_online-who_s_online_block',
      'region' => 'sidebar_first',
      'id' => 'views_block__who_s_online_who_s_online_block',
      'theme' => \Drupal::configFactory()->get('system.theme')
        ->get('default'),
      'label' => "Who's online",
      'visibility' => [],
      'weight' => 0,
    ]);
    $this->block
      ->save();
    $this->container
      ->get('cache.render')
      ->deleteAll();
    $this->renderer = $this->container
      ->get('renderer');
  }
  
  /**
   * Tests the Who's Online block.
   */
  public function testWhoIsOnlineBlock() : void {
    // Generate users.
    $user1 = User::create([
      'name' => 'user1',
      'mail' => '[email protected]',
      'roles' => [
        $this->createRole([
          'access user profiles',
        ]),
      ],
    ]);
    $user1->activate();
    $requestTime = \Drupal::time()->getRequestTime();
    $user1->setLastAccessTime($requestTime);
    $user1->save();
    $user2 = User::create([
      'name' => 'user2',
      'mail' => '[email protected]',
    ]);
    $user2->activate();
    $user2->setLastAccessTime($requestTime + 1);
    $user2->save();
    $user3 = User::create([
      'name' => 'user3',
      'mail' => '[email protected]',
    ]);
    $user3->activate();
    // Insert an inactive user who should not be seen in the block.
    $inactive_time = $requestTime - 60 * 60;
    $user3->setLastAccessTime($inactive_time);
    $user3->save();
    // Test block output.
    \Drupal::currentUser()->setAccount($user1);
    // Test the rendering of a block.
    $entity = Block::load('views_block__who_s_online_who_s_online_block');
    $output = \Drupal::entityTypeManager()->getViewBuilder($entity->getEntityTypeId())
      ->view($entity, 'block');
    $this->setRawContent($this->renderer
      ->renderRoot($output));
    $this->assertRaw('2 users', 'Correct number of online users (2 users).');
    $this->assertText($user1->getAccountName(), 'Active user 1 found in online list.');
    $this->assertText($user2->getAccountName(), 'Active user 2 found in online list.');
    $this->assertNoText($user3->getAccountName(), 'Inactive user not found in online list.');
    // Verify that online users are ordered correctly.
    $raw_content = (string) $this->getRawContent();
    $this->assertGreaterThan(strpos($raw_content, $user2->getAccountName()), strpos($raw_content, $user1->getAccountName()));
  }

}

Classes

Title Deprecated Summary
WhoIsOnlineBlockTest Tests the Who's Online Block.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.