Timezones
TimezoneServiceTest.php
Go to the documentation of this file.
1<?php
2
3/*
4 * This file is part of the package thucke/timezones.
5 *
6 * For the full copyright and license information, please read the
7 * LICENSE file that was distributed with this source code.
8 */
9
10/*
11 * This file is part of the package thucke/timezones.
12 *
13 * For the full copyright and license information, please read the
14 * LICENSE file that was distributed with this source code.
15 */
16
18
21use TYPO3\CMS\Core\Core\Bootstrap;
22use TYPO3\CMS\Core\Utility\ExtensionManagementUtility;
23use TYPO3\CMS\Core\Utility\GeneralUtility;
24use TYPO3\CMS\Extbase\Configuration\ConfigurationManager;
25use TYPO3\CMS\Extbase\Object\ObjectManager;
26use TYPO3\TestingFramework\Core\Functional\FunctionalTestCase;
27
31class TimezoneServiceTest extends FunctionalTestCase
32{
36 //protected $backupGlobalsBlacklist = ['TYPO3_CONF_VARS'];
40 protected $testExtensionsToLoad = ['typo3conf/ext/timezones'];
44 protected $coreExtensionsToLoad = ['extbase', 'fluid'];
45
49 protected $subject;
50
51 protected function setUp(): void
52 {
53 parent::setUp();
54 $extAbsPath = ExtensionManagementUtility::extPath('timezones');
55
56 $objectManager = GeneralUtility::makeInstance(ObjectManager::class);
57 $configurationManager = $this->createPartialMock(ConfigurationManager::class, ['getConfiguration']);
58 $configurationManager->method('getConfiguration')->willReturn([]);
59
60 $this->importDataSet($extAbsPath . '/Tests/Functional/Fixtures/Database/pages.xml');
61 $this->setUpFrontendRootPage(
62 1,
63 [
64 'EXT:fluid_styled_content/Configuration/TypoScript/setup.typoscript',
65 $extAbsPath . '/Configuration/TypoScript/setup.typoscript',
66 $extAbsPath . '/Tests/Functional/Fixtures/Frontend/Basic.typoscript',
67 ]
68 );
69 Bootstrap::initializeLanguageObject();
70
71 $loggingService = $this->getMockBuilder(LoggingService::class)->getMock();
72 $this->subject = new TimezoneService($objectManager, $loggingService);
73 $this->subject->initializeObject();
74 $this->subject->setCurrentTimezone('Europe/Berlin');
75 }
76
82 {
83 self::assertArrayHasKey('Europe/Berlin', $this->subject->getTimezoneArray());
84 }
85
90 public function checkUtc()
91 {
92 self::assertArrayHasKey('UTC', $this->subject->getTimezoneArray());
93 $oldTz = $this->subject->getCurrentTimezone();
94 $this->subject->setCurrentTimezone('UTC');
95 self::assertSame('UTC', $this->subject->getCurrentTimezone()->getName());
96 $this->subject->setCurrentTimezone($oldTz->getName());
97 }
98
103 public function checkDst()
104 {
105 $this->subject->setCurrentTimezone('Europe/Berlin');
106 self::assertFalse($this->subject->isDst('2020-01-01'));
107 self::assertTrue($this->subject->isDst('2020-07-01'));
108 }
109
113 public function checkTimezoneString()
114 {
115 // consider the Germany may have GMT+0100 or GMT+0200 due to DST also allowed is e.g. GMT+01:00
116
117 if (version_compare(TYPO3_version, '10.0', '>'))
118 {
119 self::assertMatchesRegularExpression('/GMT\+0[1|2]:?00/', $this->subject->getIcuTimezoneString());
120 } else {
121 self::assertRegExp('/GMT\+0[1|2]:?00/', $this->subject->getIcuTimezoneString());
122 }
123 }
124
128 public function checkTimezoneOffset()
129 {
130 // consider the Germany may have GMT+0100 or GMT+0200 due to DST
131 if (version_compare(TYPO3_version, '10.0', '>'))
132 {
133 self::assertMatchesRegularExpression('/[3600|7200]/', $this->subject->getOffsetInSeconds());
134 } else {
135 self::assertRegExp('/[3600|7200]/', $this->subject->getOffsetInSeconds());
136 }
137 }
138}