Files
cattr/tests/Feature/TimeIntervals/DashboardTest.php
Noor E Ilahi 7ccf44f7da first commit
2026-01-09 12:54:53 +05:30

62 lines
1.5 KiB
PHP

<?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();
}
}