mirror of
https://github.com/koel/koel
synced 2024-11-10 14:44:13 +00:00
31 lines
716 B
PHP
31 lines
716 B
PHP
<?php
|
|
|
|
namespace Tests;
|
|
|
|
use App\Models\User;
|
|
use Illuminate\Support\Facades\File;
|
|
|
|
function create_user(array $attributes = []): User
|
|
{
|
|
return User::factory()->create($attributes);
|
|
}
|
|
|
|
function create_admin(array $attributes = []): User
|
|
{
|
|
return User::factory()->admin()->create($attributes);
|
|
}
|
|
|
|
function create_user_prospect(array $attributes = []): User
|
|
{
|
|
return User::factory()->prospect()->create($attributes);
|
|
}
|
|
|
|
function test_path(string $path = ''): string
|
|
{
|
|
return base_path('tests' . DIRECTORY_SEPARATOR . ltrim($path, DIRECTORY_SEPARATOR));
|
|
}
|
|
|
|
function read_as_data_url(string $path): string
|
|
{
|
|
return 'data:' . mime_content_type($path) . ';base64,' . base64_encode(File::get($path));
|
|
}
|