mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-06-06 20:37:32 +00:00
255 lines
9.6 KiB
PHP
255 lines
9.6 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Tests\Unit\Service;
|
|
|
|
use App\Enums\Weekday;
|
|
use App\Models\Organization;
|
|
use App\Models\TimeEntry;
|
|
use App\Models\User;
|
|
use App\Service\DashboardService;
|
|
use Carbon\Carbon;
|
|
use Illuminate\Foundation\Testing\RefreshDatabase;
|
|
use Tests\TestCase;
|
|
|
|
class DashboardServiceTest extends TestCase
|
|
{
|
|
use RefreshDatabase;
|
|
|
|
protected DashboardService $dashboardService;
|
|
|
|
public function setUp(): void
|
|
{
|
|
parent::setUp();
|
|
$this->dashboardService = app(DashboardService::class);
|
|
}
|
|
|
|
public function test_daily_tracked_hours_returns_correct_values(): void
|
|
{
|
|
// Arrange
|
|
$this->travelTo(Carbon::create(2024, 1, 1, 12, 0, 0, 'Europe/Vienna'));
|
|
$organization = Organization::factory()->create();
|
|
$user = User::factory()->create([
|
|
'timezone' => 'Europe/Vienna',
|
|
]);
|
|
$user->organizations()->attach($organization);
|
|
$timeEntry1 = TimeEntry::factory()->forUser($user)->forOrganization($organization)->create([
|
|
// Note: The start time shifts in timezone Europe/Vienna to the next day
|
|
'start' => Carbon::create(2023, 12, 30, 23, 0, 0, 'UTC'),
|
|
'end' => Carbon::create(2023, 12, 30, 23, 0, 40, 'UTC'),
|
|
]);
|
|
$timeEntry2 = TimeEntry::factory()->forUser($user)->forOrganization($organization)->create([
|
|
// Note: The start time NOT shifts in timezone Europe/Vienna to the next day
|
|
'start' => Carbon::create(2023, 12, 30, 22, 59, 59, 'UTC'),
|
|
'end' => Carbon::create(2023, 12, 30, 23, 0, 39, 'UTC'),
|
|
]);
|
|
|
|
// Act
|
|
$result = $this->dashboardService->getDailyTrackedHours($user, $organization, 5);
|
|
|
|
// Assert
|
|
$this->assertSame([
|
|
[
|
|
'date' => '2023-12-28',
|
|
'duration' => 0,
|
|
],
|
|
[
|
|
'date' => '2023-12-29',
|
|
'duration' => 0,
|
|
],
|
|
[
|
|
'date' => '2023-12-30',
|
|
'duration' => 40,
|
|
],
|
|
[
|
|
'date' => '2023-12-31',
|
|
'duration' => 40,
|
|
],
|
|
[
|
|
'date' => '2024-01-01',
|
|
'duration' => 0,
|
|
],
|
|
], $result);
|
|
}
|
|
|
|
public function test_weekly_history_returns_correct_values(): void
|
|
{
|
|
// Arrange
|
|
// Note: Is a Monday
|
|
$this->travelTo(Carbon::create(2024, 1, 1, 12, 0, 0, 'Europe/Vienna'));
|
|
$organization = Organization::factory()->create();
|
|
$user = User::factory()->create([
|
|
'timezone' => 'Europe/Vienna',
|
|
'week_start' => Weekday::Sunday,
|
|
]);
|
|
$user->organizations()->attach($organization);
|
|
// Note: This is a Sunday
|
|
$timeEntry1 = TimeEntry::factory()->forUser($user)->forOrganization($organization)->create([
|
|
// Note: The start time shifts in timezone Europe/Vienna to the next day
|
|
'start' => Carbon::create(2023, 12, 30, 23, 0, 0, 'UTC'),
|
|
'end' => Carbon::create(2023, 12, 30, 23, 0, 40, 'UTC'),
|
|
]);
|
|
// Note: This is a Saturday
|
|
$timeEntry2 = TimeEntry::factory()->forUser($user)->forOrganization($organization)->create([
|
|
// Note: The start time NOT shifts in timezone Europe/Vienna to the next day
|
|
'start' => Carbon::create(2023, 12, 30, 22, 59, 59, 'UTC'),
|
|
'end' => Carbon::create(2023, 12, 30, 23, 0, 39, 'UTC'),
|
|
]);
|
|
|
|
// Act
|
|
$result = $this->dashboardService->getWeeklyHistory($user, $organization);
|
|
|
|
// Assert
|
|
$this->assertSame([
|
|
[
|
|
'date' => '2023-12-31',
|
|
'duration' => 40,
|
|
],
|
|
[
|
|
'date' => '2024-01-01',
|
|
'duration' => 0,
|
|
],
|
|
[
|
|
'date' => '2024-01-02',
|
|
'duration' => 0,
|
|
],
|
|
[
|
|
'date' => '2024-01-03',
|
|
'duration' => 0,
|
|
],
|
|
[
|
|
'date' => '2024-01-04',
|
|
'duration' => 0,
|
|
],
|
|
[
|
|
'date' => '2024-01-05',
|
|
'duration' => 0,
|
|
],
|
|
[
|
|
'date' => '2024-01-06',
|
|
'duration' => 0,
|
|
],
|
|
], $result);
|
|
}
|
|
|
|
public function test_total_weekly_time_returns_correct_value(): void
|
|
{
|
|
// Arrange
|
|
// Note: Is a Monday
|
|
$this->travelTo(Carbon::create(2024, 1, 1, 12, 0, 0, 'Europe/Vienna'));
|
|
$organization = Organization::factory()->create();
|
|
$user = User::factory()->create([
|
|
'timezone' => 'Europe/Vienna',
|
|
'week_start' => Weekday::Sunday,
|
|
]);
|
|
$user->organizations()->attach($organization);
|
|
// Note: This is a Sunday
|
|
$timeEntry1 = TimeEntry::factory()->forUser($user)->forOrganization($organization)->create([
|
|
// Note: The start time shifts in timezone Europe/Vienna to the next day
|
|
'start' => Carbon::create(2023, 12, 30, 23, 0, 0, 'UTC'),
|
|
'end' => Carbon::create(2023, 12, 30, 23, 0, 40, 'UTC'),
|
|
]);
|
|
// Note: This is a Saturday
|
|
$timeEntry2 = TimeEntry::factory()->forUser($user)->forOrganization($organization)->create([
|
|
// Note: The start time NOT shifts in timezone Europe/Vienna to the next day
|
|
'start' => Carbon::create(2023, 12, 30, 22, 59, 59, 'UTC'),
|
|
'end' => Carbon::create(2023, 12, 30, 23, 0, 39, 'UTC'),
|
|
]);
|
|
|
|
// Act
|
|
$result = $this->dashboardService->totalWeeklyTime($user, $organization);
|
|
|
|
// Assert
|
|
$this->assertSame(40, $result);
|
|
}
|
|
|
|
public function test_total_weekly_billable_time_returns_correct_value(): void
|
|
{
|
|
// Arrange
|
|
// Note: Is a Monday
|
|
$this->travelTo(Carbon::create(2024, 1, 1, 12, 0, 0, 'Europe/Vienna'));
|
|
$organization = Organization::factory()->create();
|
|
$user = User::factory()->create([
|
|
'timezone' => 'Europe/Vienna',
|
|
'week_start' => Weekday::Sunday,
|
|
]);
|
|
$user->organizations()->attach($organization);
|
|
// Note: This is a Sunday
|
|
$timeEntry1 = TimeEntry::factory()->forUser($user)->forOrganization($organization)->create([
|
|
// Note: The start time shifts in timezone Europe/Vienna to the next day
|
|
'billable' => true,
|
|
'start' => Carbon::create(2023, 12, 30, 23, 0, 0, 'UTC'),
|
|
'end' => Carbon::create(2023, 12, 30, 23, 0, 40, 'UTC'),
|
|
]);
|
|
// Note: This is a Sunday (non-billable)
|
|
$timeEntry1 = TimeEntry::factory()->forUser($user)->forOrganization($organization)->create([
|
|
// Note: The start time shifts in timezone Europe/Vienna to the next day
|
|
'billable' => false,
|
|
'start' => Carbon::create(2023, 12, 30, 23, 0, 40, 'UTC'),
|
|
'end' => Carbon::create(2023, 12, 30, 23, 0, 59, 'UTC'),
|
|
]);
|
|
// Note: This is a Saturday
|
|
$timeEntry2 = TimeEntry::factory()->forUser($user)->forOrganization($organization)->create([
|
|
// Note: The start time NOT shifts in timezone Europe/Vienna to the next day
|
|
'billable' => true,
|
|
'start' => Carbon::create(2023, 12, 30, 22, 59, 59, 'UTC'),
|
|
'end' => Carbon::create(2023, 12, 30, 23, 0, 39, 'UTC'),
|
|
]);
|
|
|
|
// Act
|
|
$result = $this->dashboardService->totalWeeklyBillableTime($user, $organization);
|
|
|
|
// Assert
|
|
$this->assertSame(40, $result);
|
|
}
|
|
|
|
public function test_total_weekly_billable_amount_returns_correct_value(): void
|
|
{
|
|
// Arrange
|
|
// Note: Is a Monday
|
|
$this->travelTo(Carbon::create(2024, 1, 1, 12, 0, 0, 'Europe/Vienna'));
|
|
$currency = 'USD';
|
|
$organization = Organization::factory()->create([
|
|
'currency' => $currency,
|
|
]);
|
|
$user = User::factory()->create([
|
|
'timezone' => 'Europe/Vienna',
|
|
'week_start' => Weekday::Sunday,
|
|
]);
|
|
$user->organizations()->attach($organization);
|
|
// Note: This is a Sunday
|
|
$timeEntry1 = TimeEntry::factory()->forUser($user)->forOrganization($organization)->create([
|
|
// Note: The start time shifts in timezone Europe/Vienna to the next day
|
|
'billable' => true,
|
|
'billable_rate' => 50 * 100,
|
|
'start' => Carbon::create(2023, 12, 30, 23, 0, 0, 'UTC'),
|
|
'end' => Carbon::create(2023, 12, 31, 0, 0, 0, 'UTC'),
|
|
]);
|
|
// Note: This is a Sunday (non-billable)
|
|
$timeEntry2 = TimeEntry::factory()->forUser($user)->forOrganization($organization)->create([
|
|
// Note: The start time shifts in timezone Europe/Vienna to the next day
|
|
'billable' => false,
|
|
'start' => Carbon::create(2023, 12, 30, 23, 0, 40, 'UTC'),
|
|
'end' => Carbon::create(2023, 12, 30, 23, 0, 59, 'UTC'),
|
|
]);
|
|
// Note: This is a Saturday
|
|
$timeEntry3 = TimeEntry::factory()->forUser($user)->forOrganization($organization)->create([
|
|
// Note: The start time NOT shifts in timezone Europe/Vienna to the next day
|
|
'billable' => true,
|
|
'billable_rate' => 100 * 100,
|
|
'start' => Carbon::create(2023, 12, 30, 22, 59, 59, 'UTC'),
|
|
'end' => Carbon::create(2023, 12, 30, 23, 0, 39, 'UTC'),
|
|
]);
|
|
|
|
// Act
|
|
$result = $this->dashboardService->totalWeeklyBillableAmount($user, $organization);
|
|
|
|
// Assert
|
|
$this->assertSame([
|
|
'value' => 5000,
|
|
'currency' => $currency,
|
|
], $result);
|
|
}
|
|
}
|