trypost/tests/Feature/Middleware/EnsureSubscribedTest.php

125 lines
4.2 KiB
PHP
Raw Normal View History

2026-01-19 00:49:13 +00:00
<?php
use App\Enums\User\Setup;
use App\Models\User;
use App\Models\Workspace;
test('self hosted mode bypasses subscription check', function () {
config(['trypost.self_hosted' => true]);
$user = User::factory()->create(['setup' => Setup::Completed]);
$workspace = Workspace::factory()->create(['user_id' => $user->id]);
$workspace->members()->attach($user->id, ['role' => 'owner']);
$user->update(['current_workspace_id' => $workspace->id]);
$this->actingAs($user)
->get(route('calendar'))
->assertOk();
});
test('unauthenticated user is redirected to login', function () {
config(['trypost.self_hosted' => false]);
$this->get(route('calendar'))
->assertRedirect(route('login'));
});
test('user with active subscription can access protected route', function () {
config(['trypost.self_hosted' => false]);
$user = User::factory()->create(['setup' => Setup::Completed]);
$workspace = Workspace::factory()->create(['user_id' => $user->id]);
$workspace->members()->attach($user->id, ['role' => 'owner']);
$user->update(['current_workspace_id' => $workspace->id]);
$user->subscriptions()->create([
'type' => 'default',
'stripe_id' => 'sub_123',
'stripe_status' => 'active',
'stripe_price' => 'price_123',
]);
$this->actingAs($user)
->get(route('calendar'))
->assertOk();
});
test('user on trial subscription can access protected route', function () {
config(['trypost.self_hosted' => false]);
$user = User::factory()->create(['setup' => Setup::Completed]);
$workspace = Workspace::factory()->create(['user_id' => $user->id]);
$workspace->members()->attach($user->id, ['role' => 'owner']);
$user->update(['current_workspace_id' => $workspace->id]);
// Create a subscription with trial
$user->subscriptions()->create([
'type' => 'default',
'stripe_id' => 'sub_trial_123',
'stripe_status' => 'trialing',
'stripe_price' => 'price_123',
'trial_ends_at' => now()->addDays(7),
]);
$this->actingAs($user)
->get(route('calendar'))
->assertOk();
});
test('user without subscription is redirected to subscribe page', function () {
config(['trypost.self_hosted' => false]);
$user = User::factory()->create(['setup' => Setup::Completed]);
$workspace = Workspace::factory()->create(['user_id' => $user->id]);
$workspace->members()->attach($user->id, ['role' => 'owner']);
$user->update(['current_workspace_id' => $workspace->id]);
$this->actingAs($user)
->get(route('calendar'))
->assertRedirect(route('subscribe'));
});
test('user with expired trial subscription is redirected to subscribe page', function () {
config(['trypost.self_hosted' => false]);
$user = User::factory()->create(['setup' => Setup::Completed]);
$workspace = Workspace::factory()->create(['user_id' => $user->id]);
$workspace->members()->attach($user->id, ['role' => 'owner']);
$user->update(['current_workspace_id' => $workspace->id]);
// Create an expired trial subscription
$user->subscriptions()->create([
'type' => 'default',
'stripe_id' => 'sub_expired_trial',
'stripe_status' => 'canceled',
'stripe_price' => 'price_123',
'trial_ends_at' => now()->subDay(),
'ends_at' => now()->subDay(),
]);
$this->actingAs($user)
->get(route('calendar'))
->assertRedirect(route('subscribe'));
});
test('user with cancelled subscription is redirected to subscribe page', function () {
config(['trypost.self_hosted' => false]);
$user = User::factory()->create(['setup' => Setup::Completed]);
$workspace = Workspace::factory()->create(['user_id' => $user->id]);
$workspace->members()->attach($user->id, ['role' => 'owner']);
$user->update(['current_workspace_id' => $workspace->id]);
$user->subscriptions()->create([
'type' => 'default',
'stripe_id' => 'sub_123',
'stripe_status' => 'canceled',
'stripe_price' => 'price_123',
'ends_at' => now()->subDay(),
]);
$this->actingAs($user)
->get(route('calendar'))
->assertRedirect(route('subscribe'));
});