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.
108 lines
3.2 KiB
PHP
108 lines
3.2 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use App\Console\Commands\ProcessScheduledPosts;
|
|
use App\Enums\Post\Status as PostStatus;
|
|
use App\Jobs\PublishPost;
|
|
use App\Models\Post;
|
|
use App\Models\PostPlatform;
|
|
use App\Models\SocialAccount;
|
|
use App\Models\User;
|
|
use App\Models\Workspace;
|
|
use Illuminate\Support\Facades\Queue;
|
|
|
|
beforeEach(function () {
|
|
$this->user = User::factory()->create();
|
|
$this->workspace = Workspace::factory()->create(['user_id' => $this->user->id]);
|
|
});
|
|
|
|
test('process scheduled posts dispatches publish job for due posts', function () {
|
|
Queue::fake();
|
|
|
|
$socialAccount = SocialAccount::factory()->create(['workspace_id' => $this->workspace->id]);
|
|
|
|
$duePost = Post::factory()->create([
|
|
'workspace_id' => $this->workspace->id,
|
|
'user_id' => $this->user->id,
|
|
'status' => PostStatus::Scheduled,
|
|
'scheduled_at' => now()->subMinute(),
|
|
]);
|
|
|
|
PostPlatform::factory()->create([
|
|
'post_id' => $duePost->id,
|
|
'social_account_id' => $socialAccount->id,
|
|
]);
|
|
|
|
$this->artisan(ProcessScheduledPosts::class)->assertSuccessful();
|
|
|
|
Queue::assertPushed(PublishPost::class, function ($job) use ($duePost) {
|
|
return $job->post->id === $duePost->id;
|
|
});
|
|
});
|
|
|
|
test('process scheduled posts does not dispatch for future posts', function () {
|
|
Queue::fake();
|
|
|
|
$socialAccount = SocialAccount::factory()->create(['workspace_id' => $this->workspace->id]);
|
|
|
|
$futurePost = Post::factory()->create([
|
|
'workspace_id' => $this->workspace->id,
|
|
'user_id' => $this->user->id,
|
|
'status' => PostStatus::Scheduled,
|
|
'scheduled_at' => now()->addDay(),
|
|
]);
|
|
|
|
PostPlatform::factory()->create([
|
|
'post_id' => $futurePost->id,
|
|
'social_account_id' => $socialAccount->id,
|
|
]);
|
|
|
|
$this->artisan(ProcessScheduledPosts::class)->assertSuccessful();
|
|
|
|
Queue::assertNotPushed(PublishPost::class);
|
|
});
|
|
|
|
test('process scheduled posts does not dispatch for draft posts', function () {
|
|
Queue::fake();
|
|
|
|
$socialAccount = SocialAccount::factory()->create(['workspace_id' => $this->workspace->id]);
|
|
|
|
$draftPost = Post::factory()->draft()->create([
|
|
'workspace_id' => $this->workspace->id,
|
|
'user_id' => $this->user->id,
|
|
]);
|
|
|
|
PostPlatform::factory()->create([
|
|
'post_id' => $draftPost->id,
|
|
'social_account_id' => $socialAccount->id,
|
|
]);
|
|
|
|
$this->artisan(ProcessScheduledPosts::class)->assertSuccessful();
|
|
|
|
Queue::assertNotPushed(PublishPost::class);
|
|
});
|
|
|
|
test('process scheduled posts handles multiple due posts', function () {
|
|
Queue::fake();
|
|
|
|
$socialAccount = SocialAccount::factory()->create(['workspace_id' => $this->workspace->id]);
|
|
|
|
$posts = Post::factory()->count(3)->create([
|
|
'workspace_id' => $this->workspace->id,
|
|
'user_id' => $this->user->id,
|
|
'status' => PostStatus::Scheduled,
|
|
'scheduled_at' => now()->subMinute(),
|
|
]);
|
|
|
|
foreach ($posts as $post) {
|
|
PostPlatform::factory()->create([
|
|
'post_id' => $post->id,
|
|
'social_account_id' => $socialAccount->id,
|
|
]);
|
|
}
|
|
|
|
$this->artisan(ProcessScheduledPosts::class)->assertSuccessful();
|
|
|
|
Queue::assertPushed(PublishPost::class, 3);
|
|
});
|