]> git.mxchange.org Git - friendica.git/blob - tests/src/Util/TemporalTest.php
Add ClockInterface dependency to Temporal::getRelativeDate
[friendica.git] / tests / src / Util / TemporalTest.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2022, the Friendica project
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as
9  * published by the Free Software Foundation, either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19  *
20  */
21
22 namespace Friendica\Test\src\Util;
23
24 use Friendica\DI;
25 use Friendica\Util\Clock\FrozenClock;
26 use Friendica\Util\DateTimeFormat;
27 use Friendica\Util\Temporal;
28 use PHPUnit\Framework\TestCase;
29
30 /**
31  * Temporal utility test class
32  */
33 class TemporalTest extends TestCase
34 {
35         /**
36          * Checks for getRelativeDate()
37          */
38         public function testGetRelativeDate()
39         {
40                 $clock = new FrozenClock();
41
42                 // "never" should be returned
43                 self::assertEquals(
44                         Temporal::getRelativeDate('', true, $clock),
45                         DI::l10n()->t('never')
46                 );
47
48                 // Format current date/time into "MySQL" format
49                 self::assertEquals(
50                         Temporal::getRelativeDate($clock->now()->format(DateTimeFormat::MYSQL), true, $clock),
51                         DI::l10n()->t('less than a second ago')
52                 );
53
54                 // Format current date/time - 1 minute into "MySQL" format
55                 $minuteAgo = date('Y-m-d H:i:s', $clock->now()->getTimestamp() - 60);
56                 $format    = DI::l10n()->t('%1$d %2$s ago');
57
58                 // Should be both equal
59                 self::assertEquals(
60                         Temporal::getRelativeDate($minuteAgo, true, $clock),
61                         sprintf($format, 1, DI::l10n()->t('minute'))
62                 );
63         }
64 }