first commit

This commit is contained in:
Noor E Ilahi
2026-01-09 12:54:53 +05:30
commit 7ccf44f7da
1070 changed files with 113036 additions and 0 deletions

View File

@@ -0,0 +1,92 @@
<?php
namespace Tests\Feature\ProjectReport;
use App\Models\TimeInterval;
use App\Models\User;
use Illuminate\Support\Carbon;
use Illuminate\Support\Collection;
use Tests\Facades\IntervalFactory;
use Tests\Facades\ScreenshotFactory;
use Tests\Facades\UserFactory;
use Tests\TestCase;
use Tests\TestResponse;
class ListTest extends TestCase
{
private const URI = 'project-report/list';
private const INTERVALS_AMOUNT = 10;
private User $admin;
private array $pids;
private array $uids;
private Collection $intervals;
private int $duration = 0;
private array $requestData;
private function collectResponseProjects(TestResponse $response): Collection
{
return collect($response->json('projects'));
}
private function collectResponseUsers(TestResponse $response): Collection
{
return $this->collectResponseProjects($response)->pluck('users')->collapse();
}
protected function setUp(): void
{
parent::setUp();
$this->admin = UserFactory::asAdmin()->withTokens()->create();
$this->intervals = IntervalFactory::withRandomRelations()->createMany(self::INTERVALS_AMOUNT);
$this->intervals->each(function (TimeInterval $interval) {
ScreenshotFactory::fake()->forInterval($interval)->create();
$this->uids[] = $interval->user_id;
$this->pids[] = $interval->task->project->id;
$this->duration += Carbon::parse($interval->end_at)->diffInSeconds($interval->start_at);
});
$this->requestData = [
'start_at' => $this->intervals->min('start_at'),
'end_at' => $this->intervals->max('end_at')->addMinute(),
'uids' => $this->uids,
'pids' => $this->pids
];
}
public function test_list(): void
{
$response = $this->actingAs($this->admin)->postJson(self::URI, $this->requestData);
$response->assertOk();
$users = $this->collectResponseUsers($response);
$this->assertEquals($this->duration, $users->sum('tasks_time'));
$this->assertEquals(count($this->uids), $users->count());
//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();
}
}

View File

@@ -0,0 +1,72 @@
<?php
namespace Tests\Feature\ProjectReport;
use App\Models\Task;
use App\Models\User;
use Illuminate\Support\Carbon;
use Illuminate\Support\Collection;
use Tests\Facades\IntervalFactory;
use Tests\Facades\TaskFactory;
use Tests\Facades\UserFactory;
use Tests\TestCase;
class TaskTest extends TestCase
{
private const URI = 'project-report/list/tasks';
private User $admin;
private Collection $intervals;
private int $duration = 0;
private array $requestData;
private Task $task;
protected function setUp(): void
{
parent::setUp();
$this->admin = UserFactory::asAdmin()->withTokens()->create();
$this->task = TaskFactory::forUser($this->admin)->create();
$this->intervals = collect([
IntervalFactory::forTask($this->task)->create(),
IntervalFactory::forTask($this->task)->create(),
IntervalFactory::forTask($this->task)->create(),
]);
$this->requestData = [
'start_at' => $this->intervals->min('start_at'),
'end_at' => $this->intervals->max('end_at')->addMinute(),
'uid' => $this->intervals->first()->user->id
];
$this->duration = $this->intervals->sum(
fn ($interval) => Carbon::parse($interval->end_at)->diffInSeconds($interval->start_at)
);
}
public function test_list_task(): void
{
$response = $this->actingAs($this->admin)->postJson(self::URI . '/' . $this->task->id, $this->requestData);
$response->assertOk();
$response->assertJsonFragment(['duration' => (string)$this->duration]);
}
public function test_unauthorized(): void
{
$response = $this->getJson(self::URI . '/' . $this->task->id);
$response->assertUnauthorized();
}
public function test_without_params(): void
{
$response = $this->actingAs($this->admin)->getJson(self::URI . '/' . $this->task->id);
$response->assertValidationError();
}
}