3declare(strict_types=1);
24 $I->see(
'Acceptance test first header');
25 $currentTimezone = new \IntlDateFormatter(
null, \IntlDateFormatter::FULL, \IntlDateFormatter::FULL);
27 $I->see($currentTimezone->formatObject(
new \DateTime(),
'zzzz',
'en_US'));
37 $currentTimezone = new \IntlDateFormatter(
null, \IntlDateFormatter::FULL, \IntlDateFormatter::FULL);
38 $I->amOnPage(
'/show-timezone');
39 $I->see(
'Your current timezone is set to:');
41 $I->see($currentTimezone->formatObject(
new \DateTime(),
'zzzz',
'en_US'));
49 $currentTimezone = new \IntlDateFormatter(
null, \IntlDateFormatter::FULL, \IntlDateFormatter::FULL);
50 $I->resetCookie(
'tx_timezones');
51 $I->amOnPage(
'/select-timezone');
52 $I->see(
'Please select:');
54 $I->see($currentTimezone->getTimeZoneId());
62 $currentTimezone = new \IntlDateFormatter(
null, \IntlDateFormatter::FULL, \IntlDateFormatter::FULL);
63 $I->resetCookie(
'tx_timezones');
65 $I->amOnPage(
'/select-timezone-deprecated');
67 'tx_timezones_pi1[timezone]' =>
'Europe/Copenhagen',
69 $I->submitForm(
'#tzset', $form);
70 $I->seeInFormFields(
'#tzset', $form);
71 $I->seeCookie(
'tx_timezones');
73 $I->amOnPage(
'/select-timezone');
75 'tx_timezones_select[timezone]' =>
'America/Los_Angeles',
77 $I->submitForm(
'#tzset', $form);
78 $I->seeInFormFields(
'#tzset', $form);
82 $I->assertSame(
'America%2FLos_Angeles', $I->grabCookie(
'tx_timezones'));
firstPageIsRendered(AcceptanceTester $I)
showTimezoneIsRendered(AcceptanceTester $I)
selectTimezoneIsRendered(AcceptanceTester $I)
submitTimezoneIsPersistent(AcceptanceTester $I)