first commit
This commit is contained in:
61
tests/Feature/TimeIntervals/DashboardTest.php
Normal file
61
tests/Feature/TimeIntervals/DashboardTest.php
Normal file
@@ -0,0 +1,61 @@
|
||||
<?php
|
||||
|
||||
namespace Tests\Feature\TimeIntervals;
|
||||
|
||||
use App\Models\User;
|
||||
use Illuminate\Support\Collection;
|
||||
use Tests\Facades\IntervalFactory;
|
||||
use Tests\Facades\UserFactory;
|
||||
use Tests\TestCase;
|
||||
|
||||
class DashboardTest extends TestCase
|
||||
{
|
||||
private const URI = 'time-intervals/dashboard';
|
||||
|
||||
private const INTERVALS_AMOUNT = 2;
|
||||
|
||||
private Collection $intervals;
|
||||
private User $admin;
|
||||
|
||||
protected function setUp(): void
|
||||
{
|
||||
parent::setUp();
|
||||
|
||||
$this->admin = UserFactory::asAdmin()->withTokens()->create();
|
||||
|
||||
$this->intervals = IntervalFactory::forUser($this->admin)->createMany(self::INTERVALS_AMOUNT);
|
||||
}
|
||||
|
||||
public function test_dashboard(): void
|
||||
{
|
||||
$requestData = [
|
||||
'start_at' => $this->intervals->min('start_at'),
|
||||
'end_at' => $this->intervals->max('start_at')->addHour(),
|
||||
'user_ids' => [$this->admin->id]
|
||||
];
|
||||
|
||||
$response = $this->actingAs($this->admin)->postJson(self::URI, $requestData);
|
||||
|
||||
$response->assertOk();
|
||||
$this->assertCount(
|
||||
$this->intervals->count(),
|
||||
$response->json('userIntervals')[$this->admin->id]['intervals']
|
||||
);
|
||||
|
||||
#TODO change later
|
||||
}
|
||||
|
||||
public function test_unauthorized(): void
|
||||
{
|
||||
$response = $this->getJson(self::URI);
|
||||
|
||||
$response->assertUnauthorized();
|
||||
}
|
||||
|
||||
public function test_without_params(): void
|
||||
{
|
||||
$response = $this->actingAs($this->admin)->getJson(self::URI);
|
||||
|
||||
$response->assertValidationError();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user