Merge pull request #12064 from Quix0r/phpunit/temporal-test

Unit test added for Temporal utilities class
This commit is contained in:
Hypolite Petovan 2022-10-25 17:16:58 -04:00 committed by GitHub
commit 158d21db14
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 61 additions and 0 deletions

View File

@ -0,0 +1,61 @@
<?php
/**
* @copyright Copyright (C) 2010-2022, the Friendica project
*
* @license GNU AGPL version 3 or any later version
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
*/
namespace Friendica\Test\src\Util;
use Friendica\DI;
use Friendica\Util\Temporal;
use PHPUnit\Framework\TestCase;
/**
* Temporal utility test class
*/
class TemporalTest extends TestCase
{
/**
* Checks for getRelativeDate()
*/
public function testGetRelativeDate()
{
// "never" would should be returned
self::assertEquals(
Temporal::getRelativeDate(''),
DI::l10n()->t('never')
);
// Format current date/time into "MySQL" format
$now = date('Y-m-d H:i:s');
self::assertEquals(
Temporal::getRelativeDate($now),
DI::l10n()->t('less than a second ago')
);
// Format current date/time - 1 minute into "MySQL" format
$minuteAgo = date('Y-m-d H:i:s', time() - 60);
$format = DI::l10n()->t('%1$d %2$s ago');
// Should be both equal
self::assertEquals(
Temporal::getRelativeDate($minuteAgo),
sprintf($format, 1, DI::l10n()->t('minute'))
);
}
}