class TimezoneResolverTest in Drupal 10
Same name and namespace in other branches
- 8 core/modules/system/tests/src/Kernel/TimezoneResolverTest.php \Drupal\Tests\system\Kernel\TimezoneResolverTest
- 9 core/modules/system/tests/src/Kernel/TimezoneResolverTest.php \Drupal\Tests\system\Kernel\TimezoneResolverTest
@coversDefaultClass \Drupal\system\TimeZoneResolver @group system
Hierarchy
- class \Drupal\KernelTests\KernelTestBase extends \PHPUnit\Framework\TestCase implements ServiceProviderInterface uses \Drupal\Tests\PhpUnitCompatibilityTrait, \Symfony\Bridge\PhpUnit\ExpectDeprecationTrait, AssertContentTrait, ConfigTestTrait, ExtensionListTestTrait, RandomGeneratorTrait, TestRequirementsTrait, PhpUnitWarnings
- class \Drupal\Tests\system\Kernel\TimezoneResolverTest uses UserCreationTrait
Expanded class hierarchy of TimezoneResolverTest
File
- core/
modules/ system/ tests/ src/ Kernel/ TimezoneResolverTest.php, line 16
Namespace
Drupal\Tests\system\KernelView source
class TimezoneResolverTest extends KernelTestBase {
use UserCreationTrait;
/**
* {@inheritdoc}
*/
protected 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(new RequestEvent($kernel, Request::create('http://www.example.com'), HttpKernelInterface::MAIN_REQUEST, KernelEvents::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());
}
}