You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
105 lines
3.5 KiB
105 lines
3.5 KiB
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* This file is part of the Carbon package.
|
|
*
|
|
* (c) Brian Nesbitt <brian@nesbot.com>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Tests\Unit;
|
|
|
|
use Carbon\CarbonImmutable;
|
|
use Carbon\CarbonInterval;
|
|
use Carbon\CarbonPeriodImmutable;
|
|
use Carbon\Unit;
|
|
use Carbon\WeekDay;
|
|
use PHPUnit\Framework\Attributes\TestWith;
|
|
use Tests\AbstractTestCase;
|
|
|
|
class UnitTest extends AbstractTestCase
|
|
{
|
|
public static function setUpBeforeClass(): void
|
|
{
|
|
parent::setUpBeforeClass();
|
|
|
|
CarbonImmutable::setLocale('en');
|
|
}
|
|
|
|
#[TestWith([Unit::Microsecond, 'microseconds'])]
|
|
#[TestWith([Unit::Millisecond, 'millisecond'])]
|
|
#[TestWith([Unit::Second, 'second'])]
|
|
#[TestWith([Unit::Minute, 'minute'])]
|
|
#[TestWith([Unit::Hour, 'hours'])]
|
|
#[TestWith([Unit::Day, 'day'])]
|
|
#[TestWith([Unit::Week, 'WEEK'])]
|
|
#[TestWith([Unit::Month, 'Month'])]
|
|
#[TestWith([Unit::Quarter, 'quarters'])]
|
|
#[TestWith([Unit::Year, 'year'])]
|
|
#[TestWith([Unit::Decade, 'decade'])]
|
|
#[TestWith([Unit::Century, 'centuries'])]
|
|
#[TestWith([Unit::Millennium, 'millennia'])]
|
|
#[TestWith([Unit::Day, 'day'])]
|
|
#[TestWith([Unit::Day, 'day'])]
|
|
#[TestWith([Unit::Day, 'jour', 'fr_BE'])]
|
|
#[TestWith([Unit::Day, 'JOUR', 'fr'])]
|
|
#[TestWith([Unit::Month, 'Monaten', 'de'])]
|
|
#[TestWith([Unit::Month, 'monaten', 'de'])]
|
|
public function testFromName(Unit $unit, string $name, ?string $locale = null): void
|
|
{
|
|
$this->assertSame($unit, Unit::fromName($name, $locale));
|
|
}
|
|
|
|
public function testSingular(): void
|
|
{
|
|
$this->assertSame('day', Unit::Day->singular());
|
|
$this->assertSame('century', Unit::Century->singular());
|
|
$this->assertSame('jour', Unit::Day->singular('fr'));
|
|
$this->assertSame('Tag', Unit::Day->singular('de'));
|
|
$this->assertSame('siècle', Unit::Century->singular('fr'));
|
|
}
|
|
|
|
public function testPlural(): void
|
|
{
|
|
$this->assertSame('days', Unit::Day->plural());
|
|
$this->assertSame('centuries', Unit::Century->plural());
|
|
$this->assertSame('jours', Unit::Day->plural('fr'));
|
|
$this->assertSame('Tage', Unit::Day->plural('de'));
|
|
$this->assertSame('siècles', Unit::Century->plural('fr'));
|
|
}
|
|
|
|
public function testInterval(): void
|
|
{
|
|
$interval = Unit::Day->interval(2);
|
|
$this->assertInstanceOf(CarbonInterval::class, $interval);
|
|
$this->assertSame(['days' => 2], array_filter($interval->toArray()));
|
|
}
|
|
|
|
public function testLocale(): void
|
|
{
|
|
$interval = Unit::Day->locale('fr');
|
|
$this->assertInstanceOf(CarbonInterval::class, $interval);
|
|
$this->assertSame(['days' => 1], array_filter($interval->toArray()));
|
|
$this->assertSame('1 jour', $interval->forHumans());
|
|
}
|
|
|
|
public function testToPeriod(): void
|
|
{
|
|
CarbonImmutable::setTestNow('2023-12-09 11:47:53');
|
|
$days = Unit::Day->toPeriod(WeekDay::Monday, WeekDay::Friday);
|
|
$this->assertInstanceOf(CarbonPeriodImmutable::class, $days);
|
|
$this->assertSame('Every 1 day from 2023-12-11 to 2023-12-15', (string) $days);
|
|
}
|
|
|
|
public function testStepBy(): void
|
|
{
|
|
CarbonImmutable::setTestNow('2023-12-09 11:47:53');
|
|
$days = Unit::Week->stepBy(Unit::Day);
|
|
$this->assertInstanceOf(CarbonPeriodImmutable::class, $days);
|
|
$this->assertSame('Every 1 day from 2023-12-09 11:47:53 to 2023-12-16 11:47:53', (string) $days);
|
|
}
|
|
}
|
|
|