157 lines
4.3 KiB
PHP
157 lines
4.3 KiB
PHP
<?php
|
|
|
|
use App\Models\User;
|
|
|
|
beforeEach(function () {
|
|
config(['subscriptions.enabled' => true]);
|
|
});
|
|
|
|
test('guests cannot access subscription pages', function () {
|
|
$this->get(route('subscribe'))->assertRedirect(route('login'));
|
|
$this->get(route('subscribe.checkout'))->assertRedirect(route('login'));
|
|
$this->get(route('subscribe.success'))->assertRedirect(route('login'));
|
|
});
|
|
|
|
test('users without subscription are redirected to paywall when accessing protected routes', function () {
|
|
$user = User::factory()->create([
|
|
'encryption_salt' => str_repeat('a', 24),
|
|
]);
|
|
|
|
$this->actingAs($user);
|
|
|
|
$this->get(route('dashboard'))->assertRedirect(route('subscribe'));
|
|
$this->get(route('accounts.list'))->assertRedirect(route('subscribe'));
|
|
$this->get(route('transactions.index'))->assertRedirect(route('subscribe'));
|
|
});
|
|
|
|
test('users can view the paywall page', function () {
|
|
$user = User::factory()->create([
|
|
'encryption_salt' => str_repeat('a', 24),
|
|
]);
|
|
|
|
$this->actingAs($user);
|
|
|
|
$this->get(route('subscribe'))->assertOk();
|
|
});
|
|
|
|
test('subscribed users are redirected from paywall to dashboard', function () {
|
|
$user = User::factory()->create([
|
|
'encryption_salt' => str_repeat('a', 24),
|
|
]);
|
|
|
|
$user->subscriptions()->create([
|
|
'type' => 'default',
|
|
'stripe_id' => 'sub_test123',
|
|
'stripe_status' => 'active',
|
|
'stripe_price' => 'price_test123',
|
|
]);
|
|
|
|
$this->actingAs($user);
|
|
|
|
$this->get(route('subscribe'))->assertRedirect(route('dashboard'));
|
|
});
|
|
|
|
test('subscribed users can access protected routes', function () {
|
|
$user = User::factory()->create([
|
|
'encryption_salt' => str_repeat('a', 24),
|
|
]);
|
|
|
|
$user->subscriptions()->create([
|
|
'type' => 'default',
|
|
'stripe_id' => 'sub_test123',
|
|
'stripe_status' => 'active',
|
|
'stripe_price' => 'price_test123',
|
|
]);
|
|
|
|
$this->actingAs($user);
|
|
|
|
$this->get(route('dashboard'))->assertOk();
|
|
});
|
|
|
|
test('users can view the success page after subscribing', function () {
|
|
$user = User::factory()->create([
|
|
'encryption_salt' => str_repeat('a', 24),
|
|
]);
|
|
|
|
$this->actingAs($user);
|
|
|
|
$this->get(route('subscribe.success'))->assertOk();
|
|
});
|
|
|
|
test('cancel route redirects to paywall', function () {
|
|
$user = User::factory()->create([
|
|
'encryption_salt' => str_repeat('a', 24),
|
|
]);
|
|
|
|
$this->actingAs($user);
|
|
|
|
$this->get(route('subscribe.cancel'))->assertRedirect(route('subscribe'));
|
|
});
|
|
|
|
test('subscription middleware allows access when subscriptions are disabled', function () {
|
|
config(['subscriptions.enabled' => false]);
|
|
|
|
$user = User::factory()->create([
|
|
'encryption_salt' => str_repeat('a', 24),
|
|
]);
|
|
|
|
$this->actingAs($user);
|
|
|
|
$this->get(route('dashboard'))->assertOk();
|
|
});
|
|
|
|
test('hasProPlan returns true when subscriptions are disabled', function () {
|
|
config(['subscriptions.enabled' => false]);
|
|
|
|
$user = User::factory()->create();
|
|
|
|
expect($user->hasProPlan())->toBeTrue();
|
|
});
|
|
|
|
test('hasProPlan returns false for unsubscribed users when subscriptions are enabled', function () {
|
|
config(['subscriptions.enabled' => true]);
|
|
|
|
$user = User::factory()->create();
|
|
|
|
expect($user->hasProPlan())->toBeFalse();
|
|
});
|
|
|
|
test('hasProPlan returns true for subscribed users', function () {
|
|
config(['subscriptions.enabled' => true]);
|
|
|
|
$user = User::factory()->create();
|
|
|
|
$user->subscriptions()->create([
|
|
'type' => 'default',
|
|
'stripe_id' => 'sub_test123',
|
|
'stripe_status' => 'active',
|
|
'stripe_price' => 'price_test123',
|
|
]);
|
|
|
|
expect($user->hasProPlan())->toBeTrue();
|
|
});
|
|
|
|
test('landing page passes subscriptions enabled prop when enabled', function () {
|
|
config(['subscriptions.enabled' => true]);
|
|
|
|
$this->get(route('home'))
|
|
->assertOk()
|
|
->assertInertia(fn ($page) => $page
|
|
->component('welcome')
|
|
->has('subscriptionsEnabled')
|
|
->where('subscriptionsEnabled', true)
|
|
);
|
|
});
|
|
|
|
test('landing page passes subscriptions enabled prop when disabled', function () {
|
|
config(['subscriptions.enabled' => false]);
|
|
|
|
$this->get(route('home'))
|
|
->assertOk()
|
|
->assertInertia(fn ($page) => $page
|
|
->component('welcome')
|
|
->has('subscriptionsEnabled')
|
|
->where('subscriptionsEnabled', false)
|
|
);
|
|
});
|