1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141
|
<?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 Carbon\Exceptions\InvalidFormatException;
use DateTimeImmutable;
use DateTimeZone;
use InvalidArgumentException;
use Tests\AbstractTestCase;
class CreateFromTimeTest extends AbstractTestCase
{
public function testCreateWithTestNow()
{
Carbon::setTestNow($testNow = Carbon::create(2011, 1, 1, 12, 13, 14));
$dt = Carbon::create(null, null, null, null, null, null);
$this->assertCarbon($dt, 2011, 1, 1, 12, 13, 14);
$this->assertTrue($testNow->eq($dt));
}
public function testCreateFromDateWithDefaults()
{
$d = Carbon::createFromTime();
$this->assertSame($d->timestamp, Carbon::create(null, null, null, 0, 0, 0)->timestamp);
}
public function testCreateFromDateWithNull()
{
$d = Carbon::createFromTime(null, null, null);
$this->assertSame($d->timestamp, Carbon::create(null, null, null, null, null, null)->timestamp);
}
public function testCreateFromTime()
{
$d = Carbon::createFromTime(23, 5, 21);
$this->assertCarbon($d, Carbon::now()->year, Carbon::now()->month, Carbon::now()->day, 23, 5, 21);
}
public function testCreateFromTimeWithTestNow()
{
Carbon::setTestNow();
$testTime = Carbon::createFromTime(12, 0, 0, 'GMT-25');
$today = Carbon::today('GMT-25')->modify('12:00');
$this->assertSame('12:00 -25:00', $testTime->format('H:i e'));
$this->assertSame($testTime->toIso8601String(), $today->toIso8601String());
$knownDate = Carbon::instance(new DateTimeImmutable('now UTC'));
Carbon::setTestNow($knownDate);
$testTime = Carbon::createFromTime(12, 0, 0, 'GMT-25');
$today = Carbon::today('GMT-25')->modify('12:00');
$this->assertSame('12:00 -25:00', $testTime->format('H:i e'));
$this->assertSame($testTime->toIso8601String(), $today->toIso8601String());
}
public function testCreateFromTimeGreaterThan99()
{
$this->expectExceptionObject(new InvalidArgumentException(
'second must be between 0 and 99, 100 given'
));
Carbon::createFromTime(23, 5, 100);
}
public function testCreateFromTimeWithHour()
{
$d = Carbon::createFromTime(22);
$this->assertSame(22, $d->hour);
$this->assertSame(0, $d->minute);
$this->assertSame(0, $d->second);
}
public function testCreateFromTimeWithMinute()
{
$d = Carbon::createFromTime(null, 5);
$this->assertSame(5, $d->minute);
}
public function testCreateFromTimeWithSecond()
{
$d = Carbon::createFromTime(null, null, 21);
$this->assertSame(21, $d->second);
}
public function testCreateFromTimeWithDateTimeZone()
{
$d = Carbon::createFromTime(12, 0, 0, new DateTimeZone('Europe/London'));
$this->assertCarbon($d, Carbon::now('Europe/London')->year, Carbon::now('Europe/London')->month, Carbon::now('Europe/London')->day, 12, 0, 0);
$this->assertSame('Europe/London', $d->tzName);
}
public function testCreateFromTimeWithTimeZoneString()
{
$d = Carbon::createFromTime(12, 0, 0, 'Europe/London');
$this->assertCarbon($d, Carbon::now('Europe/London')->year, Carbon::now('Europe/London')->month, Carbon::now('Europe/London')->day, 12, 0, 0);
$this->assertSame('Europe/London', $d->tzName);
}
public function testCreateFromTimeWithTimeZoneOnNow()
{
// disable test for now
// because we need Carbon::now() in Carbon::create() to work with given TZ
$test = Carbon::getTestNow();
Carbon::setTestNow();
$tz = 'Etc/GMT+12';
try {
$now = Carbon::now($tz);
} catch (InvalidFormatException $exception) {
if ($exception->getMessage() !== 'Unknown or bad timezone (Etc/GMT+12)') {
throw $exception;
}
$tz = 'GMT+12';
$now = Carbon::now($tz);
}
$dt = Carbon::createFromTime($now->hour, $now->minute, $now->second, $tz);
// re-enable test
Carbon::setTestNow($test);
// tested without microseconds
// because they appear within calls to Carbon
$this->assertSame($now->format('c'), $dt->format('c'));
}
}
|