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.

134 lines
3.8 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\Carbon;
use Carbon\Carbon;
use Tests\AbstractTestCase;
class FluidSettersTest extends AbstractTestCase
{
public function testFluidYearSetter()
{
$d = Carbon::now();
$this->assertInstanceOfCarbon($d->year(1995));
$this->assertSame(1995, $d->year);
}
public function testFluidMonthSetter()
{
$d = Carbon::now();
$this->assertInstanceOfCarbon($d->month(3));
$this->assertSame(3, $d->month);
// Can go to september 1 to 30 (but if it's the 31, it will overflow)
$this->assertInstanceOfCarbon($d->startOfMonth()->setMonth(9));
$this->assertSame(9, $d->month);
$this->assertInstanceOfCarbon($d->months(3));
$this->assertSame(3, $d->month);
$this->assertInstanceOfCarbon($d->setMonths(9));
$this->assertSame(9, $d->month);
}
public function testFluidMonthSetterWithWrap()
{
$d = Carbon::createFromDate(2012, 8, 21);
$this->assertInstanceOfCarbon($d->month(13));
$this->assertSame(1, $d->month);
}
public function testFluidDaySetter()
{
$d = Carbon::now();
$this->assertInstanceOfCarbon($d->day(2));
$this->assertSame(2, $d->day);
}
public function testFluidDaySetterWithWrap()
{
$d = Carbon::createFromDate(2000, 1, 1);
$this->assertInstanceOfCarbon($d->day(32));
$this->assertSame(1, $d->day);
}
public function testFluidSetDate()
{
$d = Carbon::createFromDate(2000, 1, 1);
$this->assertInstanceOfCarbon($d->setDate(1995, 13, 32));
$this->assertCarbon($d, 1996, 2, 1);
}
public function testFluidHourSetter()
{
$d = Carbon::now();
$this->assertInstanceOfCarbon($d->hour(2));
$this->assertSame(2, $d->hour);
}
public function testFluidHourSetterWithWrap()
{
$d = Carbon::now();
$this->assertInstanceOfCarbon($d->hour(25));
$this->assertSame(1, $d->hour);
}
public function testFluidMinuteSetter()
{
$d = Carbon::now();
$this->assertInstanceOfCarbon($d->minute(2));
$this->assertSame(2, $d->minute);
}
public function testFluidMinuteSetterWithWrap()
{
$d = Carbon::now();
$this->assertInstanceOfCarbon($d->minute(61));
$this->assertSame(1, $d->minute);
}
public function testFluidSecondSetter()
{
$d = Carbon::now();
$this->assertInstanceOfCarbon($d->second(2));
$this->assertSame(2, $d->second);
}
public function testFluidSecondSetterWithWrap()
{
$d = Carbon::now();
$this->assertInstanceOfCarbon($d->second(62));
$this->assertSame(2, $d->second);
}
public function testFluidSetTime()
{
$d = Carbon::createFromDate(2000, 1, 1);
$this->assertInstanceOfCarbon($d->setTime(25, 61, 61));
$this->assertCarbon($d, 2000, 1, 2, 2, 2, 1);
}
public function testFluidTimestampSetter()
{
$d = Carbon::now();
$this->assertInstanceOfCarbon($d->timestamp(10));
$this->assertSame(10, $d->timestamp);
$this->assertInstanceOfCarbon($d->timestamp(1600887164.88952298));
$this->assertSame('2020-09-23 14:52:44.889523', $d->format('Y-m-d H:i:s.u'));
$this->assertInstanceOfCarbon($d->timestamp('0.88951247 1600887164'));
$this->assertSame('2020-09-23 14:52:44.889512', $d->format('Y-m-d H:i:s.u'));
$this->assertInstanceOfCarbon($d->timestamp('0.88951247/1600887164/12.56'));
$this->assertSame('2020-09-23 14:52:57.449512', $d->format('Y-m-d H:i:s.u'));
}
}