- Create Account model as Cashier Billable entity (stripe, plan, subscription) - Account owns workspaces and has an owner_id (User) - User belongs to one Account via account_id - Workspace belongs to Account via account_id, no longer has billing fields - Remove Brand model entirely (workspaces serve as grouping) - Rename brand_limit to workspace_limit in plans - Workspace roles simplified: admin/member/viewer (owner via Account) - Invites now belong to Account with workspaces JSON array - Pennant features scope changed from Workspace to Account - EnsureSubscribed middleware checks Account subscription - All controllers updated: BillingController, OnboardingController, WorkspaceInviteController, SocialController, StripeEventListener - Frontend: extract GoogleAuthButton component, create WorkspaceRole enum for type-safe role checks, fix all views for new architecture - All 1101 tests passing
172 lines
5.3 KiB
PHP
172 lines
5.3 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use App\Enums\User\Setup;
|
|
use App\Enums\UserWorkspace\Role;
|
|
use App\Models\Account;
|
|
use App\Models\Plan;
|
|
use App\Models\User;
|
|
use App\Models\Workspace;
|
|
|
|
beforeEach(function () {
|
|
$this->account = Account::factory()->create();
|
|
$this->user = User::factory()->create([
|
|
'setup' => Setup::Completed,
|
|
'account_id' => $this->account->id,
|
|
]);
|
|
$this->account->update(['owner_id' => $this->user->id]);
|
|
$this->workspace = Workspace::factory()->create([
|
|
'account_id' => $this->account->id,
|
|
'user_id' => $this->user->id,
|
|
]);
|
|
$this->workspace->members()->attach($this->user->id, ['role' => Role::Member->value]);
|
|
$this->user->update(['current_workspace_id' => $this->workspace->id]);
|
|
});
|
|
|
|
// Subscribe tests
|
|
test('subscribe requires authentication', function () {
|
|
$response = $this->get(route('app.subscribe'));
|
|
|
|
$response->assertRedirect(route('login'));
|
|
});
|
|
|
|
test('subscribe shows subscription page', function () {
|
|
config(['trypost.self_hosted' => false]);
|
|
|
|
$response = $this->actingAs($this->user)->get(route('app.subscribe'));
|
|
|
|
$response->assertOk();
|
|
$response->assertInertia(fn ($page) => $page
|
|
->component('billing/Subscribe', false)
|
|
->has('plans')
|
|
->has('trialDays')
|
|
);
|
|
});
|
|
|
|
test('subscribe redirects to billing index when account has active subscription', function () {
|
|
$this->account->subscriptions()->create([
|
|
'type' => Account::SUBSCRIPTION_NAME,
|
|
'stripe_id' => 'sub_test_'.fake()->uuid(),
|
|
'stripe_status' => 'active',
|
|
'stripe_price' => 'price_123',
|
|
]);
|
|
|
|
$response = $this->actingAs($this->user)->get(route('app.subscribe'));
|
|
|
|
$response->assertRedirect(route('app.billing.index'));
|
|
});
|
|
|
|
// Index tests
|
|
test('billing index requires authentication', function () {
|
|
$response = $this->get(route('app.billing.index'));
|
|
|
|
$response->assertRedirect(route('login'));
|
|
});
|
|
|
|
test('billing index shows billing dashboard', function () {
|
|
$this->account->subscriptions()->create([
|
|
'type' => Account::SUBSCRIPTION_NAME,
|
|
'stripe_id' => 'sub_test_'.fake()->uuid(),
|
|
'stripe_status' => 'active',
|
|
'stripe_price' => 'price_123',
|
|
]);
|
|
|
|
$response = $this->actingAs($this->user)->get(route('app.billing.index'));
|
|
|
|
$response->assertOk();
|
|
$response->assertInertia(fn ($page) => $page
|
|
->component('billing/Index', false)
|
|
->has('hasSubscription')
|
|
->has('plan')
|
|
->has('plans')
|
|
);
|
|
});
|
|
|
|
// Processing tests
|
|
test('billing processing requires authentication', function () {
|
|
$response = $this->get(route('app.billing.processing'));
|
|
|
|
$response->assertRedirect(route('login'));
|
|
});
|
|
|
|
test('billing processing shows processing page', function () {
|
|
$response = $this->actingAs($this->user)->get(route('app.billing.processing'));
|
|
|
|
$response->assertOk();
|
|
$response->assertInertia(fn ($page) => $page
|
|
->component('billing/Processing', false)
|
|
->has('accountId')
|
|
->has('status')
|
|
);
|
|
});
|
|
|
|
test('billing processing accepts status parameter', function () {
|
|
$response = $this->actingAs($this->user)->get(route('app.billing.processing', ['status' => 'success']));
|
|
|
|
$response->assertOk();
|
|
$response->assertInertia(fn ($page) => $page
|
|
->where('status', 'success')
|
|
);
|
|
});
|
|
|
|
test('billing processing validates status parameter', function () {
|
|
$response = $this->actingAs($this->user)->get(route('app.billing.processing', ['status' => 'invalid']));
|
|
|
|
$response->assertOk();
|
|
$response->assertInertia(fn ($page) => $page
|
|
->where('status', 'processing')
|
|
);
|
|
});
|
|
|
|
// Checkout tests
|
|
test('checkout requires authentication', function () {
|
|
$plan = Plan::first();
|
|
$response = $this->post(route('app.billing.checkout', $plan));
|
|
|
|
$response->assertRedirect(route('login'));
|
|
});
|
|
|
|
// Portal tests
|
|
test('portal requires authentication', function () {
|
|
$response = $this->get(route('app.billing.portal'));
|
|
|
|
$response->assertRedirect(route('login'));
|
|
});
|
|
|
|
// Authorization tests
|
|
test('non-owner admin cannot access billing index', function () {
|
|
$admin = User::factory()->create([
|
|
'setup' => Setup::Completed,
|
|
'account_id' => $this->account->id,
|
|
]);
|
|
$this->workspace->members()->attach($admin->id, ['role' => Role::Admin->value]);
|
|
$admin->update(['current_workspace_id' => $this->workspace->id]);
|
|
|
|
$this->account->subscriptions()->create([
|
|
'type' => Account::SUBSCRIPTION_NAME,
|
|
'stripe_id' => 'sub_test_'.fake()->uuid(),
|
|
'stripe_status' => 'active',
|
|
'stripe_price' => 'price_123',
|
|
]);
|
|
|
|
$this->actingAs($admin)->get(route('app.billing.index'))->assertForbidden();
|
|
});
|
|
|
|
test('member cannot access billing index', function () {
|
|
$member = User::factory()->create([
|
|
'setup' => Setup::Completed,
|
|
'account_id' => $this->account->id,
|
|
]);
|
|
$this->workspace->members()->attach($member->id, ['role' => Role::Member->value]);
|
|
$member->update(['current_workspace_id' => $this->workspace->id]);
|
|
|
|
$this->account->subscriptions()->create([
|
|
'type' => Account::SUBSCRIPTION_NAME,
|
|
'stripe_id' => 'sub_test_'.fake()->uuid(),
|
|
'stripe_status' => 'active',
|
|
'stripe_price' => 'price_123',
|
|
]);
|
|
|
|
$this->actingAs($member)->get(route('app.billing.index'))->assertForbidden();
|
|
});
|