2021-06-26 11:23:15 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Tests\User;
|
2020-04-03 20:16:05 -04:00
|
|
|
|
|
|
|
use Tests\TestCase;
|
2019-04-14 08:01:51 -04:00
|
|
|
|
|
|
|
class UserPreferencesTest extends TestCase
|
|
|
|
{
|
2022-11-09 13:42:54 -05:00
|
|
|
public function test_interface_shortcuts_updating()
|
|
|
|
{
|
|
|
|
$this->asEditor();
|
|
|
|
|
|
|
|
// View preferences with defaults
|
|
|
|
$resp = $this->get('/preferences/shortcuts');
|
|
|
|
$resp->assertSee('Interface Keyboard Shortcuts');
|
|
|
|
|
|
|
|
$html = $this->withHtml($resp);
|
|
|
|
$html->assertFieldHasValue('enabled', 'false');
|
|
|
|
$html->assertFieldHasValue('shortcut[home_view]', '1');
|
|
|
|
|
|
|
|
// Update preferences
|
|
|
|
$resp = $this->put('/preferences/shortcuts', [
|
|
|
|
'enabled' => 'true',
|
|
|
|
'shortcut' => ['home_view' => 'Ctrl + 1'],
|
|
|
|
]);
|
|
|
|
|
|
|
|
$resp->assertRedirect('/preferences/shortcuts');
|
|
|
|
$resp->assertSessionHas('success', 'Shortcut preferences have been updated!');
|
|
|
|
|
|
|
|
// View updates to preferences page
|
|
|
|
$resp = $this->get('/preferences/shortcuts');
|
|
|
|
$html = $this->withHtml($resp);
|
|
|
|
$html->assertFieldHasValue('enabled', 'true');
|
|
|
|
$html->assertFieldHasValue('shortcut[home_view]', 'Ctrl + 1');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function test_body_has_shortcuts_component_when_active()
|
|
|
|
{
|
2023-01-21 06:08:34 -05:00
|
|
|
$editor = $this->users->editor();
|
2022-11-09 13:42:54 -05:00
|
|
|
$this->actingAs($editor);
|
|
|
|
|
|
|
|
$this->withHtml($this->get('/'))->assertElementNotExists('body[component="shortcuts"]');
|
|
|
|
|
|
|
|
setting()->putUser($editor, 'ui-shortcuts-enabled', 'true');
|
|
|
|
$this->withHtml($this->get('/'))->assertElementExists('body[component="shortcuts"]');
|
|
|
|
}
|
|
|
|
|
2019-04-14 08:01:51 -04:00
|
|
|
public function test_update_sort_preference()
|
|
|
|
{
|
2023-01-21 06:08:34 -05:00
|
|
|
$editor = $this->users->editor();
|
2019-04-14 08:01:51 -04:00
|
|
|
$this->actingAs($editor);
|
|
|
|
|
2022-11-09 14:30:08 -05:00
|
|
|
$updateRequest = $this->patch('/preferences/change-sort/books', [
|
2021-06-26 11:23:15 -04:00
|
|
|
'sort' => 'created_at',
|
|
|
|
'order' => 'desc',
|
2019-04-14 08:01:51 -04:00
|
|
|
]);
|
|
|
|
$updateRequest->assertStatus(302);
|
|
|
|
|
|
|
|
$this->assertDatabaseHas('settings', [
|
|
|
|
'setting_key' => 'user:' . $editor->id . ':books_sort',
|
2021-06-26 11:23:15 -04:00
|
|
|
'value' => 'created_at',
|
2019-04-14 08:01:51 -04:00
|
|
|
]);
|
|
|
|
$this->assertDatabaseHas('settings', [
|
|
|
|
'setting_key' => 'user:' . $editor->id . ':books_sort_order',
|
2021-06-26 11:23:15 -04:00
|
|
|
'value' => 'desc',
|
2019-04-14 08:01:51 -04:00
|
|
|
]);
|
|
|
|
$this->assertEquals('created_at', setting()->getForCurrentUser('books_sort'));
|
|
|
|
$this->assertEquals('desc', setting()->getForCurrentUser('books_sort_order'));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function test_update_sort_bad_entity_type_handled()
|
|
|
|
{
|
2023-01-21 06:08:34 -05:00
|
|
|
$editor = $this->users->editor();
|
2019-04-14 08:01:51 -04:00
|
|
|
$this->actingAs($editor);
|
|
|
|
|
2022-11-09 14:30:08 -05:00
|
|
|
$updateRequest = $this->patch('/preferences/change-sort/dogs', [
|
2021-06-26 11:23:15 -04:00
|
|
|
'sort' => 'name',
|
|
|
|
'order' => 'asc',
|
2019-04-14 08:01:51 -04:00
|
|
|
]);
|
|
|
|
$updateRequest->assertStatus(500);
|
|
|
|
|
|
|
|
$this->assertNotEmpty('name', setting()->getForCurrentUser('bookshelves_sort'));
|
|
|
|
$this->assertNotEmpty('asc', setting()->getForCurrentUser('bookshelves_sort_order'));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function test_update_expansion_preference()
|
|
|
|
{
|
2023-01-21 06:08:34 -05:00
|
|
|
$editor = $this->users->editor();
|
2019-04-14 08:01:51 -04:00
|
|
|
$this->actingAs($editor);
|
|
|
|
|
2022-11-09 14:30:08 -05:00
|
|
|
$updateRequest = $this->patch('/preferences/change-expansion/home-details', ['expand' => 'true']);
|
2019-04-14 08:01:51 -04:00
|
|
|
$updateRequest->assertStatus(204);
|
|
|
|
|
|
|
|
$this->assertDatabaseHas('settings', [
|
|
|
|
'setting_key' => 'user:' . $editor->id . ':section_expansion#home-details',
|
2021-06-26 11:23:15 -04:00
|
|
|
'value' => 'true',
|
2019-04-14 08:01:51 -04:00
|
|
|
]);
|
|
|
|
$this->assertEquals(true, setting()->getForCurrentUser('section_expansion#home-details'));
|
|
|
|
|
2022-11-09 14:30:08 -05:00
|
|
|
$invalidKeyRequest = $this->patch('/preferences/change-expansion/my-home-details', ['expand' => 'true']);
|
2019-04-14 08:01:51 -04:00
|
|
|
$invalidKeyRequest->assertStatus(500);
|
|
|
|
}
|
2020-04-11 15:44:23 -04:00
|
|
|
|
|
|
|
public function test_toggle_dark_mode()
|
|
|
|
{
|
2023-01-21 06:08:34 -05:00
|
|
|
$home = $this->actingAs($this->users->editor())->get('/');
|
2020-04-11 15:44:23 -04:00
|
|
|
$home->assertSee('Dark Mode');
|
2022-07-23 10:10:18 -04:00
|
|
|
$this->withHtml($home)->assertElementNotExists('.dark-mode');
|
2020-04-11 15:44:23 -04:00
|
|
|
|
|
|
|
$this->assertEquals(false, setting()->getForCurrentUser('dark-mode-enabled', false));
|
2022-11-09 14:30:08 -05:00
|
|
|
$prefChange = $this->patch('/preferences/toggle-dark-mode');
|
2020-04-11 15:44:23 -04:00
|
|
|
$prefChange->assertRedirect();
|
|
|
|
$this->assertEquals(true, setting()->getForCurrentUser('dark-mode-enabled'));
|
|
|
|
|
2023-01-21 06:08:34 -05:00
|
|
|
$home = $this->actingAs($this->users->editor())->get('/');
|
2022-07-23 10:10:18 -04:00
|
|
|
$this->withHtml($home)->assertElementExists('.dark-mode');
|
2020-04-11 15:44:23 -04:00
|
|
|
$home->assertDontSee('Dark Mode');
|
|
|
|
$home->assertSee('Light Mode');
|
|
|
|
}
|
2021-02-07 18:12:05 -05:00
|
|
|
|
|
|
|
public function test_dark_mode_defaults_to_config_option()
|
|
|
|
{
|
|
|
|
config()->set('setting-defaults.user.dark-mode-enabled', false);
|
|
|
|
$this->assertEquals(false, setting()->getForCurrentUser('dark-mode-enabled'));
|
|
|
|
$home = $this->get('/login');
|
2022-07-23 10:10:18 -04:00
|
|
|
$this->withHtml($home)->assertElementNotExists('.dark-mode');
|
2021-02-07 18:12:05 -05:00
|
|
|
|
|
|
|
config()->set('setting-defaults.user.dark-mode-enabled', true);
|
|
|
|
$this->assertEquals(true, setting()->getForCurrentUser('dark-mode-enabled'));
|
|
|
|
$home = $this->get('/login');
|
2022-07-23 10:10:18 -04:00
|
|
|
$this->withHtml($home)->assertElementExists('.dark-mode');
|
2021-02-07 18:12:05 -05:00
|
|
|
}
|
2021-09-13 17:54:21 -04:00
|
|
|
|
|
|
|
public function test_books_view_type_preferences_when_list()
|
|
|
|
{
|
2023-01-21 06:08:34 -05:00
|
|
|
$editor = $this->users->editor();
|
2021-09-13 17:54:21 -04:00
|
|
|
setting()->putUser($editor, 'books_view_type', 'list');
|
|
|
|
|
2022-07-23 10:10:18 -04:00
|
|
|
$resp = $this->actingAs($editor)->get('/books');
|
|
|
|
$this->withHtml($resp)
|
2021-09-13 17:54:21 -04:00
|
|
|
->assertElementNotExists('.featured-image-container')
|
|
|
|
->assertElementExists('.content-wrap .entity-list-item');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function test_books_view_type_preferences_when_grid()
|
|
|
|
{
|
2023-01-21 06:08:34 -05:00
|
|
|
$editor = $this->users->editor();
|
2021-09-13 17:54:21 -04:00
|
|
|
setting()->putUser($editor, 'books_view_type', 'grid');
|
|
|
|
|
2022-07-23 10:10:18 -04:00
|
|
|
$resp = $this->actingAs($editor)->get('/books');
|
|
|
|
$this->withHtml($resp)->assertElementExists('.featured-image-container');
|
2021-09-13 17:54:21 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
public function test_shelf_view_type_change()
|
|
|
|
{
|
2023-01-21 06:08:34 -05:00
|
|
|
$editor = $this->users->editor();
|
2022-09-29 12:31:38 -04:00
|
|
|
$shelf = $this->entities->shelf();
|
2021-09-13 17:54:21 -04:00
|
|
|
setting()->putUser($editor, 'bookshelf_view_type', 'list');
|
|
|
|
|
2022-07-23 10:10:18 -04:00
|
|
|
$resp = $this->actingAs($editor)->get($shelf->getUrl())->assertSee('Grid View');
|
|
|
|
$this->withHtml($resp)
|
2021-09-13 17:54:21 -04:00
|
|
|
->assertElementNotExists('.featured-image-container')
|
2022-07-23 10:10:18 -04:00
|
|
|
->assertElementExists('.content-wrap .entity-list-item');
|
2021-09-13 17:54:21 -04:00
|
|
|
|
2022-11-09 14:30:08 -05:00
|
|
|
$req = $this->patch("/preferences/change-view/bookshelf", ['view' => 'grid']);
|
2021-09-13 17:54:21 -04:00
|
|
|
$req->assertRedirect($shelf->getUrl());
|
|
|
|
|
2022-07-23 10:10:18 -04:00
|
|
|
$resp = $this->actingAs($editor)->get($shelf->getUrl())
|
2021-09-13 17:54:21 -04:00
|
|
|
->assertSee('List View');
|
2022-07-23 10:10:18 -04:00
|
|
|
|
|
|
|
$this->withHtml($resp)
|
|
|
|
->assertElementExists('.featured-image-container')
|
|
|
|
->assertElementNotExists('.content-wrap .entity-list-item');
|
2021-09-13 17:54:21 -04:00
|
|
|
}
|
2022-07-25 13:48:40 -04:00
|
|
|
|
|
|
|
public function test_update_code_language_favourite()
|
|
|
|
{
|
2023-01-21 06:08:34 -05:00
|
|
|
$editor = $this->users->editor();
|
2022-09-29 12:31:38 -04:00
|
|
|
$page = $this->entities->page();
|
2022-07-25 13:48:40 -04:00
|
|
|
$this->actingAs($editor);
|
|
|
|
|
2022-11-09 14:30:08 -05:00
|
|
|
$this->patch('/preferences/update-code-language-favourite', ['language' => 'php', 'active' => true]);
|
|
|
|
$this->patch('/preferences/update-code-language-favourite', ['language' => 'javascript', 'active' => true]);
|
2022-07-25 13:48:40 -04:00
|
|
|
|
|
|
|
$resp = $this->get($page->getUrl('/edit'));
|
|
|
|
$resp->assertSee('option:code-editor:favourites="php,javascript"', false);
|
|
|
|
|
2022-11-09 14:30:08 -05:00
|
|
|
$this->patch('/preferences/update-code-language-favourite', ['language' => 'ruby', 'active' => true]);
|
|
|
|
$this->patch('/preferences/update-code-language-favourite', ['language' => 'php', 'active' => false]);
|
2022-07-25 13:48:40 -04:00
|
|
|
|
|
|
|
$resp = $this->get($page->getUrl('/edit'));
|
|
|
|
$resp->assertSee('option:code-editor:favourites="javascript,ruby"', false);
|
|
|
|
}
|
2021-06-26 11:23:15 -04:00
|
|
|
}
|