View source
<?php
namespace Drupal\KernelTests\Core\Datetime\Element;
use Drupal\Core\Datetime\DrupalDateTime;
use Drupal\Core\Datetime\Entity\DateFormat;
use Drupal\Core\Form\FormBuilderInterface;
use Drupal\Core\Form\FormInterface;
use Drupal\Core\Form\FormState;
use Drupal\Core\Form\FormStateInterface;
use Drupal\KernelTests\Core\Entity\EntityKernelTestBase;
class TimezoneTest extends EntityKernelTestBase implements FormInterface {
protected static $modules = [
'system',
];
protected $date;
protected $timezones = [
'zone A' => 'Pacific/Kwajalein',
'zone B' => 'America/Phoenix',
'user' => 'Asia/Kolkata',
'UTC' => 'UTC',
];
protected $formattedDates = [];
protected $dateFormat;
protected $timeFormat;
protected $elementType;
protected $testConditions;
public function buildForm(array $form, FormStateInterface $form_state) {
$form['test1'] = [
'#title' => 'No default date, #date_timezone present',
'#type' => $this->elementType,
'#default_value' => '',
'#date_timezone' => $this->timezones['zone A'],
'#test_expect_timezone' => 'zone A',
];
$form['test2'] = [
'#title' => 'No default date, no #date_timezone',
'#type' => $this->elementType,
'#default_value' => '',
'#test_expect_timezone' => 'user',
];
$form['test3'] = [
'#title' => 'Default date present with default timezone, #date_timezone same',
'#type' => $this->elementType,
'#default_value' => $this->date,
'#date_timezone' => $this->timezones['user'],
'#test_expect_timezone' => 'user',
];
$form['test4'] = [
'#title' => 'Default date present with default timezone, #date_timezone different',
'#type' => $this->elementType,
'#default_value' => $this->date,
'#date_timezone' => $this->timezones['zone A'],
'#test_expect_timezone' => 'zone A',
];
$form['test5'] = [
'#title' => 'Default date present with default timezone, no #date_timezone',
'#type' => $this->elementType,
'#default_value' => $this->date,
'#test_expect_timezone' => 'user',
];
$dateWithTimeZoneA = clone $this->date;
$dateWithTimeZoneA
->setTimezone(new \DateTimeZone($this->timezones['zone A']));
$form['test6'] = [
'#title' => 'Default date present with unusual timezone, #date_timezone same',
'#type' => $this->elementType,
'#default_value' => $dateWithTimeZoneA,
'#date_timezone' => $this->timezones['zone A'],
'#test_expect_timezone' => 'zone A',
];
$form['test7'] = [
'#title' => 'Default date present with unusual timezone, #date_timezone different',
'#type' => $this->elementType,
'#default_value' => $dateWithTimeZoneA,
'#date_timezone' => $this->timezones['zone B'],
'#test_expect_timezone' => 'zone B',
];
$form['test8'] = [
'#title' => 'Default date present with unusual timezone, no #date_timezone',
'#type' => $this->elementType,
'#default_value' => $dateWithTimeZoneA,
'#test_expect_timezone' => 'user',
];
$this->testConditions = 8;
return $form;
}
protected function setUp() : void {
parent::setUp();
$this
->installConfig([
'system',
]);
$this->timezones['php initial'] = date_default_timezone_get();
$user = $this
->createUser();
$user
->set('timezone', $this->timezones['user'])
->save();
\Drupal::currentUser()
->setAccount($user);
$this->date = new DrupalDatetime('2000-01-01 12:00', NULL);
$this->dateFormat = DateFormat::load('html_date')
->getPattern();
$this->timeFormat = DateFormat::load('html_time')
->getPattern();
$date = clone $this->date;
foreach ($this->timezones as $label => $timezone) {
$date
->setTimezone(new \DateTimeZone($timezone));
$this->formattedDates['date'][$label] = $date
->format($this->dateFormat);
$this->formattedDates['time'][$label] = $date
->format($this->timeFormat);
$this->formattedDates['day'][$label] = $date
->format('j');
$this->formattedDates['month'][$label] = $date
->format('n');
$this->formattedDates['year'][$label] = $date
->format('Y');
$this->formattedDates['hour'][$label] = $date
->format('G');
$this->formattedDates['minute'][$label] = $date
->format('i');
$this->formattedDates['second'][$label] = $date
->format('s');
}
$this
->assertEquals($this->timezones['user'], date_default_timezone_get(), 'Subsequent tests assume specific value for date_default_timezone_get().');
$this
->assertEquals(date_default_timezone_get(), $this->date
->getTimezone()
->getName(), 'Subsequent tests assume DrupalDateTime objects default to Drupal user time zone if none specified');
}
public function testDatetimeElementTimesUnderstoodCorrectly() {
$this
->assertTimesUnderstoodCorrectly('datetime', [
'date',
'time',
]);
}
public function testDatelistElementTimesUnderstoodCorrectly() {
$this
->assertTimesUnderstoodCorrectly('datelist', [
'day',
'month',
'year',
'hour',
'minute',
'second',
]);
}
public function testDatetimeTimezonePropertyProcessed() {
$this
->assertDateTimezonePropertyProcessed('datetime');
}
public function testDatelistTimezonePropertyProcessed() {
$this
->assertDateTimezonePropertyProcessed('datelist');
}
protected function assertTimesUnderstoodCorrectly(string $elementType, array $inputs) : void {
$this->elementType = $elementType;
$form_state = new FormState();
$form_builder = $this->container
->get('form_builder');
$form = $this
->setupForm($form_state, $form_builder);
foreach ($form as $elementName => $element) {
if (isset($element['#type']) && $element['#type'] === $this->elementType && $element['#default_value'] === '') {
$newValues = [];
foreach ($inputs as $input) {
$newValues[$input] = $this->formattedDates[$input][$element['#test_expect_timezone']];
}
$form_state
->setValue([
$elementName,
], $newValues);
}
}
$form_builder
->submitForm($this, $form_state);
$utc = new \DateTimeZone('UTC');
$expectedDateUTC = clone $this->date;
$expectedDateUTC
->setTimezone($utc)
->format('Y-m-d H:i:s');
$wrongDates = [];
$wrongTimezones = [];
$rightDates = 0;
foreach ($form_state
->getCompleteForm() as $elementName => $element) {
if (isset($element['#type']) && $element['#type'] === $this->elementType) {
$actualDate = $form_state
->getValue($elementName);
$actualTimezone = array_search($actualDate
->getTimezone()
->getName(), $this->timezones);
$actualDateUTC = $actualDate
->setTimezone($utc)
->format('Y-m-d H:i:s');
$this
->assertEquals(date_default_timezone_get(), $this->date
->getTimezone()
->getName(), "Test date still set to user timezone.");
if ($actualDate != $this->date) {
$wrongDates[$element['#title']] = $actualDateUTC;
}
else {
$rightDates++;
}
if ($element['#test_expect_timezone'] !== $actualTimezone) {
$wrongTimezones[$element['#title']] = [
$element['#test_expect_timezone'],
$actualTimezone,
];
}
}
}
$message = "On all elements the time should be understood correctly as {$expectedDateUTC}: \n" . print_r($wrongDates, TRUE);
$this
->assertEquals($this->testConditions, $rightDates, $message);
$message = "On all elements the correct timezone should be set on the value object: (expected, actual) \n" . print_r($wrongTimezones, TRUE);
$this
->assertCount(0, $wrongTimezones, $message);
}
public function assertDateTimezonePropertyProcessed(string $elementType) : void {
$this->elementType = $elementType;
$form_state = new FormState();
$form_builder = $this->container
->get('form_builder');
$this
->setupForm($form_state, $form_builder);
$wrongTimezones = [];
foreach ($form_state
->getCompleteForm() as $elementName => $element) {
if (isset($element['#type']) && $element['#type'] === $this->elementType) {
$actualTimezone = array_search($element['#date_timezone'], $this->timezones, TRUE);
if ($element['#test_expect_timezone'] !== $actualTimezone) {
$wrongTimezones[$element['#title']] = [
$element['#test_expect_timezone'],
$actualTimezone,
];
}
}
$this
->assertEquals($this->timezones['user'], date_default_timezone_get(), 'Subsequent tests assume specific value for date_default_timezone_get().');
$message = "The correct timezone should be set on the processed {$this->elementType} elements: (expected, actual) \n" . print_r($wrongTimezones, TRUE);
$this
->assertCount(0, $wrongTimezones, $message);
}
}
protected function setupForm(FormStateInterface $form_state, FormBuilderInterface $form_builder) {
$form_id = $form_builder
->getFormId($this, $form_state);
$form = $form_builder
->retrieveForm($form_id, $form_state);
$form_state
->setValidationEnforced();
$form_state
->clearErrors();
$form_builder
->prepareForm($form_id, $form, $form_state);
$form_builder
->processForm($form_id, $form, $form_state);
return $form_builder
->retrieveForm($form_id, $form_state);
}
public function getFormId() {
return 'test_datetime_elements';
}
public function submitForm(array &$form, FormStateInterface $form_state) {
}
public function validateForm(array &$form, FormStateInterface $form_state) {
}
}