2026-01-15 01:13:44 +00:00
|
|
|
<?php
|
|
|
|
|
|
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 03:20:43 +00:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
2026-03-29 22:24:28 +00:00
|
|
|
use App\Enums\UserWorkspace\Role;
|
2026-05-19 15:20:49 +00:00
|
|
|
use App\Models\Account;
|
2026-01-15 01:13:44 +00:00
|
|
|
use App\Models\User;
|
2026-03-29 22:24:28 +00:00
|
|
|
use App\Models\Workspace;
|
feat: PostPlatform enum, failure email, DB indexes, rate limiting, tests
Publishing improvements:
- Create PostPlatformStatus enum (Pending, Publishing, Published, Failed)
- Update PostPlatform model, jobs, factories to use enum
- Add PostPublishFailed email notification when post fails to publish
- Maizzle template + blade for failure email with platform details
- PublishPost job: add $tries=3, $backoff=30, failed() method
- Fix broadcast event to serialize enum status value
Security:
- Add rate limiting (throttle:6,1) on social connect endpoints
- Fix MediaController::reorder IDOR vulnerability
- Fix Connect.vue broken import (storeStep2 -> storeConnect)
- Fix UpdatePost data_get() consistency
Database:
- Add composite index on post_platforms (post_id, enabled)
- Add index on post_platforms (social_account_id)
Tests:
- Add 3 tests for profile photo upload/delete
- Add 2 tests for media reorder (including IDOR check)
- Fix publish tests for PostPlatformStatus enum
- Add Mail::fake() to publish tests
Cleanup:
- Remove unused AppHeader.vue and AppHeaderLayout.vue
- Remove dead BillingController methods
All 733 tests passing.
2026-03-30 19:11:38 +00:00
|
|
|
use Illuminate\Http\UploadedFile;
|
|
|
|
|
use Illuminate\Support\Facades\Storage;
|
2026-01-15 01:13:44 +00:00
|
|
|
|
|
|
|
|
test('profile page is displayed', function () {
|
|
|
|
|
$user = User::factory()->create();
|
|
|
|
|
|
|
|
|
|
$response = $this
|
|
|
|
|
->actingAs($user)
|
2026-03-29 22:24:28 +00:00
|
|
|
->get(route('app.profile.edit'));
|
2026-01-15 01:13:44 +00:00
|
|
|
|
|
|
|
|
$response->assertOk();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
test('profile information can be updated', function () {
|
|
|
|
|
$user = User::factory()->create();
|
|
|
|
|
|
|
|
|
|
$response = $this
|
|
|
|
|
->actingAs($user)
|
2026-03-31 00:18:07 +00:00
|
|
|
->put(route('app.profile.update'), [
|
2026-01-15 01:13:44 +00:00
|
|
|
'name' => 'Test User',
|
|
|
|
|
'email' => 'test@example.com',
|
|
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
$response
|
|
|
|
|
->assertSessionHasNoErrors()
|
2026-03-29 22:24:28 +00:00
|
|
|
->assertRedirect(route('app.profile.edit'));
|
2026-01-15 01:13:44 +00:00
|
|
|
|
|
|
|
|
$user->refresh();
|
|
|
|
|
|
|
|
|
|
expect($user->name)->toBe('Test User');
|
|
|
|
|
expect($user->email)->toBe('test@example.com');
|
|
|
|
|
expect($user->email_verified_at)->toBeNull();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
test('email verification status is unchanged when the email address is unchanged', function () {
|
|
|
|
|
$user = User::factory()->create();
|
|
|
|
|
|
|
|
|
|
$response = $this
|
|
|
|
|
->actingAs($user)
|
2026-03-31 00:18:07 +00:00
|
|
|
->put(route('app.profile.update'), [
|
2026-01-15 01:13:44 +00:00
|
|
|
'name' => 'Test User',
|
|
|
|
|
'email' => $user->email,
|
|
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
$response
|
|
|
|
|
->assertSessionHasNoErrors()
|
2026-03-29 22:24:28 +00:00
|
|
|
->assertRedirect(route('app.profile.edit'));
|
2026-01-15 01:13:44 +00:00
|
|
|
|
|
|
|
|
expect($user->refresh()->email_verified_at)->not->toBeNull();
|
|
|
|
|
});
|
|
|
|
|
|
refactor: auth split layout, subscribe redesign, onboarding, i18n, cookie locale
Auth pages:
- Create AuthSplitLayout with animated feature slides (6 slides, 3 languages)
- All auth pages use split layout (form left, visual right)
- Add show/hide password toggle with tooltip on Register
- Legal footer only shown on Register via showLegal prop
Subscribe page:
- Redesign to match auth card pattern (centered, clean)
- Platform icons, feature checklist, dynamic trial days (trialDays - 1)
- Add "Switch workspace" link
- Full i18n (en, es, pt-BR)
Onboarding:
- Rename URLs: step1 -> role, step2 -> connect
- Add enforceStep() to prevent skipping/going back steps
- Redirect /onboarding to /onboarding/role
- Redesign Step2 with AuthSplitLayout and compact platform list
- 21 tests covering all step enforcement scenarios
Workspaces page:
- Redesign with AuthSplitLayout (list with avatars, current badge)
Language system:
- Move locale from DB to cookie (forever, unencrypted, session.domain)
- Create SetLocale middleware (sets cookie if missing, validates against config)
- Rename lang/pt-br to lang/pt-BR
- Add dayjs es locale
Other:
- Copy utils.ts from sendkit (formatNumber, formatMoney, copyToClipboard)
- ConfirmDeleteModal with text confirmation (sendkit pattern)
- i18n for ConfirmDeleteModal internal strings (common.php)
- EmptyState component for posts index
- Exact match for "All" posts in sidebar
- Posts breadcrumbs show current status filter
- DialogFooter buttons aligned left
- API Keys page redesign with Table, DropdownMenu, EmptyState
- Extract CreateApiKeyDialog and InviteMemberDialog to components
- Remove API Keys from sidebar
- DropdownMenuItem destructive variant for Remove action
2026-03-30 14:53:42 +00:00
|
|
|
test('user can update their locale via cookie', function () {
|
2026-01-21 22:22:45 +00:00
|
|
|
$user = User::factory()->create();
|
|
|
|
|
|
|
|
|
|
$response = $this
|
|
|
|
|
->actingAs($user)
|
2026-03-29 22:24:28 +00:00
|
|
|
->from(route('app.posts.index'))
|
2026-03-31 00:18:07 +00:00
|
|
|
->put(route('app.profile.language'), [
|
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 03:20:43 +00:00
|
|
|
'locale' => 'es',
|
2026-01-21 22:22:45 +00:00
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
$response
|
|
|
|
|
->assertSessionHasNoErrors()
|
2026-03-29 22:24:28 +00:00
|
|
|
->assertRedirect(route('app.posts.index'));
|
2026-01-21 22:22:45 +00:00
|
|
|
|
refactor: auth split layout, subscribe redesign, onboarding, i18n, cookie locale
Auth pages:
- Create AuthSplitLayout with animated feature slides (6 slides, 3 languages)
- All auth pages use split layout (form left, visual right)
- Add show/hide password toggle with tooltip on Register
- Legal footer only shown on Register via showLegal prop
Subscribe page:
- Redesign to match auth card pattern (centered, clean)
- Platform icons, feature checklist, dynamic trial days (trialDays - 1)
- Add "Switch workspace" link
- Full i18n (en, es, pt-BR)
Onboarding:
- Rename URLs: step1 -> role, step2 -> connect
- Add enforceStep() to prevent skipping/going back steps
- Redirect /onboarding to /onboarding/role
- Redesign Step2 with AuthSplitLayout and compact platform list
- 21 tests covering all step enforcement scenarios
Workspaces page:
- Redesign with AuthSplitLayout (list with avatars, current badge)
Language system:
- Move locale from DB to cookie (forever, unencrypted, session.domain)
- Create SetLocale middleware (sets cookie if missing, validates against config)
- Rename lang/pt-br to lang/pt-BR
- Add dayjs es locale
Other:
- Copy utils.ts from sendkit (formatNumber, formatMoney, copyToClipboard)
- ConfirmDeleteModal with text confirmation (sendkit pattern)
- i18n for ConfirmDeleteModal internal strings (common.php)
- EmptyState component for posts index
- Exact match for "All" posts in sidebar
- Posts breadcrumbs show current status filter
- DialogFooter buttons aligned left
- API Keys page redesign with Table, DropdownMenu, EmptyState
- Extract CreateApiKeyDialog and InviteMemberDialog to components
- Remove API Keys from sidebar
- DropdownMenuItem destructive variant for Remove action
2026-03-30 14:53:42 +00:00
|
|
|
$response->assertCookieNotExpired('locale');
|
2026-01-21 22:22:45 +00:00
|
|
|
});
|
|
|
|
|
|
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 03:20:43 +00:00
|
|
|
test('user cannot update locale with invalid code', function () {
|
2026-01-21 22:22:45 +00:00
|
|
|
$user = User::factory()->create();
|
|
|
|
|
|
|
|
|
|
$response = $this
|
|
|
|
|
->actingAs($user)
|
2026-03-31 00:18:07 +00:00
|
|
|
->put(route('app.profile.language'), [
|
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 03:20:43 +00:00
|
|
|
'locale' => 'invalid',
|
2026-01-21 22:22:45 +00:00
|
|
|
]);
|
|
|
|
|
|
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 03:20:43 +00:00
|
|
|
$response->assertSessionHasErrors('locale');
|
2026-01-21 22:22:45 +00:00
|
|
|
});
|
|
|
|
|
|
2026-01-15 01:13:44 +00:00
|
|
|
test('user can delete their account', function () {
|
|
|
|
|
$user = User::factory()->create();
|
|
|
|
|
|
|
|
|
|
$response = $this
|
|
|
|
|
->actingAs($user)
|
2026-03-29 22:24:28 +00:00
|
|
|
->delete(route('app.profile.destroy'), [
|
2026-01-15 01:13:44 +00:00
|
|
|
'password' => 'password',
|
|
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
$response
|
|
|
|
|
->assertSessionHasNoErrors()
|
2026-03-29 22:24:28 +00:00
|
|
|
->assertRedirect(route('app.home'));
|
2026-01-15 01:13:44 +00:00
|
|
|
|
|
|
|
|
$this->assertGuest();
|
|
|
|
|
expect($user->fresh())->toBeNull();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
test('correct password must be provided to delete account', function () {
|
|
|
|
|
$user = User::factory()->create();
|
|
|
|
|
|
|
|
|
|
$response = $this
|
|
|
|
|
->actingAs($user)
|
2026-03-29 22:24:28 +00:00
|
|
|
->from(route('app.profile.edit'))
|
|
|
|
|
->delete(route('app.profile.destroy'), [
|
2026-01-15 01:13:44 +00:00
|
|
|
'password' => 'wrong-password',
|
|
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
$response
|
|
|
|
|
->assertSessionHasErrors('password')
|
2026-03-29 22:24:28 +00:00
|
|
|
->assertRedirect(route('app.profile.edit'));
|
2026-01-15 01:13:44 +00:00
|
|
|
|
|
|
|
|
expect($user->fresh())->not->toBeNull();
|
2026-01-21 22:22:45 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
test('deleting account updates members current_workspace_id when their workspace is deleted', function () {
|
|
|
|
|
$owner = User::factory()->create();
|
|
|
|
|
$member = User::factory()->create();
|
|
|
|
|
|
|
|
|
|
// Create a workspace owned by the owner
|
2026-03-29 22:24:28 +00:00
|
|
|
$workspace = Workspace::factory()->create(['user_id' => $owner->id]);
|
2026-04-15 01:22:04 +00:00
|
|
|
$owner->workspaces()->attach($workspace->id, ['role' => Role::Member->value]);
|
2026-01-21 22:22:45 +00:00
|
|
|
$owner->update(['current_workspace_id' => $workspace->id]);
|
|
|
|
|
|
|
|
|
|
// Add member to the workspace and set it as their current
|
2026-03-29 22:24:28 +00:00
|
|
|
$member->workspaces()->attach($workspace->id, ['role' => Role::Member->value]);
|
2026-01-21 22:22:45 +00:00
|
|
|
$member->update(['current_workspace_id' => $workspace->id]);
|
|
|
|
|
|
|
|
|
|
// Verify setup
|
|
|
|
|
expect($member->current_workspace_id)->toBe($workspace->id);
|
|
|
|
|
|
|
|
|
|
// Owner deletes their account
|
|
|
|
|
$this
|
|
|
|
|
->actingAs($owner)
|
2026-03-29 22:24:28 +00:00
|
|
|
->delete(route('app.profile.destroy'), [
|
2026-01-21 22:22:45 +00:00
|
|
|
'password' => 'password',
|
|
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
// Verify member's current_workspace_id is updated to null (since they have no other workspace)
|
|
|
|
|
expect($member->fresh()->current_workspace_id)->toBeNull();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
test('deleting account updates members current_workspace_id to another workspace when available', function () {
|
|
|
|
|
$owner = User::factory()->create();
|
|
|
|
|
$member = User::factory()->create();
|
|
|
|
|
$otherOwner = User::factory()->create();
|
|
|
|
|
|
|
|
|
|
// Create workspace owned by the owner being deleted
|
2026-03-29 22:24:28 +00:00
|
|
|
$workspaceToDelete = Workspace::factory()->create(['user_id' => $owner->id]);
|
2026-04-15 01:22:04 +00:00
|
|
|
$owner->workspaces()->attach($workspaceToDelete->id, ['role' => Role::Member->value]);
|
2026-01-21 22:22:45 +00:00
|
|
|
$owner->update(['current_workspace_id' => $workspaceToDelete->id]);
|
|
|
|
|
|
|
|
|
|
// Create another workspace owned by a different user
|
2026-03-29 22:24:28 +00:00
|
|
|
$otherWorkspace = Workspace::factory()->create(['user_id' => $otherOwner->id]);
|
2026-04-15 01:22:04 +00:00
|
|
|
$otherOwner->workspaces()->attach($otherWorkspace->id, ['role' => Role::Member->value]);
|
2026-01-21 22:22:45 +00:00
|
|
|
|
|
|
|
|
// Add member to both workspaces
|
2026-03-29 22:24:28 +00:00
|
|
|
$member->workspaces()->attach($workspaceToDelete->id, ['role' => Role::Member->value]);
|
|
|
|
|
$member->workspaces()->attach($otherWorkspace->id, ['role' => Role::Member->value]);
|
2026-01-21 22:22:45 +00:00
|
|
|
$member->update(['current_workspace_id' => $workspaceToDelete->id]);
|
|
|
|
|
|
|
|
|
|
// Verify setup
|
|
|
|
|
expect($member->current_workspace_id)->toBe($workspaceToDelete->id);
|
|
|
|
|
|
|
|
|
|
// Owner deletes their account
|
|
|
|
|
$this
|
|
|
|
|
->actingAs($owner)
|
2026-03-29 22:24:28 +00:00
|
|
|
->delete(route('app.profile.destroy'), [
|
2026-01-21 22:22:45 +00:00
|
|
|
'password' => 'password',
|
|
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
// Verify member's current_workspace_id is updated to the other workspace
|
|
|
|
|
expect($member->fresh()->current_workspace_id)->toBe($otherWorkspace->id);
|
|
|
|
|
});
|
feat: PostPlatform enum, failure email, DB indexes, rate limiting, tests
Publishing improvements:
- Create PostPlatformStatus enum (Pending, Publishing, Published, Failed)
- Update PostPlatform model, jobs, factories to use enum
- Add PostPublishFailed email notification when post fails to publish
- Maizzle template + blade for failure email with platform details
- PublishPost job: add $tries=3, $backoff=30, failed() method
- Fix broadcast event to serialize enum status value
Security:
- Add rate limiting (throttle:6,1) on social connect endpoints
- Fix MediaController::reorder IDOR vulnerability
- Fix Connect.vue broken import (storeStep2 -> storeConnect)
- Fix UpdatePost data_get() consistency
Database:
- Add composite index on post_platforms (post_id, enabled)
- Add index on post_platforms (social_account_id)
Tests:
- Add 3 tests for profile photo upload/delete
- Add 2 tests for media reorder (including IDOR check)
- Fix publish tests for PostPlatformStatus enum
- Add Mail::fake() to publish tests
Cleanup:
- Remove unused AppHeader.vue and AppHeaderLayout.vue
- Remove dead BillingController methods
All 733 tests passing.
2026-03-30 19:11:38 +00:00
|
|
|
|
|
|
|
|
test('user can upload profile photo', function () {
|
|
|
|
|
Storage::fake();
|
|
|
|
|
|
|
|
|
|
$user = User::factory()->create();
|
|
|
|
|
|
|
|
|
|
$response = $this
|
|
|
|
|
->actingAs($user)
|
|
|
|
|
->post(route('app.profile.upload-photo'), [
|
|
|
|
|
'photo' => UploadedFile::fake()->image('avatar.jpg', 200, 200),
|
|
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
$response->assertRedirect();
|
|
|
|
|
|
|
|
|
|
$user->refresh();
|
|
|
|
|
expect($user->has_photo)->toBeTrue();
|
|
|
|
|
expect($user->photo_url)->not->toBeNull();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
test('user cannot upload non-image file as photo', function () {
|
|
|
|
|
$user = User::factory()->create();
|
|
|
|
|
|
|
|
|
|
$response = $this
|
|
|
|
|
->actingAs($user)
|
|
|
|
|
->post(route('app.profile.upload-photo'), [
|
|
|
|
|
'photo' => UploadedFile::fake()->create('document.pdf', 100),
|
|
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
$response->assertSessionHasErrors('photo');
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
test('user can delete profile photo', function () {
|
|
|
|
|
Storage::fake();
|
|
|
|
|
|
|
|
|
|
$user = User::factory()->create();
|
|
|
|
|
|
|
|
|
|
// Upload first
|
|
|
|
|
$this->actingAs($user)->post(route('app.profile.upload-photo'), [
|
|
|
|
|
'photo' => UploadedFile::fake()->image('avatar.jpg', 200, 200),
|
|
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
$user->refresh();
|
|
|
|
|
expect($user->has_photo)->toBeTrue();
|
|
|
|
|
|
|
|
|
|
// Delete
|
|
|
|
|
$response = $this->actingAs($user)->delete(route('app.profile.delete-photo'));
|
|
|
|
|
|
|
|
|
|
$response->assertRedirect();
|
|
|
|
|
|
|
|
|
|
$user->refresh();
|
|
|
|
|
expect($user->has_photo)->toBeFalse();
|
|
|
|
|
});
|
feat: social account toggle action, API, MCP + full test coverage
- Extract ToggleSocialAccount action from SocialController
- Add API endpoints: GET /social-accounts, PUT /social-accounts/{id}/toggle
- Add MCP tools: ListSocialAccountsTool, ToggleSocialAccountTool
- Fix all MCP tools: findOrFail → find + Response::error for graceful errors
- Fix MCP tools using $request->validated() without validate() call
- Fix return types to Response|ResponseFactory for error paths
- Add SocialAccountResource is_active/status fields (no tokens exposed)
- Add 43 MCP tests covering all 18 tools (CRUD, validation, cross-workspace)
- Add API response structure tests for posts, hashtags, labels, workspace
- Add API validation tests for post create/update, api-key expiry, label color
- Add API cross-workspace delete tests for hashtags and labels
- Add app validation tests for hashtag/label update, invite fields, password
- Add auth required tests for notifications, profile delete, api-keys index
- Add media reorder validation tests
2026-03-31 04:42:39 +00:00
|
|
|
|
|
|
|
|
test('user cannot upload photo exceeding max size', function () {
|
|
|
|
|
$user = User::factory()->create();
|
|
|
|
|
|
|
|
|
|
$response = $this
|
|
|
|
|
->actingAs($user)
|
|
|
|
|
->post(route('app.profile.upload-photo'), [
|
|
|
|
|
'photo' => UploadedFile::fake()->image('large.jpg')->size(6000),
|
|
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
$response->assertSessionHasErrors('photo');
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
test('delete account requires authentication', function () {
|
|
|
|
|
$response = $this->delete(route('app.profile.destroy'), [
|
|
|
|
|
'password' => 'password',
|
|
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
$response->assertRedirect(route('login'));
|
|
|
|
|
});
|
2026-05-19 15:20:49 +00:00
|
|
|
|
|
|
|
|
test('member deleting profile does NOT destroy the shared account', function (bool $selfHosted) {
|
|
|
|
|
config()->set('trypost.self_hosted', $selfHosted);
|
|
|
|
|
|
|
|
|
|
$owner = User::factory()->create();
|
|
|
|
|
$member = User::factory()->create(['account_id' => $owner->account_id]);
|
|
|
|
|
|
|
|
|
|
$workspace = Workspace::factory()->create([
|
|
|
|
|
'account_id' => $owner->account_id,
|
|
|
|
|
'user_id' => $owner->id,
|
|
|
|
|
]);
|
|
|
|
|
$owner->workspaces()->attach($workspace->id, ['role' => Role::Member->value]);
|
|
|
|
|
$member->workspaces()->attach($workspace->id, ['role' => Role::Member->value]);
|
|
|
|
|
|
|
|
|
|
$this->actingAs($member)->delete(route('app.profile.destroy'), [
|
|
|
|
|
'password' => 'password',
|
|
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
expect($member->fresh())->toBeNull();
|
|
|
|
|
expect(Account::find($owner->account_id))->not->toBeNull();
|
|
|
|
|
expect(Workspace::find($workspace->id))->not->toBeNull();
|
|
|
|
|
expect($owner->fresh())->not->toBeNull();
|
|
|
|
|
})->with([true, false]);
|
|
|
|
|
|
|
|
|
|
test('member deleting profile detaches them from workspaces', function (bool $selfHosted) {
|
|
|
|
|
config()->set('trypost.self_hosted', $selfHosted);
|
|
|
|
|
|
|
|
|
|
$owner = User::factory()->create();
|
|
|
|
|
$member = User::factory()->create(['account_id' => $owner->account_id]);
|
|
|
|
|
|
|
|
|
|
$workspace = Workspace::factory()->create([
|
|
|
|
|
'account_id' => $owner->account_id,
|
|
|
|
|
'user_id' => $owner->id,
|
|
|
|
|
]);
|
|
|
|
|
$member->workspaces()->attach($workspace->id, ['role' => Role::Member->value]);
|
|
|
|
|
|
|
|
|
|
$this->actingAs($member)->delete(route('app.profile.destroy'), [
|
|
|
|
|
'password' => 'password',
|
|
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
expect($workspace->fresh()->members()->where('users.id', $member->id)->exists())->toBeFalse();
|
|
|
|
|
})->with([true, false]);
|
|
|
|
|
|
|
|
|
|
test('owner deleting profile destroys the account and cascades', function (bool $selfHosted) {
|
|
|
|
|
config()->set('trypost.self_hosted', $selfHosted);
|
|
|
|
|
|
|
|
|
|
$owner = User::factory()->create();
|
|
|
|
|
$accountId = $owner->account_id;
|
|
|
|
|
|
|
|
|
|
$workspace = Workspace::factory()->create([
|
|
|
|
|
'account_id' => $accountId,
|
|
|
|
|
'user_id' => $owner->id,
|
|
|
|
|
]);
|
|
|
|
|
$owner->workspaces()->attach($workspace->id, ['role' => Role::Member->value]);
|
|
|
|
|
|
|
|
|
|
$this->actingAs($owner)->delete(route('app.profile.destroy'), [
|
|
|
|
|
'password' => 'password',
|
|
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
expect(Account::find($accountId))->toBeNull();
|
|
|
|
|
expect(Workspace::find($workspace->id))->toBeNull();
|
|
|
|
|
})->with([true, false]);
|