DrupalDateTimeTest.php

Same filename in this branch
  1. 11.x core/modules/system/tests/src/Functional/Datetime/DrupalDateTimeTest.php
  2. 11.x core/tests/Drupal/Tests/Core/Datetime/DrupalDateTimeTest.php
Same filename and directory in other branches
  1. 9 core/modules/system/tests/src/Functional/Datetime/DrupalDateTimeTest.php
  2. 9 core/tests/Drupal/Tests/Core/Datetime/DrupalDateTimeTest.php
  3. 8.9.x core/modules/system/tests/src/Functional/Datetime/DrupalDateTimeTest.php
  4. 8.9.x core/tests/Drupal/Tests/Core/Datetime/DrupalDateTimeTest.php
  5. 10 core/modules/system/tests/src/Functional/Datetime/DrupalDateTimeTest.php
  6. 10 core/tests/Drupal/Tests/Core/Datetime/DrupalDateTimeTest.php

Namespace

Drupal\KernelTests\Core\Datetime

File

core/tests/Drupal/KernelTests/Core/Datetime/DrupalDateTimeTest.php

View source
<?php

declare (strict_types=1);
namespace Drupal\KernelTests\Core\Datetime;

use Drupal\Core\Datetime\DrupalDateTime;
use Drupal\KernelTests\KernelTestBase;
use Drupal\Tests\user\Traits\UserCreationTrait;

/**
 * Tests DrupalDateTime functionality.
 *
 * @group Datetime
 */
class DrupalDateTimeTest extends KernelTestBase {
  use UserCreationTrait;
  
  /**
   * Set up required modules.
   *
   * @var string[]
   */
  protected static $modules = [
    'system',
    'user',
  ];
  
  /**
   * {@inheritdoc}
   */
  protected function setUp() : void {
    parent::setUp();
    $this->installConfig([
      'system',
    ]);
    $this->installEntitySchema('user');
  }
  
  /**
   * Tests that DrupalDateTime can detect the right timezone to use.
   *
   * Test with a variety of less commonly used timezone names to
   * help ensure that the system timezone will be different than the
   * stated timezones.
   */
  public function testDateTimezone() : void {
    $date_string = '2007-01-31 21:00:00';
    // Make sure no site timezone has been set.
    $this->config('system.date')
      ->set('timezone.user.configurable', 0)
      ->set('timezone.default', NULL)
      ->save();
    // Detect the system timezone.
    $system_timezone = date_default_timezone_get();
    // Create a date object with an unspecified timezone, which should
    // end up using the system timezone.
    $date = new DrupalDateTime($date_string);
    $timezone = $date->getTimezone()
      ->getName();
    $this->assertSame($system_timezone, $timezone, 'DrupalDateTime uses the system timezone when there is no site timezone.');
    // Create a date object with a specified timezone.
    $date = new DrupalDateTime($date_string, 'America/Yellowknife');
    $timezone = $date->getTimezone()
      ->getName();
    $this->assertSame('America/Yellowknife', $timezone, 'DrupalDateTime uses the specified timezone if provided.');
    // Set a site timezone.
    $this->config('system.date')
      ->set('timezone.default', 'Europe/Warsaw')
      ->save();
    // Create a date object with an unspecified timezone, which should
    // end up using the site timezone.
    $date = new DrupalDateTime($date_string);
    $timezone = $date->getTimezone()
      ->getName();
    $this->assertSame('Europe/Warsaw', $timezone, 'DrupalDateTime uses the site timezone if provided.');
    // Create user.
    $this->config('system.date')
      ->set('timezone.user.configurable', 1)
      ->save();
    $this->setUpCurrentUser([
      'timezone' => 'Asia/Manila',
    ]);
    // Create a date object with an unspecified timezone, which should
    // end up using the user timezone.
    $date = new DrupalDateTime($date_string);
    $timezone = $date->getTimezone()
      ->getName();
    $this->assertSame('Asia/Manila', $timezone, 'DrupalDateTime uses the user timezone, if configurable timezones are used and it is set.');
  }
  
  /**
   * Tests the ability to override the time zone in the format method.
   */
  public function testTimezoneFormat() : void {
    // Create a date in UTC
    $date = DrupalDateTime::createFromTimestamp(87654321, 'UTC');
    // Verify that the date format method displays the default time zone.
    $this->assertEquals('1972/10/11 12:25:21 UTC', $date->format('Y/m/d H:i:s e'), 'Date has default UTC time zone and correct date/time.');
    // Verify that the format method can override the time zone.
    $this->assertEquals('1972/10/11 08:25:21 America/New_York', $date->format('Y/m/d H:i:s e', [
      'timezone' => 'America/New_York',
    ]), 'Date displayed overridden time zone and correct date/time');
    // Verify that the date format method still displays the default time zone
    // for the date object.
    $this->assertEquals('1972/10/11 12:25:21 UTC', $date->format('Y/m/d H:i:s e'), 'Date still has default UTC time zone and correct date/time');
  }

}

Classes

Title Deprecated Summary
DrupalDateTimeTest Tests DrupalDateTime functionality.

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