- StripeEventListener::handleSubscriptionCreated nulls account.trial_ends_at when a Stripe subscription is created. Prevents 'Trial' badge from lingering for users who convert mid-generic-trial to paid. - Drop unused trialDays global Inertia prop (no frontend consumers after /subscribe redesign). Tests added (10 new, 0 regressions, 1533 total): - AccountTest: isOnTrial + activeTrialEndsAt across 4 scenarios (no trial, generic only, subscription only, both — subscription wins) - StripeEventListenerTest: subscription created clears generic trial - TrialMiddlewareAccessTest: trialing-with-card subscription passes - BillingControllerTest: index exposes onTrial/trialEndsAt for the 3 trial states (generic-only, subscription-only, paying); subscribe page no longer exposes trialDays prop
92 lines
2.8 KiB
PHP
92 lines
2.8 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use App\Actions\User\CreateUser;
|
|
use App\Enums\UserWorkspace\Role;
|
|
use App\Models\Account;
|
|
use App\Models\User;
|
|
use App\Models\Workspace;
|
|
use Carbon\Carbon;
|
|
use Database\Seeders\PlanSeeder;
|
|
|
|
beforeEach(function () {
|
|
config(['trypost.self_hosted' => false]);
|
|
$this->seed(PlanSeeder::class);
|
|
});
|
|
|
|
test('user on generic trial can access the app', function () {
|
|
Carbon::setTestNow('2026-05-14 12:00:00');
|
|
|
|
$user = CreateUser::execute([
|
|
'name' => 'Alice',
|
|
'email' => 'alice@example.com',
|
|
'password' => 'password123',
|
|
'timezone' => 'UTC',
|
|
'registration_ip' => '127.0.0.1',
|
|
]);
|
|
|
|
$workspace = Workspace::factory()->create([
|
|
'account_id' => $user->account_id,
|
|
'user_id' => $user->id,
|
|
]);
|
|
$workspace->members()->attach($user->id, ['role' => Role::Member->value]);
|
|
$user->update(['current_workspace_id' => $workspace->id]);
|
|
|
|
$response = $this->actingAs($user->fresh())->get(route('app.accounts'));
|
|
|
|
$response->assertOk();
|
|
});
|
|
|
|
test('user whose trial expired is redirected to subscribe', function () {
|
|
Carbon::setTestNow('2026-05-14 12:00:00');
|
|
|
|
$user = CreateUser::execute([
|
|
'name' => 'Alice',
|
|
'email' => 'alice2@example.com',
|
|
'password' => 'password123',
|
|
'timezone' => 'UTC',
|
|
'registration_ip' => '127.0.0.1',
|
|
]);
|
|
|
|
$workspace = Workspace::factory()->create([
|
|
'account_id' => $user->account_id,
|
|
'user_id' => $user->id,
|
|
]);
|
|
$workspace->members()->attach($user->id, ['role' => Role::Member->value]);
|
|
$user->update(['current_workspace_id' => $workspace->id]);
|
|
|
|
Carbon::setTestNow('2026-05-21 12:01:00');
|
|
|
|
$response = $this->actingAs($user->fresh())->get(route('app.accounts'));
|
|
|
|
$response->assertRedirect(route('app.subscribe'));
|
|
});
|
|
|
|
test('user on trialing subscription (legacy trial-with-card) can access the app', function () {
|
|
$account = Account::factory()->create([
|
|
'trial_ends_at' => null,
|
|
'stripe_id' => 'cus_test_'.fake()->uuid(),
|
|
]);
|
|
$user = User::factory()->create(['account_id' => $account->id]);
|
|
$account->update(['owner_id' => $user->id]);
|
|
|
|
$account->subscriptions()->create([
|
|
'type' => Account::SUBSCRIPTION_NAME,
|
|
'stripe_id' => 'sub_test_'.fake()->uuid(),
|
|
'stripe_status' => 'trialing',
|
|
'stripe_price' => 'price_123',
|
|
'trial_ends_at' => now()->addDays(5),
|
|
]);
|
|
|
|
$workspace = Workspace::factory()->create([
|
|
'account_id' => $account->id,
|
|
'user_id' => $user->id,
|
|
]);
|
|
$workspace->members()->attach($user->id, ['role' => Role::Member->value]);
|
|
$user->update(['current_workspace_id' => $workspace->id]);
|
|
|
|
$response = $this->actingAs($user->fresh())->get(route('app.accounts'));
|
|
|
|
$response->assertOk();
|
|
});
|