p2 project
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.

168 lines
7.0 KiB

2 months ago
<?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\CarbonInterval;
use Carbon\Carbon;
use Carbon\CarbonInterval;
use DateInterval;
use InvalidArgumentException;
use Tests\AbstractTestCase;
class RoundingTest extends AbstractTestCase
{
public function testThrowsExceptionForCompositeInterval()
{
$this->expectExceptionObject(new InvalidArgumentException(
'Rounding is only possible with single unit intervals.',
));
CarbonInterval::days(2)->round('2 hours 50 minutes');
}
public function testFloor()
{
$this->assertSame(21.0, CarbonInterval::days(21)->floorWeeks()->totalDays);
$this->assertSame(21.0, CarbonInterval::days(24)->floorWeeks()->totalDays);
$this->assertSame(21.0, CarbonInterval::days(25)->floorWeeks()->totalDays);
$this->assertSame(21.0, CarbonInterval::days(27)->floorWeeks()->totalDays);
$this->assertSame(28.0, CarbonInterval::days(28)->floorWeeks()->totalDays);
$this->assertSame(1000.0, CarbonInterval::milliseconds(1234)->floor()->totalMilliseconds);
$this->assertSame(1000.0, CarbonInterval::milliseconds(1834)->floor()->totalMilliseconds);
$this->assertSame(20.0, CarbonInterval::days(21)->floor('2 days')->totalDays);
$this->assertSame(18.0, CarbonInterval::days(21)->floor(CarbonInterval::days(6))->totalDays);
$this->assertSame(18.0, CarbonInterval::days(22)->floorUnit('day', 6)->totalDays);
}
public function testRound()
{
$this->assertSame(21.0, CarbonInterval::days(21)->roundWeeks()->totalDays);
$this->assertSame(21.0, CarbonInterval::days(24)->roundWeeks()->totalDays);
$this->assertSame(28.0, CarbonInterval::days(25)->roundWeeks()->totalDays);
$this->assertSame(28.0, CarbonInterval::days(27)->roundWeeks()->totalDays);
$this->assertSame(28.0, CarbonInterval::days(28)->roundWeeks()->totalDays);
$this->assertSame(-7.0, CarbonInterval::make('7 days 23 hours 34 minutes')->invert()->roundWeeks()->totalDays);
$this->assertSame(-7.0, CarbonInterval::make('-7 days 23 hours 34 minutes')->roundWeeks()->totalDays);
$this->assertSame(7.0, CarbonInterval::make('-7 days 23 hours 34 minutes')->invert()->roundWeeks()->totalDays);
$this->assertSame(1000.0, CarbonInterval::milliseconds(1234)->round()->totalMilliseconds);
$this->assertSame(2000.0, CarbonInterval::milliseconds(1834)->round()->totalMilliseconds);
$this->assertSame(20.0, CarbonInterval::days(20)->round('2 days')->totalDays);
$this->assertSame(18.0, CarbonInterval::days(20)->round(CarbonInterval::days(6))->totalDays);
$this->assertSame(22.0, CarbonInterval::days(21)->round('2 days')->totalDays);
$this->assertSame(24.0, CarbonInterval::days(21)->round(CarbonInterval::days(6))->totalDays);
$this->assertSame(22.0, CarbonInterval::days(22)->round('2 days')->totalDays);
$this->assertSame(24.0, CarbonInterval::days(22)->round(CarbonInterval::days(6))->totalDays);
$this->assertSame(24.0, CarbonInterval::days(22)->roundUnit('day', 6)->totalDays);
}
public function testTotalAfterRound()
{
$this->assertSame(19, CarbonInterval::make('43h3m6s')->roundMinutes()->hours);
$this->assertSame(43.05, CarbonInterval::make('43h3m6s')->roundMinutes()->totalHours);
}
public function testWithCascadeFactors()
{
$cascades = CarbonInterval::getCascadeFactors();
CarbonInterval::setCascadeFactors([
'millisecond' => [1000, 'microseconds'],
'second' => [1000, 'milliseconds'],
'minute' => [60, 'seconds'],
'hour' => [60, 'minutes'],
]);
$this->assertVeryClose(
43.166666666666664,
CarbonInterval::make('43h3m6s')
->ceilMinutes(10)
->totalHours,
);
$this->assertSame(
43.0,
CarbonInterval::make('43h3m6s')
->floorMinutes(6)
->totalHours
);
$this->assertSame(
43.05,
CarbonInterval::make('43h3m6s')
->roundMinutes()
->totalHours
);
$this->assertVeryClose(
43.05833333333333,
CarbonInterval::make('43h3m26s')
->roundMinutes(0.5)
->totalHours,
);
$this->assertSame(
-43.05,
CarbonInterval::make('43h3m6s')
->invert()
->roundMinutes(0.5)
->totalHours
);
CarbonInterval::setCascadeFactors($cascades);
}
public function testCeil()
{
$this->assertSame(21.0, CarbonInterval::days(21)->ceilWeeks()->totalDays);
$this->assertSame(28.0, CarbonInterval::days(24)->ceilWeeks()->totalDays);
$this->assertSame(28.0, CarbonInterval::days(25)->ceilWeeks()->totalDays);
$this->assertSame(28.0, CarbonInterval::days(27)->ceilWeeks()->totalDays);
$this->assertSame(28.0, CarbonInterval::days(28)->ceilWeeks()->totalDays);
$this->assertSame(2000.0, CarbonInterval::milliseconds(1234)->ceil()->totalMilliseconds);
$this->assertSame(2000.0, CarbonInterval::milliseconds(1834)->ceil()->totalMilliseconds);
$this->assertSame(20.0, CarbonInterval::days(20)->ceil('2 days')->totalDays);
$this->assertSame(24.0, CarbonInterval::days(20)->ceil(CarbonInterval::days(6))->totalDays);
$this->assertSame(22.0, CarbonInterval::days(21)->ceil('2 days')->totalDays);
$this->assertSame(24.0, CarbonInterval::days(21)->ceil(CarbonInterval::days(6))->totalDays);
$this->assertSame(22.0, CarbonInterval::days(22)->ceil('2 days')->totalDays);
$this->assertSame(24.0, CarbonInterval::days(22)->ceil(CarbonInterval::days(6))->totalDays);
$this->assertSame(24.0, CarbonInterval::days(22)->ceilUnit('day', 6)->totalDays);
}
public function testRoundCarbonInstanceToIntervalInNonDefaultLocale()
{
$interval15m = CarbonInterval::fromString('PT15M')->locale('es');
$this->assertSame(
'19:30',
Carbon::parse('2024-04-15T19:36:12')->floor($interval15m)->format('H:i')
);
$this->assertSame(
'19:45',
Carbon::parse('2024-04-15T19:36:12')->ceil($interval15m)->format('H:i')
);
$this->assertSame('15 minutos', $interval15m->forHumans());
$interval1h = DateInterval::createFromDateString('1 hour');
Carbon::setLocale('zh');
$this->assertSame('1小时', CarbonInterval::make($interval1h)->forHumans());
$this->assertSame(
'19:00',
Carbon::parse('2024-04-15T19:36:12')->floor($interval1h)->format('H:i')
);
$this->assertSame(
'20:00',
Carbon::parse('2024-04-15T19:36:12')->ceil($interval1h)->format('H:i')
);
}
}