You are here

TimezoneResolverTest.php in Drupal 8

Same filename and directory in other branches
  1. 9 core/modules/system/tests/src/Kernel/TimezoneResolverTest.php

File

core/modules/system/tests/src/Kernel/TimezoneResolverTest.php
View source
<?php

namespace Drupal\Tests\system\Kernel;

use Drupal\KernelTests\KernelTestBase;
use Drupal\Tests\user\Traits\UserCreationTrait;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpKernel\Event\GetResponseEvent;
use Symfony\Component\HttpKernel\HttpKernelInterface;
use Symfony\Component\HttpKernel\KernelEvents;

/**
 * @coversDefaultClass \Drupal\system\TimeZoneResolver
 * @group system
 */
class TimezoneResolverTest extends KernelTestBase {
  use UserCreationTrait;

  /**
   * {@inheritdoc}
   */
  public static $modules = [
    'system',
    'user',
  ];

  /**
   * Tests time zone resolution.
   */
  public function testGetTimeZone() {
    $this
      ->installEntitySchema('user');
    $this
      ->installSchema('system', [
      'sequences',
    ]);
    $this
      ->installConfig([
      'system',
    ]);

    // Check the default test timezone.
    $this
      ->assertEquals('Australia/Sydney', date_default_timezone_get());

    // Test the configured system timezone.
    $configFactory = $this->container
      ->get('config.factory');
    $timeZoneConfig = $configFactory
      ->getEditable('system.date');
    $timeZoneConfig
      ->set('timezone.default', 'Australia/Adelaide');
    $timeZoneConfig
      ->save();
    $eventDispatcher = $this->container
      ->get('event_dispatcher');
    $kernel = $this->container
      ->get('kernel');
    $eventDispatcher
      ->dispatch(KernelEvents::REQUEST, new GetResponseEvent($kernel, Request::create('http://www.example.com'), HttpKernelInterface::MASTER_REQUEST));
    $this
      ->assertEquals('Australia/Adelaide', date_default_timezone_get());
    $user = $this
      ->createUser([]);
    $user
      ->set('timezone', 'Australia/Lord_Howe');
    $user
      ->save();
    $this
      ->setCurrentUser($user);
    $this
      ->assertEquals('Australia/Lord_Howe', date_default_timezone_get());
  }

}

Classes

Namesort descending Description
TimezoneResolverTest @coversDefaultClass \Drupal\system\TimeZoneResolver @group system