View = new View(); $this->Time = new TimeHelper($this->View); } /** * tearDown method */ public function tearDown(): void { parent::tearDown(); DateTime::setDefaultLocale(null); I18n::setLocale(I18n::getDefaultLocale()); } /** * Test element wrapping in timeAgoInWords */ public function testTimeAgoInWords(): void { $Time = new TimeHelper($this->View); $timestamp = strtotime('+8 years, +4 months +2 weeks +3 days'); $result = $Time->timeAgoInWords($timestamp, [ 'end' => '1 years', 'element' => 'span', ]); $expected = [ 'span' => [ 'title' => $timestamp, 'class' => 'time-ago-in-words', ], 'on ' . date('n/j/y', $timestamp), '/span', ]; $this->assertHtml($expected, $result); $result = $Time->timeAgoInWords($timestamp, [ 'end' => '1 years', 'element' => [ 'title' => 'testing', 'rel' => 'test', ], ]); $expected = [ 'span' => [ 'title' => 'testing', 'class' => 'time-ago-in-words', 'rel' => 'test', ], 'on ' . date('n/j/y', $timestamp), '/span', ]; $this->assertHtml($expected, $result); $timestamp = strtotime('+2 weeks'); $result = $Time->timeAgoInWords( $timestamp, ['end' => '1 years', 'element' => 'div'] ); $expected = [ 'div' => [ 'title' => $timestamp, 'class' => 'time-ago-in-words', ], '2 weeks', '/div', ]; $this->assertHtml($expected, $result); } /** * Test output timezone with timeAgoInWords */ public function testTimeAgoInWordsOutputTimezone(): void { $Time = new TimeHelper($this->View, ['outputTimezone' => 'America/Vancouver']); $timestamp = new DateTime('+8 years, +4 months +2 weeks +3 days'); $result = $Time->timeAgoInWords($timestamp, [ 'end' => '1 years', 'element' => 'span', ]); $vancouver = clone $timestamp; $vancouver = $vancouver->setTimezone('America/Vancouver'); $expected = [ 'span' => [ 'title' => $vancouver->__toString(), 'class' => 'time-ago-in-words', ], 'on ' . $vancouver->format('n/j/y'), '/span', ]; $this->assertHtml($expected, $result); } /** * testToQuarter method */ public function testToQuarter(): void { $this->assertSame(4, $this->Time->toQuarter('2007-12-25')); $this->assertEquals(['2007-10-01', '2007-12-31'], $this->Time->toQuarter('2007-12-25', true)); } /** * testNice method */ public function testNice(): void { $time = '2014-04-20 20:00'; $this->assertTimeFormat('Apr 20, 2014, 8:00 PM', $this->Time->nice($time)); $result = $this->Time->nice($time, 'America/New_York'); $this->assertTimeFormat('Apr 20, 2014, 4:00 PM', $result); } /** * test nice with outputTimezone */ public function testNiceOutputTimezone(): void { $this->Time->setConfig('outputTimezone', 'America/Vancouver'); $time = '2014-04-20 20:00'; $this->assertTimeFormat('Apr 20, 2014, 1:00 PM', $this->Time->nice($time)); } /** * testToUnix method */ public function testToUnix(): void { $this->assertSame('1397980800', $this->Time->toUnix('2014-04-20 08:00:00')); } /** * testToAtom method */ public function testToAtom(): void { $dateTime = new NativeDateTime(); $this->assertSame($dateTime->format($dateTime::ATOM), $this->Time->toAtom($dateTime->getTimestamp())); } /** * testToAtom method */ public function testToAtomOutputTimezone(): void { $this->Time->setConfig('outputTimezone', 'America/Vancouver'); $dateTime = new DateTime(); $vancouver = clone $dateTime; $vancouver = $vancouver->setTimezone('America/Vancouver'); $this->assertSame($vancouver->format(DATE_ATOM), $this->Time->toAtom($vancouver)); } /** * testToRss method */ public function testToRss(): void { $date = '2012-08-12 12:12:45'; $time = strtotime($date); $this->assertSame(date('r', $time), $this->Time->toRss($time)); $timezones = ['Europe/London', 'Europe/Brussels', 'UTC', 'America/Denver', 'America/Caracas', 'Asia/Kathmandu']; foreach ($timezones as $timezone) { $yourTimezone = new DateTimeZone($timezone); $yourTime = new NativeDateTime($date, $yourTimezone); $time = $yourTime->format('U'); $this->assertSame($yourTime->format('r'), $this->Time->toRss($time, $timezone), "Failed on $timezone"); } } /** * test toRss with outputTimezone */ public function testToRssOutputTimezone(): void { $this->Time->setConfig('outputTimezone', 'America/Vancouver'); $dateTime = new DateTime(); $vancouver = clone $dateTime; $vancouver = $vancouver->setTimezone('America/Vancouver'); $this->assertSame($vancouver->format('r'), $this->Time->toRss($vancouver)); } /** * testOfGmt method */ public function testGmt(): void { $this->assertSame('1397980800', $this->Time->gmt('2014-04-20 08:00:00')); } /** * testIsToday method */ public function testIsToday(): void { $result = $this->Time->isToday('+1 day'); $this->assertFalse($result); $result = $this->Time->isToday('+1 days'); $this->assertFalse($result); $result = $this->Time->isToday('+0 day'); $this->assertTrue($result); $result = $this->Time->isToday('-1 day'); $this->assertFalse($result); } /** * testIsFuture method */ public function testIsFuture(): void { $this->assertTrue($this->Time->isFuture('+1 month')); $this->assertTrue($this->Time->isFuture('+1 days')); $this->assertTrue($this->Time->isFuture('+1 minute')); $this->assertTrue($this->Time->isFuture('+1 second')); $this->assertFalse($this->Time->isFuture('-1 second')); $this->assertFalse($this->Time->isFuture('-1 day')); $this->assertFalse($this->Time->isFuture('-1 week')); $this->assertFalse($this->Time->isFuture('-1 month')); } /** * testIsPast method */ public function testIsPast(): void { $this->assertFalse($this->Time->isPast('+1 month')); $this->assertFalse($this->Time->isPast('+1 days')); $this->assertFalse($this->Time->isPast('+1 minute')); $this->assertFalse($this->Time->isPast('+1 second')); $this->assertTrue($this->Time->isPast('-1 second')); $this->assertTrue($this->Time->isPast('-1 day')); $this->assertTrue($this->Time->isPast('-1 week')); $this->assertTrue($this->Time->isPast('-1 month')); } /** * testIsThisWeek method */ public function testIsThisWeek(): void { // A map of days which goes from -1 day of week to +1 day of week $map = [ 'Mon' => [-1, 7], 'Tue' => [-2, 6], 'Wed' => [-3, 5], 'Thu' => [-4, 4], 'Fri' => [-5, 3], 'Sat' => [-6, 2], 'Sun' => [-7, 1], ]; $days = $map[date('D')]; for ($day = $days[0] + 1; $day < $days[1]; $day++) { $this->assertTrue($this->Time->isThisWeek(($day > 0 ? '+' : '') . $day . ' days')); } $this->assertFalse($this->Time->isThisWeek($days[0] . ' days')); $this->assertFalse($this->Time->isThisWeek('+' . $days[1] . ' days')); } /** * testIsThisMonth method */ public function testIsThisMonth(): void { $result = $this->Time->isThisMonth('+0 day'); $this->assertTrue($result); $result = $this->Time->isThisMonth($time = mktime(0, 0, 0, (int)date('m'), mt_rand(1, 28), (int)date('Y'))); $this->assertTrue($result); $result = $this->Time->isThisMonth(mktime(0, 0, 0, (int)date('m'), mt_rand(1, 28), (int)date('Y') - mt_rand(1, 12))); $this->assertFalse($result); $result = $this->Time->isThisMonth(mktime(0, 0, 0, (int)date('m'), mt_rand(1, 28), (int)date('Y') + mt_rand(1, 12))); $this->assertFalse($result); } /** * testIsThisYear method */ public function testIsThisYear(): void { $result = $this->Time->isThisYear('+0 day'); $this->assertTrue($result); $result = $this->Time->isThisYear(mktime(0, 0, 0, mt_rand(1, 12), mt_rand(1, 28), (int)date('Y'))); $this->assertTrue($result); } /** * testWasYesterday method */ public function testWasYesterday(): void { $result = $this->Time->wasYesterday('+1 day'); $this->assertFalse($result); $result = $this->Time->wasYesterday('+1 days'); $this->assertFalse($result); $result = $this->Time->wasYesterday('+0 day'); $this->assertFalse($result); $result = $this->Time->wasYesterday('-1 day'); $this->assertTrue($result); $result = $this->Time->wasYesterday('-1 days'); $this->assertTrue($result); $result = $this->Time->wasYesterday('-2 days'); $this->assertFalse($result); } /** * testIsTomorrow method */ public function testIsTomorrow(): void { $result = $this->Time->isTomorrow('+1 day'); $this->assertTrue($result); $result = $this->Time->isTomorrow('+1 days'); $this->assertTrue($result); $result = $this->Time->isTomorrow('+0 day'); $this->assertFalse($result); $result = $this->Time->isTomorrow('-1 day'); $this->assertFalse($result); } /** * testWasWithinLast method */ public function testWasWithinLast(): void { $this->assertTrue($this->Time->wasWithinLast('1 day', '-1 day')); $this->assertTrue($this->Time->wasWithinLast('1 week', '-1 week')); $this->assertTrue($this->Time->wasWithinLast('1 year', '-1 year')); $this->assertTrue($this->Time->wasWithinLast('1 second', '-1 second')); $this->assertTrue($this->Time->wasWithinLast('1 minute', '-1 minute')); $this->assertTrue($this->Time->wasWithinLast('1 hour', '-1 hour')); $this->assertTrue($this->Time->wasWithinLast('1 year', '-1 year')); $this->assertTrue($this->Time->wasWithinLast('1 month', '-1 month')); $this->assertTrue($this->Time->wasWithinLast('1 day', '-1 day')); $this->assertTrue($this->Time->wasWithinLast('1 week', '-1 day')); $this->assertTrue($this->Time->wasWithinLast('2 week', '-1 week')); $this->assertFalse($this->Time->wasWithinLast('1 second', '-1 year')); $this->assertTrue($this->Time->wasWithinLast('10 minutes', '-1 second')); $this->assertTrue($this->Time->wasWithinLast('23 minutes', '-1 minute')); $this->assertFalse($this->Time->wasWithinLast('0 year', '-1 year')); $this->assertTrue($this->Time->wasWithinLast('13 month', '-1 month')); $this->assertTrue($this->Time->wasWithinLast('2 days', '-1 day')); $this->assertFalse($this->Time->wasWithinLast('1 week', '-2 weeks')); $this->assertFalse($this->Time->wasWithinLast('1 second', '-2 seconds')); $this->assertFalse($this->Time->wasWithinLast('1 day', '-2 days')); $this->assertFalse($this->Time->wasWithinLast('1 hour', '-2 hours')); $this->assertFalse($this->Time->wasWithinLast('1 month', '-2 months')); $this->assertFalse($this->Time->wasWithinLast('1 year', '-2 years')); $this->assertFalse($this->Time->wasWithinLast('1 day', '-2 weeks')); $this->assertFalse($this->Time->wasWithinLast('1 day', '-2 days')); $this->assertTrue($this->Time->wasWithinLast('1 day', '-23 hours -59 minutes -59 seconds')); $this->assertFalse($this->Time->wasWithinLast('0 days', '-2 days')); $this->assertTrue($this->Time->wasWithinLast('1 hour', '-20 seconds')); $this->assertTrue($this->Time->wasWithinLast('1 year', '-60 minutes -30 seconds')); $this->assertTrue($this->Time->wasWithinLast('3 years', '-2 months')); $this->assertTrue($this->Time->wasWithinLast('5 months', '-4 months')); } /** * testisWithinNext method */ public function testIsWithinNext(): void { $this->assertFalse($this->Time->isWithinNext('1 day', '-1 day')); $this->assertFalse($this->Time->isWithinNext('1 week', '-1 week')); $this->assertFalse($this->Time->isWithinNext('1 year', '-1 year')); $this->assertFalse($this->Time->isWithinNext('1 second', '-1 second')); $this->assertFalse($this->Time->isWithinNext('1 minute', '-1 minute')); $this->assertFalse($this->Time->isWithinNext('1 year', '-1 year')); $this->assertFalse($this->Time->isWithinNext('1 month', '-1 month')); $this->assertFalse($this->Time->isWithinNext('1 day', '-1 day')); $this->assertFalse($this->Time->isWithinNext('1 week', '-1 day')); $this->assertFalse($this->Time->isWithinNext('2 week', '-1 week')); $this->assertFalse($this->Time->isWithinNext('1 second', '-1 year')); $this->assertFalse($this->Time->isWithinNext('10 minutes', '-1 second')); $this->assertFalse($this->Time->isWithinNext('23 minutes', '-1 minute')); $this->assertFalse($this->Time->isWithinNext('0 year', '-1 year')); $this->assertFalse($this->Time->isWithinNext('13 month', '-1 month')); $this->assertFalse($this->Time->isWithinNext('2 days', '-1 day')); $this->assertFalse($this->Time->isWithinNext('1 week', '-2 weeks')); $this->assertFalse($this->Time->isWithinNext('1 second', '-2 seconds')); $this->assertFalse($this->Time->isWithinNext('1 day', '-2 days')); $this->assertFalse($this->Time->isWithinNext('1 hour', '-2 hours')); $this->assertFalse($this->Time->isWithinNext('1 month', '-2 months')); $this->assertFalse($this->Time->isWithinNext('1 year', '-2 years')); $this->assertFalse($this->Time->isWithinNext('1 day', '-2 weeks')); $this->assertFalse($this->Time->isWithinNext('1 day', '-2 days')); $this->assertFalse($this->Time->isWithinNext('0 days', '-2 days')); $this->assertFalse($this->Time->isWithinNext('1 hour', '-20 seconds')); $this->assertFalse($this->Time->isWithinNext('1 year', '-60 minutes -30 seconds')); $this->assertFalse($this->Time->isWithinNext('3 years', '-2 months')); $this->assertFalse($this->Time->isWithinNext('5 months', '-4 months')); $this->assertTrue($this->Time->isWithinNext('1 day', '+1 day')); $this->assertTrue($this->Time->isWithinNext('7 day', '+1 week')); $this->assertTrue($this->Time->isWithinNext('1 minute', '+1 second')); $this->assertTrue($this->Time->isWithinNext('1 month', '+1 month')); } /** * test formatting dates taking in account preferred i18n locale file */ public function testFormat(): void { $time = strtotime('Thu Jan 14 13:59:28 2010'); $result = $this->Time->format($time); $expected = '1/14/10, 1:59 PM'; $this->assertTimeFormat($expected, $result); $result = $this->Time->format($time, IntlDateFormatter::FULL); $expected = 'Thursday, January 14, 2010 at 1:59:28 PM'; $this->assertStringStartsWith($expected, $result); $result = $this->Time->format('invalid date', null, 'Date invalid'); $expected = 'Date invalid'; $this->assertSame($expected, $result); I18n::setLocale('fr_FR'); DateTime::setDefaultLocale('fr_FR'); $time = new DateTime('Thu Jan 14 13:59:28 2010'); $result = $this->Time->format($time, IntlDateFormatter::FULL); $this->assertStringContainsString('jeudi 14 janvier 2010', $result); $this->assertStringContainsString('13:59:28', $result); } /** * test format with outputTimezone */ public function testFormatOutputTimezone(): void { $this->Time->setConfig('outputTimezone', 'America/Vancouver'); $time = strtotime('Thu Jan 14 8:59:28 2010 UTC'); $result = $this->Time->format($time); $expected = '1/14/10, 12:59 AM'; $this->assertTimeFormat($expected, $result); $time = new DateTime('Thu Jan 14 8:59:28 2010', 'UTC'); $result = $this->Time->format($time); $expected = '1/14/10, 12:59 AM'; $this->assertTimeFormat($expected, $result); } /** * test i18nFormat with outputTimezone */ public function testI18nFormatOutputTimezone(): void { $this->Time->setConfig('outputTimezone', 'America/Vancouver'); $time = strtotime('Thu Jan 14 8:59:28 2010 UTC'); $result = $this->Time->i18nFormat($time, [IntlDateFormatter::SHORT, IntlDateFormatter::FULL]); $expected = '1/14/10, 12:59:28 AM'; $this->assertStringStartsWith($expected, $result); } /** * Test format() with a string. */ public function testFormatString(): void { $time = '2010-01-14 13:59:28'; $result = $this->Time->format($time); $this->assertTimeFormat('1/14/10 1:59 PM', $result); $result = $this->Time->format($time, 'HH:mm', false, 'America/New_York'); $this->assertTimeFormat('08:59', $result); } /** * Test format() with a Time instance. */ public function testFormatTimeInstance(): void { $time = new DateTime('2010-01-14 13:59:28', 'America/New_York'); $result = $this->Time->format($time, 'HH:mm', false, 'America/New_York'); $this->assertTimeFormat('13:59', $result); $time = new DateTime('2010-01-14 13:59:28', 'UTC'); $result = $this->Time->format($time, 'HH:mm', false, 'America/New_York'); $this->assertTimeFormat('08:59', $result); } /** * Custom assert to allow for variation in the version of the intl library, where * some translations contain a few extra commas. * * @param string $expected * @param string $result */ public function assertTimeFormat($expected, $result): void { $this->assertSame( str_replace([',', '(', ')', ' at', ' à'], '', $expected), str_replace([',', '(', ')', ' at', ' à'], '', $result) ); } /** * Test formatting in case the $time parameter is not set */ public function testNullDateFormat(): void { $result = $this->Time->format(null); $this->assertFalse($result); $fallback = 'Date invalid or not set'; $result = $this->Time->format(null, IntlDateFormatter::FULL, $fallback); $this->assertSame($fallback, $result); } }