mirror of
https://github.com/koel/koel
synced 2024-12-19 00:53:05 +00:00
41 lines
1,017 B
PHP
41 lines
1,017 B
PHP
<?php
|
|
|
|
namespace Tests\Feature;
|
|
|
|
use App\Models\Setting;
|
|
use App\Models\User;
|
|
use App\Services\MediaScanner;
|
|
use App\Values\ScanResultCollection;
|
|
use Mockery\MockInterface;
|
|
|
|
class SettingTest extends TestCase
|
|
{
|
|
private MediaScanner|MockInterface $mediaSyncService;
|
|
|
|
public function setUp(): void
|
|
{
|
|
parent::setUp();
|
|
|
|
$this->mediaSyncService = self::mock(MediaScanner::class);
|
|
}
|
|
|
|
public function testSaveSettings(): void
|
|
{
|
|
/** @var User $admin */
|
|
$admin = User::factory()->admin()->create();
|
|
|
|
$this->mediaSyncService->shouldReceive('scan')->once()
|
|
->andReturn(ScanResultCollection::create());
|
|
|
|
$this->putAs('/api/settings', ['media_path' => __DIR__], $admin)
|
|
->assertSuccessful();
|
|
|
|
self::assertSame(__DIR__, Setting::get('media_path'));
|
|
}
|
|
|
|
public function testNonAdminCannotSaveSettings(): void
|
|
{
|
|
$this->putAs('/api/settings', ['media_path' => __DIR__])
|
|
->assertForbidden();
|
|
}
|
|
}
|