- 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
34 lines
1 KiB
PHP
34 lines
1 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use App\Broadcasting\PostChannel;
|
|
use App\Enums\UserWorkspace\Role;
|
|
use App\Models\Post;
|
|
use App\Models\User;
|
|
use App\Models\Workspace;
|
|
|
|
test('post channel allows workspace member to join', function () {
|
|
$user = User::factory()->create();
|
|
$workspace = Workspace::factory()->create(['user_id' => $user->id]);
|
|
$workspace->members()->attach($user->id, ['role' => Role::Member->value]);
|
|
$post = Post::factory()->create(['workspace_id' => $workspace->id]);
|
|
|
|
$channel = new PostChannel;
|
|
$result = $channel->join($user, $post);
|
|
|
|
expect($result)->toBeTrue();
|
|
});
|
|
|
|
test('post channel denies non-member from joining', function () {
|
|
$owner = User::factory()->create();
|
|
$workspace = Workspace::factory()->create(['user_id' => $owner->id]);
|
|
$post = Post::factory()->create(['workspace_id' => $workspace->id]);
|
|
|
|
$otherUser = User::factory()->create();
|
|
|
|
$channel = new PostChannel;
|
|
$result = $channel->join($otherUser, $post);
|
|
|
|
expect($result)->toBeFalse();
|
|
});
|