trypost/tests/Unit/Traits/HasMediaTest.php
Paulo Castellano dafdd5da43 feat: media gallery picker, custom emoji picker, preview tabs, real platform logos
- gallery: extract /assets tabs (uploads, Unsplash, Giphy) into shared
  GalleryBrowser used by both /assets and a new MediaPickerDialog inside the
  post editor; add JSON search endpoint for workspace assets with tests
- emoji: replace broken emoji-picker-element web component with a custom
  EmojiPicker (full Unicode set, search, categories, recently-used,
  light/dark, i18n)
- preview tab: platform selector pills, variant tabs (data-driven from
  content_types map) so the user can switch Feed/Reel/Story etc. and have
  it autosave through the same handler ScheduleTab uses
- platform logos: shared usePlatformLogo composable (logo + label + content
  types); replaces inline maps across 5 components, fixes
  instagram-facebook falling back to default.png
- tooltips: hover details (display_name · @username + platform label) on
  platform avatars across editor, posts list and calendar
- settings cards: show ` · @username` in the title bar so multiple accounts
  on the same network are distinguishable
- routes: drop the throttle:6,1 group middleware on social connect routes
  (was 429ing legitimate OAuth retries) and rely on the default limiter
2026-05-01 14:53:49 -03:00

311 lines
10 KiB
PHP

<?php
declare(strict_types=1);
use App\Models\Media;
use App\Models\User;
use App\Models\Workspace;
use Illuminate\Database\Eloquent\Relations\MorphMany;
use Illuminate\Http\UploadedFile;
use Illuminate\Support\Facades\Storage;
beforeEach(function () {
Storage::fake();
});
test('model can get media relationship', function () {
$workspace = Workspace::factory()->create();
expect($workspace->media())->toBeInstanceOf(MorphMany::class);
});
test('model can add media from uploaded file', function () {
$workspace = Workspace::factory()->create();
$file = UploadedFile::fake()->image('logo.jpg', 100, 100);
$media = $workspace->addMedia($file, 'logo');
expect($media)->toBeInstanceOf(Media::class);
expect($media->collection)->toBe('logo');
expect($media->mime_type)->toBe('image/jpeg');
expect($media->original_filename)->toBe('logo.jpg');
Storage::assertExists($media->path);
});
test('model can get media by collection after adding', function () {
$workspace = Workspace::factory()->create();
$file = UploadedFile::fake()->image('logo.jpg', 100, 100);
$workspace->addMedia($file, 'logo');
expect($workspace->getMedia('logo')->count())->toBe(1);
});
test('model can get first media from collection', function () {
$workspace = Workspace::factory()->create();
$file = UploadedFile::fake()->image('logo.jpg', 100, 100);
$media = $workspace->addMedia($file, 'logo');
expect($workspace->getFirstMedia('logo')->id)->toBe($media->id);
});
test('get first media returns null when no media exists', function () {
$workspace = Workspace::factory()->create();
expect($workspace->getFirstMedia('logo'))->toBeNull();
});
test('model can get first media url', function () {
$workspace = Workspace::factory()->create();
$file = UploadedFile::fake()->image('logo.jpg', 100, 100);
$workspace->addMedia($file, 'logo');
$url = $workspace->getFirstMediaUrl('logo');
expect($url)->not->toBeNull();
});
test('get first media url returns default when no media exists', function () {
$workspace = Workspace::factory()->create();
expect($workspace->getFirstMediaUrl('logo', 'default-url'))->toBe('default-url');
});
test('get fallback avatar url returns dicebear url', function () {
$user = User::factory()->create(['name' => 'John Doe']);
$url = $user->getFallbackAvatarUrl('John Doe');
expect($url)->toContain('api.dicebear.com');
expect($url)->toContain('John+Doe');
});
test('adding media to single collection clears existing media', function () {
$workspace = Workspace::factory()->create();
$file1 = UploadedFile::fake()->image('logo1.jpg', 100, 100);
$file2 = UploadedFile::fake()->image('logo2.jpg', 100, 100);
$media1 = $workspace->addMedia($file1, 'logo');
$media2 = $workspace->addMedia($file2, 'logo');
expect($workspace->getMedia('logo')->count())->toBe(1);
expect($workspace->getFirstMedia('logo')->id)->toBe($media2->id);
expect(Media::find($media1->id))->toBeNull();
});
test('adding media to multiple collection does not clear existing', function () {
$workspace = Workspace::factory()->create();
$file1 = UploadedFile::fake()->image('image1.jpg', 100, 100);
$file2 = UploadedFile::fake()->image('image2.jpg', 100, 100);
$workspace->addMedia($file1, 'assets');
$workspace->addMedia($file2, 'assets');
expect($workspace->getMedia('assets')->count())->toBe(2);
});
test('model can add media from file path', function () {
$workspace = Workspace::factory()->create();
$tempFile = tempnam(sys_get_temp_dir(), 'test');
file_put_contents($tempFile, 'fake image content');
$media = $workspace->addMediaFromPath($tempFile, 'uploaded.jpg', 'logo');
expect($media)->toBeInstanceOf(Media::class);
expect($media->original_filename)->toBe('uploaded.jpg');
Storage::assertExists($media->path);
unlink($tempFile);
});
test('model can clear media collection', function () {
$workspace = Workspace::factory()->create();
$file1 = UploadedFile::fake()->image('logo1.jpg', 100, 100);
$file2 = UploadedFile::fake()->image('logo2.jpg', 100, 100);
$file3 = UploadedFile::fake()->image('logo3.jpg', 100, 100);
// Add to 'logo' collection (single, will only keep last one)
$workspace->addMedia($file1, 'logo');
// Need to use a 'multiple' collection model
$ws = Workspace::factory()->create();
$ws->addMedia($file2, 'assets');
$ws->addMedia($file3, 'assets');
expect($ws->getMedia('assets')->count())->toBe(2);
$ws->clearMediaCollection('assets');
expect($ws->getMedia('assets')->count())->toBe(0);
});
test('is single media collection returns true for single collections', function () {
$workspace = Workspace::factory()->create();
expect($workspace->isSingleMediaCollection('logo'))->toBeTrue();
});
test('is single media collection returns false for multiple collections', function () {
$workspace = Workspace::factory()->create();
expect($workspace->isSingleMediaCollection('assets'))->toBeFalse();
});
test('is single media collection returns false for undefined collections', function () {
$workspace = Workspace::factory()->create();
expect($workspace->isSingleMediaCollection('undefined'))->toBeFalse();
});
test('add media detects video type', function () {
$workspace = Workspace::factory()->create();
$file = UploadedFile::fake()->create('video.mp4', 1000, 'video/mp4');
$media = $workspace->addMedia($file, 'logo');
expect($media->type->value)->toBe('video');
});
test('add media detects document type', function () {
$workspace = Workspace::factory()->create();
$file = UploadedFile::fake()->create('document.pdf', 1000, 'application/pdf');
$media = $workspace->addMedia($file, 'logo');
expect($media->type->value)->toBe('document');
});
test('add media includes custom meta', function () {
$workspace = Workspace::factory()->create();
$file = UploadedFile::fake()->image('logo.jpg', 100, 100);
$media = $workspace->addMedia($file, 'logo', ['custom_key' => 'custom_value']);
expect($media->meta)->toHaveKey('custom_key');
expect($media->meta['custom_key'])->toBe('custom_value');
});
test('add media from path detects image dimensions', function () {
$workspace = Workspace::factory()->create();
// Create a real image file
$tempFile = tempnam(sys_get_temp_dir(), 'test');
$image = imagecreatetruecolor(200, 150);
imagejpeg($image, $tempFile);
imagedestroy($image);
$media = $workspace->addMediaFromPath($tempFile, 'test.jpg', 'logo');
expect($media->meta)->toHaveKey('width');
expect($media->meta)->toHaveKey('height');
expect($media->meta['width'])->toBe(200);
expect($media->meta['height'])->toBe(150);
unlink($tempFile);
});
test('user has_photo returns false when no media', function () {
$user = User::factory()->create(['name' => 'Test User']);
expect($user->has_photo)->toBeFalse();
expect($user->photo_url)->toBeNull();
});
test('user has_photo returns true when avatar exists', function () {
$user = User::factory()->create(['name' => 'Test User']);
$file = UploadedFile::fake()->image('avatar.jpg', 100, 100);
$user->addMedia($file, 'avatar');
$user->refresh();
expect($user->has_photo)->toBeTrue();
expect($user->photo_url)->not->toBeNull();
});
test('isVideo detects mp4 files', function () {
$media = new Media(['path' => 'medias/test.mp4']);
expect($media->isVideo())->toBeTrue();
expect($media->isImage())->toBeFalse();
});
test('isVideo detects mov files', function () {
$media = new Media(['path' => 'medias/test.mov']);
expect($media->isVideo())->toBeTrue();
});
test('isImage detects jpg files', function () {
$media = new Media(['path' => 'medias/test.jpg']);
expect($media->isImage())->toBeTrue();
expect($media->isVideo())->toBeFalse();
});
test('isImage detects png files', function () {
$media = new Media(['path' => 'medias/test.png']);
expect($media->isImage())->toBeTrue();
});
test('isVideo returns false for image files', function () {
$media = new Media(['path' => 'medias/test.webp']);
expect($media->isVideo())->toBeFalse();
expect($media->isImage())->toBeTrue();
});
test('mp4 with quicktime mime still detected as video by path', function () {
$media = new Media(['path' => 'medias/test.mp4', 'mime_type' => 'video/quicktime']);
expect($media->isVideo())->toBeTrue();
});
test('PNG upload is converted to JPEG at upload time', function () {
$workspace = Workspace::factory()->create();
$file = UploadedFile::fake()->image('photo.png', 200, 150);
$media = $workspace->addMedia($file, 'assets');
expect($media->mime_type)->toBe('image/jpeg')
->and($media->path)->toEndWith('.jpg')
->and(pathinfo($media->path, PATHINFO_EXTENSION))->toBe('jpg');
$bytes = Storage::get($media->path);
expect(substr($bytes, 0, 3))->toBe("\xFF\xD8\xFF"); // JPEG SOI marker
});
test('JPEG upload stays as JPEG (no-op)', function () {
$workspace = Workspace::factory()->create();
$file = UploadedFile::fake()->image('photo.jpg', 200, 150);
$media = $workspace->addMedia($file, 'assets');
expect($media->mime_type)->toBe('image/jpeg')
->and(pathinfo($media->path, PATHINFO_EXTENSION))->toBe('jpg');
});
test('GIF upload preserves GIF format for animation', function () {
$workspace = Workspace::factory()->create();
$file = UploadedFile::fake()->image('anim.gif', 200, 150);
$media = $workspace->addMedia($file, 'assets');
expect($media->mime_type)->toBe('image/gif')
->and(pathinfo($media->path, PATHINFO_EXTENSION))->toBe('gif');
});
test('WebP upload is converted to JPEG', function () {
$workspace = Workspace::factory()->create();
$file = UploadedFile::fake()->image('photo.webp', 200, 150);
$media = $workspace->addMedia($file, 'assets');
expect($media->mime_type)->toBe('image/jpeg')
->and(pathinfo($media->path, PATHINFO_EXTENSION))->toBe('jpg');
});
test('client meta is merged into media meta', function () {
$workspace = Workspace::factory()->create();
$file = UploadedFile::fake()->image('photo.jpg', 640, 480);
$media = $workspace->addMedia($file, 'assets', ['duration' => 12.5]);
expect($media->meta)->toHaveKey('duration', 12.5)
->and($media->meta)->toHaveKey('width')
->and($media->meta)->toHaveKey('height');
});