Files
Verde-Web/tests/Feature/Api/V1/Auth/EmailVerificationTest.php
admin 58a7d3680a feat(backend): hardening sprint — docs, schedulers, validation, email + pickup
1. API docs via dedoc/scramble at /docs/api (scoped to api/v1).
   Linked from the admin sidebar Settings group.

2. Scheduled commands registered in routes/console.php:
   - reports:aggregate (02:00) — daily/weekly/monthly aggregations
   - qr:expire (02:30) — flips past-due allocated/active codes to expired
   - trucks:prune-locations (03:00) — drops history older than retention
     window (default 7 days, config('verde.location_retention_days'))
   All idempotent + withoutOverlapping. --dry flags on qr:expire and
   trucks:prune-locations for safe inspection.

3. Trip double-booking validation: AdminTripController::store rejects
   new trips when the team or truck already has a non-cancelled trip on
   the same date. override_conflicts: true bypasses for emergencies.
   Cancelled trips don't block rebooking.

4a. Email verification: User implements MustVerifyEmail.
    VerifyEmailNotification overrides verificationUrl() for our
    namespaced route. Register sends the link automatically (best
    effort, won't block signup). POST /auth/email/resend (auth) +
    GET /auth/email/verify/{id}/{hash} (signed URL).

4b. Password change while logged in: POST /me/password validates
    current_password, requires the new password to differ, revokes
    every other active token on success — current session stays.

5a. PickupImminent notification: when TripStop -> arrived,
    TripExecutor::notifyAssignedHouseholds() finds households whose
    assigned_drop_off_point_id matches and sends DB + SMS.

5b. Auto-geofence on truck location: TruckTracker::record() now
    auto-fires TripExecutor::arriveAtDumpsite() when an in-progress
    trip's truck pings inside its dumpsite boundary. The executor's
    status guard prevents duplicate timeline events if the driver also
    presses arrive-dumpsite manually.

190 feature tests passing.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-01 17:13:00 +08:00

91 lines
2.9 KiB
PHP

<?php
namespace Tests\Feature\Api\V1\Auth;
use App\Models\User;
use App\Notifications\VerifyEmailNotification;
use App\Services\Sms\FakeSmsService;
use App\Services\Sms\SmsService;
use Database\Seeders\RoleSeeder;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Illuminate\Support\Facades\Notification;
use Illuminate\Support\Facades\URL;
use Laravel\Sanctum\Sanctum;
use Tests\TestCase;
class EmailVerificationTest extends TestCase
{
use RefreshDatabase;
protected function setUp(): void
{
parent::setUp();
$this->seed(RoleSeeder::class);
$this->app->instance(SmsService::class, new FakeSmsService());
}
public function test_register_sends_verification_email(): void
{
Notification::fake();
$this->postJson('/api/v1/auth/register', [
'first_name' => 'Em', 'last_name' => 'Ail',
'email' => 'verify@example.com',
'phone' => '+639170000200',
'password' => 'Password123', 'password_confirmation' => 'Password123',
'role' => User::ROLE_RESIDENT,
])->assertCreated();
$user = User::where('email', 'verify@example.com')->firstOrFail();
Notification::assertSentTo($user, VerifyEmailNotification::class);
}
public function test_signed_link_marks_email_verified(): void
{
$user = User::factory()->create(['email' => 'pending@example.com', 'email_verified_at' => null]);
$url = URL::temporarySignedRoute(
'api.v1.auth.verification.verify',
now()->addMinutes(60),
['id' => $user->id, 'hash' => sha1($user->email)],
);
// Strip the absolute URL prefix to get the path the test client expects.
$path = parse_url($url, PHP_URL_PATH).'?'.parse_url($url, PHP_URL_QUERY);
$this->getJson($path)->assertOk()->assertJsonPath('data.verified', true);
$this->assertNotNull($user->fresh()->email_verified_at);
}
public function test_tampered_signature_rejected(): void
{
$user = User::factory()->create(['email_verified_at' => null]);
$path = "/api/v1/auth/email/verify/{$user->id}/badhash?signature=tampered";
$this->getJson($path)->assertStatus(403);
}
public function test_authed_user_can_resend_email(): void
{
Notification::fake();
$user = User::factory()->create(['email_verified_at' => null]);
Sanctum::actingAs($user);
$this->postJson('/api/v1/auth/email/resend')
->assertOk()
->assertJsonPath('data.sent', true);
Notification::assertSentTo($user, VerifyEmailNotification::class);
}
public function test_already_verified_user_resend_is_noop(): void
{
$user = User::factory()->create(['email_verified_at' => now()]);
Sanctum::actingAs($user);
$this->postJson('/api/v1/auth/email/resend')
->assertOk()
->assertJsonPath('data.already_verified', true);
}
}