Timezones
FrontendPagesCest.php
Go to the documentation of this file.
1<?php
2
3declare(strict_types=1);
4
5/*
6 * This file is part of the package thucke/timezones.
7 *
8 * For the full copyright and license information, please read the
9 * LICENSE file that was distributed with this source code.
10 */
11
13
15
17{
21 public function firstPageIsRendered(AcceptanceTester $I): void
22 {
23 $I->amOnPage('/');
24 $I->see('Acceptance test first header');
25 $currentTimezone = new \IntlDateFormatter(null, \IntlDateFormatter::FULL, \IntlDateFormatter::FULL);
26 // check for default timezone abbrevation
27 $I->see($currentTimezone->formatObject(new \DateTime(), 'zzzz', 'en_US'));
30 }
31
35 public function showTimezoneIsRendered(AcceptanceTester $I): void
36 {
37 $currentTimezone = new \IntlDateFormatter(null, \IntlDateFormatter::FULL, \IntlDateFormatter::FULL);
38 $I->amOnPage('/show-timezone');
39 $I->see('Your current timezone is set to:');
40 // check for default timezone abbrevation
41 $I->see($currentTimezone->formatObject(new \DateTime(), 'zzzz', 'en_US'));
42 }
43
48 {
49 $currentTimezone = new \IntlDateFormatter(null, \IntlDateFormatter::FULL, \IntlDateFormatter::FULL);
50 $I->resetCookie('tx_timezones');
51 $I->amOnPage('/select-timezone');
52 $I->see('Please select:');
53 // check for default timezone abbrevation
54 $I->see($currentTimezone->getTimeZoneId());
55 }
56
61 {
62 $currentTimezone = new \IntlDateFormatter(null, \IntlDateFormatter::FULL, \IntlDateFormatter::FULL);
63 $I->resetCookie('tx_timezones');
64
65 $I->amOnPage('/select-timezone-deprecated');
66 $form = [
67 'tx_timezones_pi1[timezone]' => 'Europe/Copenhagen',
68 ];
69 $I->submitForm('#tzset', $form);
70 $I->seeInFormFields('#tzset', $form);
71 $I->seeCookie('tx_timezones');
72
73 $I->amOnPage('/select-timezone');
74 $form = [
75 'tx_timezones_select[timezone]' => 'America/Los_Angeles',
76 ];
77 $I->submitForm('#tzset', $form);
78 $I->seeInFormFields('#tzset', $form);
79
80 //check change of timezone also on other page and confirm cookie functionality
81 $I->amOnPage('/');
82 $I->assertSame('America%2FLos_Angeles', $I->grabCookie('tx_timezones'));
83 $I->see('Pacific');
84 }
85}