mirror of
https://github.com/koel/koel
synced 2024-11-10 06:34:14 +00:00
58 lines
1.5 KiB
PHP
58 lines
1.5 KiB
PHP
<?php
|
|
|
|
use App\Models\Setting;
|
|
use App\Models\User;
|
|
use Illuminate\Foundation\Testing\DatabaseTransactions;
|
|
use Illuminate\Foundation\Testing\WithoutMiddleware;
|
|
|
|
class SettingTest extends TestCase
|
|
{
|
|
use DatabaseTransactions, WithoutMiddleware;
|
|
|
|
public function testSetSingleKeyValue()
|
|
{
|
|
Setting::set('foo', 'bar');
|
|
|
|
$this->seeInDatabase('settings', ['key' => 'foo', 'value' => 's:3:"bar";']);
|
|
}
|
|
|
|
public function testSetMultipleKeyValue()
|
|
{
|
|
Setting::set([
|
|
'foo' => 'bar',
|
|
'baz' => 'qux',
|
|
]);
|
|
|
|
$this->seeInDatabase('settings', ['key' => 'foo', 'value' => 's:3:"bar";']);
|
|
$this->seeInDatabase('settings', ['key' => 'baz', 'value' => 's:3:"qux";']);
|
|
}
|
|
|
|
public function testExistingShouldBeUpdated()
|
|
{
|
|
Setting::set('foo', 'bar');
|
|
Setting::set('foo', 'baz');
|
|
|
|
$this->assertEquals('baz', Setting::get('foo'));
|
|
}
|
|
|
|
public function testGet()
|
|
{
|
|
Setting::set('foo', 'bar');
|
|
Setting::set('bar', ['baz' => 'qux']);
|
|
|
|
$this->assertEquals('bar', Setting::get('foo'));
|
|
$this->assertEquals(['baz' => 'qux'], Setting::get('bar'));
|
|
}
|
|
|
|
public function testApplicationSetting()
|
|
{
|
|
Media::shouldReceive('sync')->once();
|
|
|
|
$dir = dirname(__FILE__);
|
|
$this->actingAs(factory(User::class, 'admin')->create())
|
|
->post('/api/settings', ['media_path' => $dir])
|
|
->seeStatusCode(200);
|
|
|
|
$this->assertEquals($dir, Setting::get('media_path'));
|
|
}
|
|
}
|