zibo-dashboard/tests/Feature/Web/SettingsTest.php
2025-02-26 08:57:46 +01:00

138 lines
4.4 KiB
PHP

<?php
namespace Tests\Feature\Web;
use Facades\Tests\Setup\RoleFactory;
use Facades\Tests\Setup\UserFactory;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Setting;
use Tests\TestCase;
class SettingsTest extends TestCase
{
use RefreshDatabase;
protected function setUp(): void
{
parent::setUp();
$this->artisan('db:seed');
}
/** @test */
public function update_general_settings()
{
Setting::set('app_name', 'bar');
$this->assertEquals('bar', Setting::get('app_name'));
$this->actingAsAdmin()
->from('/settings/general')
->post('/settings/general', ['app_name' => 'foo'])
->assertRedirect('/settings/general');
$this->assertEquals('foo', Setting::get('app_name'));
}
/** @test */
public function only_users_with_appropriate_permission_can_update_general_settings()
{
Setting::set('app_name', 'bar');
$roleA = RoleFactory::create();
$roleB = RoleFactory::withPermissions('settings.general')->create();
$userA = UserFactory::role($roleA)->create();
$userB = UserFactory::role($roleB)->create();
$this->actingAs($userA)
->from('/settings/general')
->post('/settings/general', ['app_name' => 'foo'])
->assertStatus(403);
$this->assertEquals('bar', Setting::get('app_name'));
$this->actingAs($userB)
->from('/settings/general')
->post('/settings/general', ['app_name' => 'foo'])
->assertRedirect('/settings/general');
$this->assertEquals('foo', Setting::get('app_name'));
}
/** @test */
public function update_auth_settings()
{
Setting::set('app_name', 'bar');
$data = $this->getAuthSettingsData();
$this->actingAsAdmin()
->from('/settings/auth')
->post('/settings/auth', $data)
->assertRedirect('/settings/auth');
$this->assertAuthSettingsUpdated($data);
}
/** @test */
public function only_users_with_appropriate_permission_can_update_auth_settings()
{
Setting::set('app_name', 'bar');
$roleA = RoleFactory::create();
$roleB = RoleFactory::withPermissions('settings.auth')->create();
$userA = UserFactory::role($roleA)->create();
$userB = UserFactory::role($roleB)->create();
$data = $this->getAuthSettingsData();
$this->actingAs($userA)
->from('/settings/auth')
->post('/settings/auth', $data)
->assertStatus(403);
$this->assertAuthSettingsNotUpdated($data);
$this->actingAs($userB)
->from('/settings/auth')
->post('/settings/auth', $data)
->assertRedirect('/settings/auth');
$this->assertAuthSettingsUpdated($data);
}
private function assertAuthSettingsUpdated(array $data)
{
$this->assertEquals($data['remember_me'], Setting::get('remember_me'));
$this->assertEquals($data['forgot_password'], Setting::get('forgot_password'));
$this->assertEquals($data['login_reset_token_lifetime'], Setting::get('login_reset_token_lifetime'));
$this->assertEquals($data['throttle_enabled'], Setting::get('throttle_enabled'));
$this->assertEquals($data['throttle_attempts'], Setting::get('throttle_attempts'));
$this->assertEquals($data['throttle_lockout_time'], Setting::get('throttle_lockout_time'));
}
private function assertAuthSettingsNotUpdated(array $data)
{
$this->assertNotEquals($data['remember_me'], Setting::get('remember_me'));
$this->assertNotEquals($data['forgot_password'], Setting::get('forgot_password'));
$this->assertNotEquals($data['login_reset_token_lifetime'], Setting::get('login_reset_token_lifetime'));
$this->assertNotEquals($data['throttle_enabled'], Setting::get('throttle_enabled'));
$this->assertNotEquals($data['throttle_attempts'], Setting::get('throttle_attempts'));
$this->assertNotEquals($data['throttle_lockout_time'], Setting::get('throttle_lockout_time'));
}
private function getAuthSettingsData()
{
return [
'remember_me' => 1,
'forgot_password' => 1,
'login_reset_token_lifetime' => 123,
'throttle_enabled' => 1,
'throttle_attempts' => 10,
'throttle_lockout_time' => 2,
];
}
}