mirror of
https://github.com/BookStackApp/BookStack.git
synced 2026-01-03 23:42:28 +03:00
Apply fixes from StyleCI
This commit is contained in:
@@ -1,28 +1,29 @@
|
||||
<?php namespace Tests\User;
|
||||
<?php
|
||||
|
||||
namespace Tests\User;
|
||||
|
||||
use Tests\TestCase;
|
||||
|
||||
class UserPreferencesTest extends TestCase
|
||||
{
|
||||
|
||||
public function test_update_sort_preference()
|
||||
{
|
||||
$editor = $this->getEditor();
|
||||
$this->actingAs($editor);
|
||||
|
||||
$updateRequest = $this->patch('/settings/users/' . $editor->id.'/change-sort/books', [
|
||||
'sort' => 'created_at',
|
||||
'order' => 'desc'
|
||||
$updateRequest = $this->patch('/settings/users/' . $editor->id . '/change-sort/books', [
|
||||
'sort' => 'created_at',
|
||||
'order' => 'desc',
|
||||
]);
|
||||
$updateRequest->assertStatus(302);
|
||||
|
||||
$this->assertDatabaseHas('settings', [
|
||||
'setting_key' => 'user:' . $editor->id . ':books_sort',
|
||||
'value' => 'created_at'
|
||||
'value' => 'created_at',
|
||||
]);
|
||||
$this->assertDatabaseHas('settings', [
|
||||
'setting_key' => 'user:' . $editor->id . ':books_sort_order',
|
||||
'value' => 'desc'
|
||||
'value' => 'desc',
|
||||
]);
|
||||
$this->assertEquals('created_at', setting()->getForCurrentUser('books_sort'));
|
||||
$this->assertEquals('desc', setting()->getForCurrentUser('books_sort_order'));
|
||||
@@ -33,9 +34,9 @@ class UserPreferencesTest extends TestCase
|
||||
$editor = $this->getEditor();
|
||||
$this->actingAs($editor);
|
||||
|
||||
$updateRequest = $this->patch('/settings/users/' . $editor->id.'/change-sort/bookshelves', [
|
||||
'sort' => 'cat',
|
||||
'order' => 'dog'
|
||||
$updateRequest = $this->patch('/settings/users/' . $editor->id . '/change-sort/bookshelves', [
|
||||
'sort' => 'cat',
|
||||
'order' => 'dog',
|
||||
]);
|
||||
$updateRequest->assertStatus(302);
|
||||
|
||||
@@ -48,9 +49,9 @@ class UserPreferencesTest extends TestCase
|
||||
$editor = $this->getEditor();
|
||||
$this->actingAs($editor);
|
||||
|
||||
$updateRequest = $this->patch('/settings/users/' . $editor->id.'/change-sort/dogs', [
|
||||
'sort' => 'name',
|
||||
'order' => 'asc'
|
||||
$updateRequest = $this->patch('/settings/users/' . $editor->id . '/change-sort/dogs', [
|
||||
'sort' => 'name',
|
||||
'order' => 'asc',
|
||||
]);
|
||||
$updateRequest->assertStatus(500);
|
||||
|
||||
@@ -63,16 +64,16 @@ class UserPreferencesTest extends TestCase
|
||||
$editor = $this->getEditor();
|
||||
$this->actingAs($editor);
|
||||
|
||||
$updateRequest = $this->patch('/settings/users/' . $editor->id.'/update-expansion-preference/home-details', ['expand' => 'true']);
|
||||
$updateRequest = $this->patch('/settings/users/' . $editor->id . '/update-expansion-preference/home-details', ['expand' => 'true']);
|
||||
$updateRequest->assertStatus(204);
|
||||
|
||||
$this->assertDatabaseHas('settings', [
|
||||
'setting_key' => 'user:' . $editor->id . ':section_expansion#home-details',
|
||||
'value' => 'true'
|
||||
'value' => 'true',
|
||||
]);
|
||||
$this->assertEquals(true, setting()->getForCurrentUser('section_expansion#home-details'));
|
||||
|
||||
$invalidKeyRequest = $this->patch('/settings/users/' . $editor->id.'/update-expansion-preference/my-home-details', ['expand' => 'true']);
|
||||
$invalidKeyRequest = $this->patch('/settings/users/' . $editor->id . '/update-expansion-preference/my-home-details', ['expand' => 'true']);
|
||||
$invalidKeyRequest->assertStatus(500);
|
||||
}
|
||||
|
||||
@@ -105,4 +106,4 @@ class UserPreferencesTest extends TestCase
|
||||
$home = $this->get('/login');
|
||||
$home->assertElementExists('.dark-mode');
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user