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 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187
|
<?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 Carbon\Exceptions\InvalidDateException;
use Tests\AbstractTestCase;
class CreateSafeTest extends AbstractTestCase
{
public function testInvalidDateExceptionProperties()
{
$e = new InvalidDateException('day', 'foo');
$this->assertSame('day', $e->getField());
$this->assertSame('foo', $e->getValue());
}
public function testCreateSafeThrowsExceptionForSecondLowerThanZero()
{
$this->expectExceptionObject(new InvalidDateException('second', -1));
Carbon::createSafe(null, null, null, null, null, -1);
}
public function testCreateSafeThrowsExceptionForSecondGreaterThan59()
{
$this->expectExceptionObject(new InvalidDateException('second', 60));
Carbon::createSafe(null, null, null, null, null, 60);
}
public function testCreateSafeThrowsExceptionForMinuteLowerThanZero()
{
$this->expectExceptionObject(new InvalidDateException('minute', -1));
Carbon::createSafe(null, null, null, null, -1);
}
public function testCreateSafeThrowsExceptionForMinuteGreaterThan59()
{
$this->expectExceptionObject(new InvalidDateException('minute', 60));
Carbon::createSafe(null, null, null, null, 60, 25);
}
public function testCreateSafeThrowsExceptionForHourLowerThanZero()
{
$this->expectExceptionObject(new InvalidDateException('hour', -6));
Carbon::createSafe(null, null, null, -6);
}
public function testCreateSafeThrowsExceptionForHourGreaterThan24()
{
$this->expectExceptionObject(new InvalidDateException('hour', 25));
Carbon::createSafe(null, null, null, 25, 16, 15);
}
public function testCreateSafeThrowsExceptionForDayLowerThanZero()
{
$this->expectExceptionObject(new InvalidDateException('day', -5));
Carbon::createSafe(null, null, -5);
}
public function testCreateSafeThrowsExceptionForDayGreaterThan31()
{
$this->expectExceptionObject(new InvalidDateException('day', 32));
Carbon::createSafe(null, null, 32, 17, 16, 15);
}
public function testCreateSafeThrowsExceptionForMonthLowerThanZero()
{
$this->expectExceptionObject(new InvalidDateException('month', -4));
Carbon::createSafe(null, -4);
}
public function testCreateSafeThrowsExceptionForMonthGreaterThan12()
{
$this->expectExceptionObject(new InvalidDateException('month', 13));
Carbon::createSafe(null, 13, 5, 17, 16, 15);
}
public function testCreateSafeThrowsExceptionForYearLowerThanZero()
{
$this->expectExceptionObject(new InvalidDateException('year', -5));
Carbon::createSafe(-5);
}
public function testCreateSafeThrowsExceptionForYearGreaterThan12()
{
$this->expectExceptionObject(new InvalidDateException('year', 10000));
Carbon::createSafe(10000, 12, 5, 17, 16, 15);
}
public function testCreateSafeThrowsExceptionForInvalidDayInShortMonth()
{
$this->expectExceptionObject(new InvalidDateException('day', 31));
// 30 days in April
Carbon::createSafe(2016, 4, 31, 17, 16, 15);
}
public function testCreateSafeThrowsExceptionForInvalidDayForFebruaryInLeapYear()
{
$this->expectExceptionObject(new InvalidDateException('day', 30));
// 29 days in February for a leap year
$this->assertTrue(Carbon::create(2016, 2)->isLeapYear());
Carbon::createSafe(2016, 2, 30, 17, 16, 15);
}
public function testCreateSafePassesForFebruaryInLeapYear()
{
// 29 days in February for a leap year
$this->assertSame(29, Carbon::createSafe(2016, 2, 29, 17, 16, 15)->day);
}
public function testCreateSafeThrowsExceptionForInvalidDayForFebruaryInNonLeapYear()
{
$this->expectExceptionObject(new InvalidDateException('day', 29));
// 28 days in February for a non-leap year
$this->assertFalse(Carbon::create(2015, 2)->isLeapYear());
Carbon::createSafe(2015, 2, 29, 17, 16, 15);
}
public function testCreateSafePassesForInvalidDSTTime()
{
$message = '';
$date = null;
try {
// 1h jumped to 2h because of the DST, so 1h30 is not a safe date in PHP 5.4+
Carbon::createSafe(2014, 3, 30, 1, 30, 0, 'Europe/London');
} catch (InvalidDateException $exception) {
$message = $exception->getMessage();
}
$this->assertStringContainsString('hour : 1 is not a valid value.', $message);
}
public function testCreateSafePassesForValidDSTTime()
{
$this->assertSame(0, Carbon::createSafe(2014, 3, 30, 0, 30, 0, 'Europe/London')->hour);
$this->assertSame(2, Carbon::createSafe(2014, 3, 30, 2, 30, 0, 'Europe/London')->hour);
$this->assertSame(1, Carbon::createSafe(2014, 3, 30, 1, 30, 0, 'UTC')->hour);
}
public function testCreateSafeThrowsExceptionForWithNonIntegerValue()
{
$this->expectExceptionObject(new InvalidDateException('second', 15.1));
Carbon::createSafe(2015, 2, 10, 17, 16, 15.1);
}
public function testCreateSafePassesForFebruaryInNonLeapYear()
{
// 28 days in February for a non-leap year
$this->assertSame(28, Carbon::createSafe(2015, 2, 28, 17, 16, 15)->day);
}
public function testCreateSafePasses()
{
$sd = Carbon::createSafe(2015, 2, 15, 17, 16, 15);
$d = Carbon::create(2015, 2, 15, 17, 16, 15);
$this->assertEquals($d, $sd);
$this->assertCarbon($sd, 2015, 2, 15, 17, 16, 15);
}
}
|