/
githubmirror
/
joomla-cms
Обзор
Документация
Войти
/
githubmirror
/
joomla-cms
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
5.4-dev
tests/Unit/Libraries/Cms/Html/HtmlDateTest.php
97 строк
3 KB
Allon Moritz
Fix imports because of new CS rule
29 авг 2023, 16:45
Не верифицирован
29 авг 2023, 16:45
290b107
Код
Авторство
О чём код?
<?php /** * @package Joomla.UnitTest * @subpackage HTML * * @copyright (C) 2019 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ namespace Joomla\Tests\Unit\Libraries\Cms\Html; use Joomla\CMS\Date\Date; use Joomla\CMS\HTML\Helpers\Date as HtmlDate; use Joomla\Tests\Unit\UnitTestCase; /** * Test class for HtmlDate. * * @package Joomla.UnitTest * @subpackage Html * @since 3.1 */ class HtmlDateTest extends UnitTestCase { /** * Test data for the testRelative method * * @return array * * @since 3.1 */ public function dataTestRelative(): array { $now1 = new Date('now'); usleep(1); $now2 = new Date('now'); return [ // Element order: result, date, unit, time // result - 1 hour ago [ 'JLIB_HTML_DATE_RELATIVE_HOURS', new Date('2011-10-18 11:00:00'), null, new Date('2011-10-18 12:00:00'), ], // Result - 10 days ago [ 'JLIB_HTML_DATE_RELATIVE_DAYS', new Date('2011-10-08 12:00:00'), 'day', new Date('2011-10-18 12:00:00'), ], // Result - 3 weeks ago [ 'JLIB_HTML_DATE_RELATIVE_WEEKS', new Date('2011-09-27 12:00:00'), 'week', new Date('2011-10-18 12:00:00'), ], // Result - 10 minutes ago [ 'JLIB_HTML_DATE_RELATIVE_MINUTES', new Date('2011-10-18 11:50:00'), 'minute', new Date('2011-10-18 12:00:00'), ], // Result - Less than a minute ago [ 'JLIB_HTML_DATE_RELATIVE_LESSTHANAMINUTE', $now1, null, $now2, ], ]; } /** * Tests the HtmlDate::relative method. * * @param string $result The expected test result * @param string $date The date to convert * @param string $unit The optional unit of measurement to return * if the value of the diff is greater than one * @param string $time An optional time to compare to, defaults to now * * @return void * * @since 3.1 * @dataProvider dataTestRelative */ public function testRelative($result, $date, $unit = null, $time = null) { $this->assertEquals($result, HtmlDate::relative($date, $unit, $time)); } }