#19 - year periods

This commit is contained in:
Adrian Hopek
2022-01-19 10:42:04 +01:00
parent 91bd46cc36
commit 7826185339
7 changed files with 232 additions and 15 deletions

View File

@@ -0,0 +1,105 @@
<?php
declare(strict_types=1);
namespace Tests\Unit;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Illuminate\Support\Carbon;
use Tests\TestCase;
use Toby\Jobs\CheckYearPeriod;
use Toby\Models\YearPeriod;
class CheckYearPeriodTest extends TestCase
{
use RefreshDatabase;
public function testYearPeriodsAreCreatedWhenDontExist(): void
{
$now = Carbon::now();
Carbon::setTestNow($now);
CheckYearPeriod::dispatchSync();
$this->assertDatabaseCount("year_periods", 2);
$this->assertDatabaseHas("year_periods", [
"year" => $now->year,
]);
$this->assertDatabaseHas("year_periods", [
"year" => $now->year + 1,
]);
}
public function testCurrentYearPeriodIsCreatedWhenDoesntExist(): void
{
$now = Carbon::now();
Carbon::setTestNow($now);
$this->assertDatabaseMissing("year_periods", [
"year" => $now->year,
]);
CheckYearPeriod::dispatchSync();
$this->assertDatabaseHas("year_periods", [
"year" => $now->year,
]);
}
public function testNextYearPeriodIsCreatedWhenDoesntExist(): void
{
$now = Carbon::now();
Carbon::setTestNow($now);
YearPeriod::factory([
"year" => $now->year,
]);
$this->assertDatabaseMissing("year_periods", [
"year" => $now->year + 1,
]);
CheckYearPeriod::dispatchSync();
$this->assertDatabaseHas("year_periods", [
"year" => $now->year + 1,
]);
}
public function testYearPeriodsAreNotCreatedWhenExists(): void
{
$now = Carbon::now();
Carbon::setTestNow($now);
YearPeriod::factory([
"year" => $now->year,
])->create();
YearPeriod::factory([
"year" => $now->year + 1,
])->create();
$this->assertDatabaseCount("year_periods", 2);
CheckYearPeriod::dispatchSync();
$this->assertDatabaseCount("year_periods", 2);
}
public function testYearPeriodsAreNotDuplicatedWhenJobCalledMultipleTimes(): void
{
$now = Carbon::now();
Carbon::setTestNow($now);
CheckYearPeriod::dispatchSync();
$this->assertDatabaseCount("year_periods", 2);
CheckYearPeriod::dispatchSync();
CheckYearPeriod::dispatchSync();
CheckYearPeriod::dispatchSync();
$this->assertDatabaseCount("year_periods", 2);
}
}

View File

@@ -1,15 +0,0 @@
<?php
declare(strict_types=1);
namespace Tests\Unit;
use PHPUnit\Framework\TestCase;
class ExampleTest extends TestCase
{
public function testExample(): void
{
$this->assertTrue(true);
}
}