123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163 |
- <?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\CarbonImmutable;
- use Carbon\CarbonImmutable as Carbon;
- use Tests\AbstractTestCase;
- class FluidSettersTest extends AbstractTestCase
- {
- public function testFluidYearSetter()
- {
- $d = Carbon::now();
- $d2 = $d->year(1995);
- $this->assertInstanceOfCarbon($d2);
- $this->assertInstanceOf(Carbon::class, $d2);
- $this->assertSame($this->immutableNow->year, $d->year);
- $this->assertSame(1995, $d2->year);
- }
- public function testFluidMonthSetter()
- {
- $d = Carbon::now();
- $d2 = $d->month(3);
- $this->assertInstanceOfCarbon($d2);
- $this->assertInstanceOf(Carbon::class, $d2);
- $this->assertSame($this->immutableNow->month, $d->month);
- $this->assertSame(3, $d2->month);
- }
- public function testFluidMonthSetterWithWrap()
- {
- $d = Carbon::createFromDate(2012, 8, 21);
- $d2 = $d->month(13);
- $this->assertInstanceOfCarbon($d2);
- $this->assertInstanceOf(Carbon::class, $d2);
- $this->assertSame(8, $d->month);
- $this->assertSame(1, $d2->month);
- }
- public function testFluidDaySetter()
- {
- $d = Carbon::now();
- $d2 = $d->day(2);
- $this->assertInstanceOfCarbon($d2);
- $this->assertInstanceOf(Carbon::class, $d2);
- $this->assertSame($this->immutableNow->day, $d->day);
- $this->assertSame(2, $d2->day);
- }
- public function testFluidDaySetterWithWrap()
- {
- $d = Carbon::createFromDate(2000, 1, 3);
- $d2 = $d->day(32);
- $this->assertInstanceOfCarbon($d2);
- $this->assertInstanceOf(Carbon::class, $d2);
- $this->assertSame(3, $d->day);
- $this->assertSame(1, $d2->day);
- }
- public function testFluidSetDate()
- {
- $d = Carbon::createFromDate(2000, 1, 1);
- $d2 = $d->setDate(1995, 13, 32);
- $this->assertInstanceOfCarbon($d2);
- $this->assertInstanceOf(Carbon::class, $d2);
- $this->assertCarbon($d, 2000, 1, 1);
- $this->assertCarbon($d2, 1996, 2, 1);
- }
- public function testFluidHourSetter()
- {
- $d = Carbon::now();
- $d2 = $d->hour(2);
- $this->assertInstanceOfCarbon($d2);
- $this->assertInstanceOf(Carbon::class, $d2);
- $this->assertSame($this->immutableNow->hour, $d->hour);
- $this->assertSame(2, $d2->hour);
- }
- public function testFluidHourSetterWithWrap()
- {
- $d = Carbon::now();
- $d2 = $d->hour(25);
- $this->assertInstanceOfCarbon($d2);
- $this->assertInstanceOf(Carbon::class, $d2);
- $this->assertSame($this->immutableNow->hour, $d->hour);
- $this->assertSame(1, $d2->hour);
- }
- public function testFluidMinuteSetter()
- {
- $d = Carbon::now();
- $d2 = $d->minute(2);
- $this->assertInstanceOfCarbon($d2);
- $this->assertInstanceOf(Carbon::class, $d2);
- $this->assertSame($this->immutableNow->minute, $d->minute);
- $this->assertSame(2, $d2->minute);
- }
- public function testFluidMinuteSetterWithWrap()
- {
- $d = Carbon::now();
- $d2 = $d->minute(61);
- $this->assertInstanceOfCarbon($d2);
- $this->assertInstanceOf(Carbon::class, $d2);
- $this->assertSame($this->immutableNow->minute, $d->minute);
- $this->assertSame(1, $d2->minute);
- }
- public function testFluidSecondSetter()
- {
- $d = Carbon::now();
- $d2 = $d->second(2);
- $this->assertInstanceOfCarbon($d2);
- $this->assertInstanceOf(Carbon::class, $d2);
- $this->assertSame($this->immutableNow->second, $d->second);
- $this->assertSame(2, $d2->second);
- }
- public function testFluidSecondSetterWithWrap()
- {
- $d = Carbon::now();
- $d2 = $d->second(62);
- $this->assertInstanceOfCarbon($d2);
- $this->assertInstanceOf(Carbon::class, $d2);
- $this->assertSame($this->immutableNow->second, $d->second);
- $this->assertSame(2, $d2->second);
- }
- public function testFluidSetTime()
- {
- $d = Carbon::createFromDate(2000, 1, 1);
- $this->assertInstanceOfCarbon($d2 = $d->setTime(25, 61, 61));
- $this->assertCarbon($d2, 2000, 1, 2, 2, 2, 1);
- }
- public function testFluidTimestampSetter()
- {
- $d = Carbon::now();
- $this->assertInstanceOfCarbon($d2 = $d->timestamp(10));
- $this->assertSame(10, $d2->timestamp);
- $this->assertInstanceOfCarbon($d2 = $d->timestamp(1600887164.88952298));
- $this->assertSame('2020-09-23 14:52:44.889523', $d2->format('Y-m-d H:i:s.u'));
- $this->assertInstanceOfCarbon($d2 = $d->timestamp('0.88951247 1600887164'));
- $this->assertSame('2020-09-23 14:52:44.889512', $d2->format('Y-m-d H:i:s.u'));
- $this->assertInstanceOfCarbon($d2 = $d->timestamp('0.88951247/1600887164/12.56'));
- $this->assertSame('2020-09-23 14:52:57.449512', $d2->format('Y-m-d H:i:s.u'));
- }
- }
|