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 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333
|
<?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\CarbonInterval;
use DateTimeImmutable;
use Tests\AbstractTestCase;
class SubTest extends AbstractTestCase
{
public function testSubMethod()
{
$this->assertSame(1973, Carbon::createFromDate(1975)->sub(2, 'year')->year);
$this->assertSame(1973, Carbon::createFromDate(1975)->sub('year', 2)->year);
$this->assertSame(1973, Carbon::createFromDate(1975)->sub('2 years')->year);
$lastNegated = null;
$date = Carbon::createFromDate(1975)->sub(
function (DateTimeImmutable $date, bool $negated = false) use (&$lastNegated): DateTimeImmutable {
$lastNegated = $negated;
return new DateTimeImmutable($date->format('Y-m-d H:i:s').' - 2 years');
}
);
$this->assertInstanceOf(Carbon::class, $date);
$this->assertSame(1973, $date->year);
$this->assertTrue($lastNegated);
$this->assertSame(1973, Carbon::createFromDate(1975)->subtract(2, 'year')->year);
$this->assertSame(1973, Carbon::createFromDate(1975)->subtract('year', 2)->year);
$this->assertSame(1973, Carbon::createFromDate(1975)->subtract('2 years')->year);
$lastNegated = null;
$this->assertSame(1973, Carbon::createFromDate(1975)->subtract(
function (DateTimeImmutable $date, bool $negated = false) use (&$lastNegated): DateTimeImmutable {
$lastNegated = $negated;
return new DateTimeImmutable($date->format('Y-m-d H:i:s').' - 2 years');
}
)->year);
$this->assertTrue($lastNegated);
/** @var CarbonInterval $interval */
$interval = include __DIR__.'/../Fixtures/dynamicInterval.php';
$originalDate = Carbon::parse('2020-06-08');
$date = $originalDate->sub($interval);
$this->assertInstanceOf(Carbon::class, $date);
$this->assertSame('2020-05-31', $date->format('Y-m-d'));
$this->assertNotSame($originalDate, $date);
$date = Carbon::parse('2020-07-16')->subtract($interval);
$this->assertInstanceOf(Carbon::class, $date);
$this->assertSame('2020-06-30', $date->format('Y-m-d'));
}
public function testSubYearsPositive()
{
$this->assertSame(1974, Carbon::createFromDate(1975)->subYears(1)->year);
}
public function testSubYearsZero()
{
$this->assertSame(1975, Carbon::createFromDate(1975)->subYears(0)->year);
}
public function testSubYearsNegative()
{
$this->assertSame(1976, Carbon::createFromDate(1975)->subYears(-1)->year);
}
public function testSubYear()
{
$this->assertSame(1974, Carbon::createFromDate(1975)->subYear()->year);
$this->assertSame(1973, Carbon::createFromDate(1975)->sub(2, 'year')->year);
$this->assertSame(1973, Carbon::createFromDate(1975)->sub(2, 'years')->year);
$this->assertSame(1973, Carbon::createFromDate(1975)->sub(CarbonInterval::years(2))->year);
}
public function testSubMonthsPositive()
{
$this->assertSame(12, Carbon::createFromDate(1975, 1, 1)->subMonths(1)->month);
}
public function testSubMonthsZero()
{
$this->assertSame(1, Carbon::createFromDate(1975, 1, 1)->subMonths(0)->month);
}
public function testSubMonthsNegative()
{
$this->assertSame(2, Carbon::createFromDate(1975, 1, 1)->subMonths(-1)->month);
}
public function testSubMonth()
{
$this->assertSame(12, Carbon::createFromDate(1975, 1, 1)->subMonth()->month);
}
public function testSubDaysPositive()
{
$this->assertSame(30, Carbon::createFromDate(1975, 5, 1)->subDays(1)->day);
}
public function testSubDaysZero()
{
$this->assertSame(1, Carbon::createFromDate(1975, 5, 1)->subDays(0)->day);
}
public function testSubDaysNegative()
{
$this->assertSame(2, Carbon::createFromDate(1975, 5, 1)->subDays(-1)->day);
}
public function testSubDay()
{
$this->assertSame(30, Carbon::createFromDate(1975, 5, 1)->subDay()->day);
}
public function testSubWeekdaysPositive()
{
$this->assertSame(22, Carbon::createFromDate(2012, 1, 4)->subWeekdays(9)->day);
}
public function testSubWeekdaysZero()
{
$this->assertSame(4, Carbon::createFromDate(2012, 1, 4)->subWeekdays(0)->day);
}
public function testSubWeekdaysNegative()
{
$this->assertSame(13, Carbon::createFromDate(2012, 1, 31)->subWeekdays(-9)->day);
}
public function testSubWeekday()
{
$this->assertSame(6, Carbon::createFromDate(2012, 1, 9)->subWeekday()->day);
}
public function testSubWeekdayDuringWeekend()
{
$this->assertSame(6, Carbon::createFromDate(2012, 1, 8)->subWeekday()->day);
}
public function testSubWeeksPositive()
{
$this->assertSame(14, Carbon::createFromDate(1975, 5, 21)->subWeeks(1)->day);
}
public function testSubWeeksZero()
{
$this->assertSame(21, Carbon::createFromDate(1975, 5, 21)->subWeeks(0)->day);
}
public function testSubWeeksNegative()
{
$this->assertSame(28, Carbon::createFromDate(1975, 5, 21)->subWeeks(-1)->day);
}
public function testSubWeek()
{
$this->assertSame(14, Carbon::createFromDate(1975, 5, 21)->subWeek()->day);
}
public function testSubHoursPositive()
{
$this->assertSame(23, Carbon::createFromTime(0)->subHours(1)->hour);
}
public function testSubHoursZero()
{
$this->assertSame(0, Carbon::createFromTime(0)->subHours(0)->hour);
}
public function testSubHoursNegative()
{
$this->assertSame(1, Carbon::createFromTime(0)->subHours(-1)->hour);
}
public function testSubHour()
{
$this->assertSame(23, Carbon::createFromTime(0)->subHour()->hour);
}
public function testSubMinutesPositive()
{
$this->assertSame(59, Carbon::createFromTime(0, 0)->subMinutes(1)->minute);
}
public function testSubMinutesZero()
{
$this->assertSame(0, Carbon::createFromTime(0, 0)->subMinutes(0)->minute);
}
public function testSubMinutesNegative()
{
$this->assertSame(1, Carbon::createFromTime(0, 0)->subMinutes(-1)->minute);
}
public function testSubMinute()
{
$this->assertSame(59, Carbon::createFromTime(0, 0)->subMinute()->minute);
}
public function testSubSecondsPositive()
{
$this->assertSame(59, Carbon::createFromTime(0, 0, 0)->subSeconds(1)->second);
}
public function testSubSecondsZero()
{
$this->assertSame(0, Carbon::createFromTime(0, 0, 0)->subSeconds(0)->second);
}
public function testSubSecondsNegative()
{
$this->assertSame(1, Carbon::createFromTime(0, 0, 0)->subSeconds(-1)->second);
}
public function testSubSecond()
{
$this->assertSame(59, Carbon::createFromTime(0, 0, 0)->subSecond()->second);
}
public function testSubMillisecondsPositive()
{
$this->assertSame(999, Carbon::createFromTime(0, 0, 0)->subMilliseconds(1)->millisecond);
}
public function testSubMillisecondsZero()
{
$this->assertSame(100, Carbon::createFromTime(0, 0, 0.1)->subMilliseconds(0)->millisecond);
}
public function testSubMillisecondsNegative()
{
$this->assertSame(1, Carbon::createFromTime(0, 0, 0)->subMilliseconds(-1)->millisecond);
$this->assertSame(101, Carbon::createFromTime(0, 0, 0.1)->subMilliseconds(-1)->millisecond);
}
public function testSubMillisecond()
{
$this->assertSame(99, Carbon::createFromTime(0, 0, 0.1)->subMillisecond()->millisecond);
}
public function testSubMicrosecondsPositive()
{
$this->assertSame(999999, Carbon::createFromTime(0, 0, 0)->subMicroseconds(1)->microsecond);
}
public function testSubMicrosecondsZero()
{
$this->assertSame(100000, Carbon::createFromTime(0, 0, 0.1)->subMicroseconds(0)->microsecond);
}
public function testSubMicrosecondsNegative()
{
$this->assertSame(1, Carbon::createFromTime(0, 0, 0)->subMicroseconds(-1)->microsecond);
$this->assertSame(100001, Carbon::createFromTime(0, 0, 0.1)->subMicroseconds(-1)->microsecond);
}
public function testSubMicrosecond()
{
$this->assertSame(99999, Carbon::createFromTime(0, 0, 0.1)->subMicrosecond()->microsecond);
}
/**
* Test non plural methods with non default args.
*/
public function testSubYearPassingArg()
{
/** @var mixed $date */
$date = Carbon::createFromDate(1975);
$this->assertSame(1973, $date->subYear(2)->year);
}
public function testSubMonthPassingArg()
{
/** @var mixed $date */
$date = Carbon::createFromDate(1975, 5, 1);
$this->assertSame(3, $date->subMonth(2)->month);
}
public function testSubMonthNoOverflowPassingArg()
{
/** @var mixed $date */
$date = Carbon::createFromDate(2011, 4, 30);
$date = $date->subMonthNoOverflow(2);
$this->assertSame(2, $date->month);
$this->assertSame(28, $date->day);
}
public function testSubDayPassingArg()
{
/** @var mixed $date */
$date = Carbon::createFromDate(1975, 5, 10);
$this->assertSame(8, $date->subDay(2)->day);
}
public function testSubHourPassingArg()
{
/** @var mixed $date */
$date = Carbon::createFromTime(0);
$this->assertSame(22, $date->subHour(2)->hour);
}
public function testSubMinutePassingArg()
{
/** @var mixed $date */
$date = Carbon::createFromTime(0);
$this->assertSame(58, $date->subMinute(2)->minute);
}
public function testSubSecondPassingArg()
{
/** @var mixed $date */
$date = Carbon::createFromTime(0);
$this->assertSame(58, $date->subSecond(2)->second);
}
}
|