| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  | <?php | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | namespace Tests\User; | 
					
						
							| 
									
										
										
										
											2020-04-04 08:16:05 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-16 03:08:27 +08:00
										 |  |  | use BookStack\Activity\Tools\UserEntityWatchOptions; | 
					
						
							| 
									
										
										
										
											2023-08-18 01:10:34 +08:00
										 |  |  | use BookStack\Activity\WatchLevels; | 
					
						
							| 
									
										
										
										
											2020-04-04 08:16:05 +08:00
										 |  |  | use Tests\TestCase; | 
					
						
							| 
									
										
										
										
											2019-04-14 20:01:51 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | class UserPreferencesTest extends TestCase | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2023-08-15 00:29:12 +08:00
										 |  |  |     public function test_index_view() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $resp = $this->asEditor()->get('/preferences'); | 
					
						
							|  |  |  |         $resp->assertOk(); | 
					
						
							|  |  |  |         $resp->assertSee('Interface Keyboard Shortcuts'); | 
					
						
							|  |  |  |         $resp->assertSee('Edit Profile'); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-17 03:15:49 +08:00
										 |  |  |     public function test_index_view_accessible_but_without_profile_and_notifications_for_guest_user() | 
					
						
							| 
									
										
										
										
											2023-08-15 00:29:12 +08:00
										 |  |  |     { | 
					
						
							|  |  |  |         $this->setSettings(['app-public' => 'true']); | 
					
						
							| 
									
										
										
										
											2023-08-17 03:15:49 +08:00
										 |  |  |         $this->permissions->grantUserRolePermissions($this->users->guest(), ['receive-notifications']); | 
					
						
							| 
									
										
										
										
											2023-08-15 00:29:12 +08:00
										 |  |  |         $resp = $this->get('/preferences'); | 
					
						
							|  |  |  |         $resp->assertOk(); | 
					
						
							|  |  |  |         $resp->assertSee('Interface Keyboard Shortcuts'); | 
					
						
							|  |  |  |         $resp->assertDontSee('Edit Profile'); | 
					
						
							| 
									
										
										
										
											2023-08-17 03:15:49 +08:00
										 |  |  |         $resp->assertDontSee('Notification'); | 
					
						
							| 
									
										
										
										
											2023-08-15 00:29:12 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2022-11-10 02:42:54 +08: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 19:08:34 +08:00
										 |  |  |         $editor = $this->users->editor(); | 
					
						
							| 
									
										
										
										
											2022-11-10 02:42:54 +08: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"]'); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-15 00:29:12 +08:00
										 |  |  |     public function test_notification_routes_requires_notification_permission() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $viewer = $this->users->viewer(); | 
					
						
							|  |  |  |         $resp = $this->actingAs($viewer)->get('/preferences/notifications'); | 
					
						
							|  |  |  |         $this->assertPermissionError($resp); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $resp = $this->put('/preferences/notifications'); | 
					
						
							|  |  |  |         $this->assertPermissionError($resp); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $this->permissions->grantUserRolePermissions($viewer, ['receive-notifications']); | 
					
						
							|  |  |  |         $resp = $this->get('/preferences/notifications'); | 
					
						
							|  |  |  |         $resp->assertOk(); | 
					
						
							|  |  |  |         $resp->assertSee('Notification Preferences'); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-07-26 00:06:48 +08:00
										 |  |  |     public function test_notification_preferences_updating() | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2023-08-15 00:29:12 +08:00
										 |  |  |         $editor = $this->users->editor(); | 
					
						
							| 
									
										
										
										
											2023-07-26 00:06:48 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         // View preferences with defaults
 | 
					
						
							| 
									
										
										
										
											2023-08-15 00:29:12 +08:00
										 |  |  |         $resp = $this->actingAs($editor)->get('/preferences/notifications'); | 
					
						
							| 
									
										
										
										
											2023-07-26 00:06:48 +08:00
										 |  |  |         $resp->assertSee('Notification Preferences'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $html = $this->withHtml($resp); | 
					
						
							|  |  |  |         $html->assertFieldHasValue('preferences[comment-replies]', 'false'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // Update preferences
 | 
					
						
							|  |  |  |         $resp = $this->put('/preferences/notifications', [ | 
					
						
							|  |  |  |             'preferences' => ['comment-replies' => 'true'], | 
					
						
							|  |  |  |         ]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $resp->assertRedirect('/preferences/notifications'); | 
					
						
							|  |  |  |         $resp->assertSessionHas('success', 'Notification preferences have been updated!'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // View updates to preferences page
 | 
					
						
							|  |  |  |         $resp = $this->get('/preferences/notifications'); | 
					
						
							|  |  |  |         $html = $this->withHtml($resp); | 
					
						
							|  |  |  |         $html->assertFieldHasValue('preferences[comment-replies]', 'true'); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-16 03:08:27 +08:00
										 |  |  |     public function test_notification_preferences_show_watches() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $editor = $this->users->editor(); | 
					
						
							|  |  |  |         $book = $this->entities->book(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $options = new UserEntityWatchOptions($editor, $book); | 
					
						
							| 
									
										
										
										
											2023-08-18 01:10:34 +08:00
										 |  |  |         $options->updateLevelByValue(WatchLevels::COMMENTS); | 
					
						
							| 
									
										
										
										
											2023-08-16 03:08:27 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         $resp = $this->actingAs($editor)->get('/preferences/notifications'); | 
					
						
							|  |  |  |         $resp->assertSee($book->name); | 
					
						
							|  |  |  |         $resp->assertSee('All Page Updates & Comments'); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-18 01:10:34 +08:00
										 |  |  |         $options->updateLevelByValue(WatchLevels::DEFAULT); | 
					
						
							| 
									
										
										
										
											2023-08-16 03:08:27 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         $resp = $this->actingAs($editor)->get('/preferences/notifications'); | 
					
						
							|  |  |  |         $resp->assertDontSee($book->name); | 
					
						
							|  |  |  |         $resp->assertDontSee('All Page Updates & Comments'); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-09-03 21:19:43 +08:00
										 |  |  |     public function test_notification_preferences_dont_error_on_deleted_items() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $editor = $this->users->editor(); | 
					
						
							|  |  |  |         $book = $this->entities->book(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $options = new UserEntityWatchOptions($editor, $book); | 
					
						
							|  |  |  |         $options->updateLevelByValue(WatchLevels::COMMENTS); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $this->actingAs($editor)->delete($book->getUrl()); | 
					
						
							|  |  |  |         $book->refresh(); | 
					
						
							|  |  |  |         $this->assertNotNull($book->deleted_at); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $resp = $this->actingAs($editor)->get('/preferences/notifications'); | 
					
						
							|  |  |  |         $resp->assertOk(); | 
					
						
							|  |  |  |         $resp->assertDontSee($book->name); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-16 23:02:00 +08:00
										 |  |  |     public function test_notification_preferences_not_accessible_to_guest() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $this->setSettings(['app-public' => 'true']); | 
					
						
							|  |  |  |         $guest = $this->users->guest(); | 
					
						
							|  |  |  |         $this->permissions->grantUserRolePermissions($guest, ['receive-notifications']); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $resp = $this->get('/preferences/notifications'); | 
					
						
							|  |  |  |         $this->assertPermissionError($resp); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $resp = $this->put('/preferences/notifications', [ | 
					
						
							|  |  |  |             'preferences' => ['comment-replies' => 'true'], | 
					
						
							|  |  |  |         ]); | 
					
						
							|  |  |  |         $this->assertPermissionError($resp); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-09-18 05:26:51 +08:00
										 |  |  |     public function test_notification_comment_options_only_exist_if_comments_active() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $resp = $this->asEditor()->get('/preferences/notifications'); | 
					
						
							|  |  |  |         $resp->assertSee('Notify upon comments'); | 
					
						
							|  |  |  |         $resp->assertSee('Notify upon replies'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         setting()->put('app-disable-comments', true); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $resp = $this->get('/preferences/notifications'); | 
					
						
							|  |  |  |         $resp->assertDontSee('Notify upon comments'); | 
					
						
							|  |  |  |         $resp->assertDontSee('Notify upon replies'); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-14 20:01:51 +08:00
										 |  |  |     public function test_update_sort_preference() | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2023-01-21 19:08:34 +08:00
										 |  |  |         $editor = $this->users->editor(); | 
					
						
							| 
									
										
										
										
											2019-04-14 20:01:51 +08:00
										 |  |  |         $this->actingAs($editor); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-10 03:30:08 +08:00
										 |  |  |         $updateRequest = $this->patch('/preferences/change-sort/books', [ | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  |             'sort'  => 'created_at', | 
					
						
							|  |  |  |             'order' => 'desc', | 
					
						
							| 
									
										
										
										
											2019-04-14 20:01:51 +08:00
										 |  |  |         ]); | 
					
						
							|  |  |  |         $updateRequest->assertStatus(302); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $this->assertDatabaseHas('settings', [ | 
					
						
							|  |  |  |             'setting_key' => 'user:' . $editor->id . ':books_sort', | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  |             'value'       => 'created_at', | 
					
						
							| 
									
										
										
										
											2019-04-14 20:01:51 +08:00
										 |  |  |         ]); | 
					
						
							|  |  |  |         $this->assertDatabaseHas('settings', [ | 
					
						
							|  |  |  |             'setting_key' => 'user:' . $editor->id . ':books_sort_order', | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  |             'value'       => 'desc', | 
					
						
							| 
									
										
										
										
											2019-04-14 20:01:51 +08: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 19:08:34 +08:00
										 |  |  |         $editor = $this->users->editor(); | 
					
						
							| 
									
										
										
										
											2019-04-14 20:01:51 +08:00
										 |  |  |         $this->actingAs($editor); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-10 03:30:08 +08:00
										 |  |  |         $updateRequest = $this->patch('/preferences/change-sort/dogs', [ | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  |             'sort'  => 'name', | 
					
						
							|  |  |  |             'order' => 'asc', | 
					
						
							| 
									
										
										
										
											2019-04-14 20:01:51 +08: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 19:08:34 +08:00
										 |  |  |         $editor = $this->users->editor(); | 
					
						
							| 
									
										
										
										
											2019-04-14 20:01:51 +08:00
										 |  |  |         $this->actingAs($editor); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-10 03:30:08 +08:00
										 |  |  |         $updateRequest = $this->patch('/preferences/change-expansion/home-details', ['expand' => 'true']); | 
					
						
							| 
									
										
										
										
											2019-04-14 20:01:51 +08:00
										 |  |  |         $updateRequest->assertStatus(204); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $this->assertDatabaseHas('settings', [ | 
					
						
							|  |  |  |             'setting_key' => 'user:' . $editor->id . ':section_expansion#home-details', | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  |             'value'       => 'true', | 
					
						
							| 
									
										
										
										
											2019-04-14 20:01:51 +08:00
										 |  |  |         ]); | 
					
						
							|  |  |  |         $this->assertEquals(true, setting()->getForCurrentUser('section_expansion#home-details')); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-10 03:30:08 +08:00
										 |  |  |         $invalidKeyRequest = $this->patch('/preferences/change-expansion/my-home-details', ['expand' => 'true']); | 
					
						
							| 
									
										
										
										
											2019-04-14 20:01:51 +08:00
										 |  |  |         $invalidKeyRequest->assertStatus(500); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2020-04-12 03:44:23 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     public function test_toggle_dark_mode() | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2023-01-21 19:08:34 +08:00
										 |  |  |         $home = $this->actingAs($this->users->editor())->get('/'); | 
					
						
							| 
									
										
										
										
											2020-04-12 03:44:23 +08:00
										 |  |  |         $home->assertSee('Dark Mode'); | 
					
						
							| 
									
										
										
										
											2022-07-23 22:10:18 +08:00
										 |  |  |         $this->withHtml($home)->assertElementNotExists('.dark-mode'); | 
					
						
							| 
									
										
										
										
											2020-04-12 03:44:23 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         $this->assertEquals(false, setting()->getForCurrentUser('dark-mode-enabled', false)); | 
					
						
							| 
									
										
										
										
											2022-11-10 03:30:08 +08:00
										 |  |  |         $prefChange = $this->patch('/preferences/toggle-dark-mode'); | 
					
						
							| 
									
										
										
										
											2020-04-12 03:44:23 +08:00
										 |  |  |         $prefChange->assertRedirect(); | 
					
						
							|  |  |  |         $this->assertEquals(true, setting()->getForCurrentUser('dark-mode-enabled')); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-21 19:08:34 +08:00
										 |  |  |         $home = $this->actingAs($this->users->editor())->get('/'); | 
					
						
							| 
									
										
										
										
											2022-07-23 22:10:18 +08:00
										 |  |  |         $this->withHtml($home)->assertElementExists('.dark-mode'); | 
					
						
							| 
									
										
										
										
											2020-04-12 03:44:23 +08:00
										 |  |  |         $home->assertDontSee('Dark Mode'); | 
					
						
							|  |  |  |         $home->assertSee('Light Mode'); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-02-08 07:12:05 +08: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 22:10:18 +08:00
										 |  |  |         $this->withHtml($home)->assertElementNotExists('.dark-mode'); | 
					
						
							| 
									
										
										
										
											2021-02-08 07:12:05 +08: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 22:10:18 +08:00
										 |  |  |         $this->withHtml($home)->assertElementExists('.dark-mode'); | 
					
						
							| 
									
										
										
										
											2021-02-08 07:12:05 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-09-14 05:54:21 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-09-14 20:53:24 +08:00
										 |  |  |     public function test_dark_mode_toggle_endpoint_changes_to_light_when_dark_by_default() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         config()->set('setting-defaults.user.dark-mode-enabled', true); | 
					
						
							|  |  |  |         $editor = $this->users->editor(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $this->assertEquals(true, setting()->getUser($editor, 'dark-mode-enabled')); | 
					
						
							|  |  |  |         $prefChange = $this->actingAs($editor)->patch('/preferences/toggle-dark-mode'); | 
					
						
							|  |  |  |         $prefChange->assertRedirect(); | 
					
						
							|  |  |  |         $this->assertEquals(false, setting()->getUser($editor, 'dark-mode-enabled')); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $home = $this->get('/'); | 
					
						
							|  |  |  |         $this->withHtml($home)->assertElementNotExists('.dark-mode'); | 
					
						
							|  |  |  |         $home->assertDontSee('Light Mode'); | 
					
						
							|  |  |  |         $home->assertSee('Dark Mode'); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-14 05:54:21 +08:00
										 |  |  |     public function test_books_view_type_preferences_when_list() | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2023-01-21 19:08:34 +08:00
										 |  |  |         $editor = $this->users->editor(); | 
					
						
							| 
									
										
										
										
											2021-09-14 05:54:21 +08:00
										 |  |  |         setting()->putUser($editor, 'books_view_type', 'list'); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-07-23 22:10:18 +08:00
										 |  |  |         $resp = $this->actingAs($editor)->get('/books'); | 
					
						
							|  |  |  |         $this->withHtml($resp) | 
					
						
							| 
									
										
										
										
											2021-09-14 05:54:21 +08:00
										 |  |  |             ->assertElementNotExists('.featured-image-container') | 
					
						
							|  |  |  |             ->assertElementExists('.content-wrap .entity-list-item'); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     public function test_books_view_type_preferences_when_grid() | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2023-01-21 19:08:34 +08:00
										 |  |  |         $editor = $this->users->editor(); | 
					
						
							| 
									
										
										
										
											2021-09-14 05:54:21 +08:00
										 |  |  |         setting()->putUser($editor, 'books_view_type', 'grid'); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-07-23 22:10:18 +08:00
										 |  |  |         $resp = $this->actingAs($editor)->get('/books'); | 
					
						
							|  |  |  |         $this->withHtml($resp)->assertElementExists('.featured-image-container'); | 
					
						
							| 
									
										
										
										
											2021-09-14 05:54:21 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     public function test_shelf_view_type_change() | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2023-01-21 19:08:34 +08:00
										 |  |  |         $editor = $this->users->editor(); | 
					
						
							| 
									
										
										
										
											2022-09-30 00:31:38 +08:00
										 |  |  |         $shelf = $this->entities->shelf(); | 
					
						
							| 
									
										
										
										
											2021-09-14 05:54:21 +08:00
										 |  |  |         setting()->putUser($editor, 'bookshelf_view_type', 'list'); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-07-23 22:10:18 +08:00
										 |  |  |         $resp = $this->actingAs($editor)->get($shelf->getUrl())->assertSee('Grid View'); | 
					
						
							|  |  |  |         $this->withHtml($resp) | 
					
						
							| 
									
										
										
										
											2021-09-14 05:54:21 +08:00
										 |  |  |             ->assertElementNotExists('.featured-image-container') | 
					
						
							| 
									
										
										
										
											2022-07-23 22:10:18 +08:00
										 |  |  |             ->assertElementExists('.content-wrap .entity-list-item'); | 
					
						
							| 
									
										
										
										
											2021-09-14 05:54:21 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-10 03:30:08 +08:00
										 |  |  |         $req = $this->patch("/preferences/change-view/bookshelf", ['view' => 'grid']); | 
					
						
							| 
									
										
										
										
											2021-09-14 05:54:21 +08:00
										 |  |  |         $req->assertRedirect($shelf->getUrl()); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-07-23 22:10:18 +08:00
										 |  |  |         $resp = $this->actingAs($editor)->get($shelf->getUrl()) | 
					
						
							| 
									
										
										
										
											2021-09-14 05:54:21 +08:00
										 |  |  |             ->assertSee('List View'); | 
					
						
							| 
									
										
										
										
											2022-07-23 22:10:18 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         $this->withHtml($resp) | 
					
						
							|  |  |  |             ->assertElementExists('.featured-image-container') | 
					
						
							|  |  |  |             ->assertElementNotExists('.content-wrap .entity-list-item'); | 
					
						
							| 
									
										
										
										
											2021-09-14 05:54:21 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2022-07-26 01:48:40 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     public function test_update_code_language_favourite() | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2023-01-21 19:08:34 +08:00
										 |  |  |         $editor = $this->users->editor(); | 
					
						
							| 
									
										
										
										
											2022-09-30 00:31:38 +08:00
										 |  |  |         $page = $this->entities->page(); | 
					
						
							| 
									
										
										
										
											2022-07-26 01:48:40 +08:00
										 |  |  |         $this->actingAs($editor); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-10 03:30:08 +08: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-26 01:48:40 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         $resp = $this->get($page->getUrl('/edit')); | 
					
						
							|  |  |  |         $resp->assertSee('option:code-editor:favourites="php,javascript"', false); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-10 03:30:08 +08: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-26 01:48:40 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         $resp = $this->get($page->getUrl('/edit')); | 
					
						
							|  |  |  |         $resp->assertSee('option:code-editor:favourites="javascript,ruby"', false); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  | } |