trypost/tests/Feature/Middleware/EnsureSubscribedTest.php
Paulo Castellano 56b8c92e72 refactor: settings redesign, Spanish translations, language system, strict_types
Settings pages:
- Redesign layout to match Sendkit (max-w-4xl, space-y-12, Separator sections)
- Merge Members page into Workspace settings with Table, invite Dialog, ConfirmDeleteModal
- Add workspace logo upload/delete routes and controller methods
- Translate all hardcoded strings in Workspace.vue modals

Language system:
- Drop languages table, replace language_id FK with locale string column on users
- Create config/languages.php for available languages and default locale
- Add Spanish (es) translations (13 files)
- Simplify HandleInertiaRequests, ProfileController, RegisteredUserController

Code quality:
- Add declare(strict_types=1) to all PHP files
- Fix MastodonPublisher using wrong attribute (filename -> original_filename)
- Fix HasMediaTest for new has_photo/photo_url accessors
- Fix PublishToSocialPlatformTest type error revealed by strict_types
- Remove orphaned Language model from AppServiceProvider morph map
- Update User TypeScript interface (has_photo, photo_url, locale)
- Eager load media relation on workspaces to prevent N+1
- Add 8 new tests for workspace logo upload/delete
- Update workspace settings test to assert members/invitations props

All 710 tests passing.
2026-03-30 00:20:43 -03:00

191 lines
6.8 KiB
PHP

<?php
declare(strict_types=1);
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('app.calendar'))
->assertOk();
});
test('unauthenticated user is redirected to login', function () {
config(['trypost.self_hosted' => false]);
$this->get(route('app.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('app.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('app.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('app.calendar'))
->assertRedirect(route('app.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('app.calendar'))
->assertRedirect(route('app.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('app.calendar'))
->assertRedirect(route('app.subscribe'));
});
test('invited member can access workspace when owner has active subscription', function () {
config(['trypost.self_hosted' => false]);
$owner = User::factory()->create(['setup' => Setup::Completed]);
$workspace = Workspace::factory()->create(['user_id' => $owner->id]);
$workspace->members()->attach($owner->id, ['role' => 'owner']);
$owner->subscriptions()->create([
'type' => 'default',
'stripe_id' => 'sub_owner_123',
'stripe_status' => 'active',
'stripe_price' => 'price_123',
]);
$member = User::factory()->create(['setup' => Setup::Completed]);
$workspace->members()->attach($member->id, ['role' => 'member']);
$member->update(['current_workspace_id' => $workspace->id]);
$this->actingAs($member)
->get(route('app.calendar'))
->assertOk();
});
test('invited member is redirected to subscribe when owner has no subscription', function () {
config(['trypost.self_hosted' => false]);
$owner = User::factory()->create(['setup' => Setup::Completed]);
$workspace = Workspace::factory()->create(['user_id' => $owner->id]);
$workspace->members()->attach($owner->id, ['role' => 'owner']);
$member = User::factory()->create(['setup' => Setup::Completed]);
$workspace->members()->attach($member->id, ['role' => 'member']);
$member->update(['current_workspace_id' => $workspace->id]);
$this->actingAs($member)
->get(route('app.calendar'))
->assertRedirect(route('app.subscribe'));
});
test('invited member on own workspace without subscription is redirected to subscribe', function () {
config(['trypost.self_hosted' => false]);
$owner = User::factory()->create(['setup' => Setup::Completed]);
$ownerWorkspace = Workspace::factory()->create(['user_id' => $owner->id]);
$ownerWorkspace->members()->attach($owner->id, ['role' => 'owner']);
$owner->subscriptions()->create([
'type' => 'default',
'stripe_id' => 'sub_owner_123',
'stripe_status' => 'active',
'stripe_price' => 'price_123',
]);
$member = User::factory()->create(['setup' => Setup::Completed]);
$ownerWorkspace->members()->attach($member->id, ['role' => 'member']);
$memberWorkspace = Workspace::factory()->create(['user_id' => $member->id]);
$memberWorkspace->members()->attach($member->id, ['role' => 'owner']);
$member->update(['current_workspace_id' => $memberWorkspace->id]);
$this->actingAs($member)
->get(route('app.calendar'))
->assertRedirect(route('app.subscribe'));
});