| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  | <?php | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | namespace Tests\User; | 
					
						
							| 
									
										
										
										
											2020-04-04 08:16:05 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-10 19:49:16 +08:00
										 |  |  | use Activity; | 
					
						
							| 
									
										
										
										
											2020-11-08 06:37:27 +08:00
										 |  |  | use BookStack\Actions\ActivityType; | 
					
						
							| 
									
										
										
										
											2020-04-10 19:49:16 +08:00
										 |  |  | use BookStack\Auth\User; | 
					
						
							| 
									
										
										
										
											2021-09-14 05:54:21 +08:00
										 |  |  | use Tests\TestCase; | 
					
						
							| 
									
										
										
										
											2016-02-19 03:32:07 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-14 05:54:21 +08:00
										 |  |  | class UserProfileTest extends TestCase | 
					
						
							| 
									
										
										
										
											2016-02-19 03:32:07 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-09-14 05:54:21 +08:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * @var User | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2016-02-19 03:32:07 +08:00
										 |  |  |     protected $user; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-31 04:29:59 +08:00
										 |  |  |     protected function setUp(): void | 
					
						
							| 
									
										
										
										
											2016-02-19 03:32:07 +08:00
										 |  |  |     { | 
					
						
							|  |  |  |         parent::setUp(); | 
					
						
							| 
									
										
										
										
											2020-04-10 19:49:16 +08:00
										 |  |  |         $this->user = User::all()->last(); | 
					
						
							| 
									
										
										
										
											2016-02-19 03:32:07 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     public function test_profile_page_shows_name() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $this->asAdmin() | 
					
						
							| 
									
										
										
										
											2021-09-14 05:54:21 +08:00
										 |  |  |             ->get('/user/' . $this->user->slug) | 
					
						
							|  |  |  |             ->assertSee($this->user->name); | 
					
						
							| 
									
										
										
										
											2016-02-19 03:32:07 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     public function test_profile_page_shows_recent_entities() | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2022-09-29 23:49:25 +08:00
										 |  |  |         $content = $this->entities->createChainBelongingToUser($this->user, $this->user); | 
					
						
							| 
									
										
										
										
											2016-02-19 03:32:07 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-14 05:54:21 +08:00
										 |  |  |         $resp = $this->asAdmin()->get('/user/' . $this->user->slug); | 
					
						
							|  |  |  |         // Check the recently created page is shown
 | 
					
						
							|  |  |  |         $resp->assertSee($content['page']->name); | 
					
						
							|  |  |  |         // Check the recently created chapter is shown
 | 
					
						
							|  |  |  |         $resp->assertSee($content['chapter']->name); | 
					
						
							|  |  |  |         // Check the recently created book is shown
 | 
					
						
							|  |  |  |         $resp->assertSee($content['book']->name); | 
					
						
							| 
									
										
										
										
											2016-02-19 03:32:07 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     public function test_profile_page_shows_created_content_counts() | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2021-10-31 04:29:59 +08:00
										 |  |  |         $newUser = User::factory()->create(); | 
					
						
							| 
									
										
										
										
											2016-02-19 03:32:07 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-07-23 22:10:18 +08:00
										 |  |  |         $resp = $this->asAdmin()->get('/user/' . $newUser->slug) | 
					
						
							|  |  |  |             ->assertSee($newUser->name); | 
					
						
							|  |  |  |         $this->withHtml($resp)->assertElementContains('#content-counts', '0 Books') | 
					
						
							| 
									
										
										
										
											2021-09-14 05:54:21 +08:00
										 |  |  |             ->assertElementContains('#content-counts', '0 Chapters') | 
					
						
							|  |  |  |             ->assertElementContains('#content-counts', '0 Pages'); | 
					
						
							| 
									
										
										
										
											2016-02-19 03:32:07 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-29 23:49:25 +08:00
										 |  |  |         $this->entities->createChainBelongingToUser($newUser, $newUser); | 
					
						
							| 
									
										
										
										
											2016-02-19 03:32:07 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-07-23 22:10:18 +08:00
										 |  |  |         $resp = $this->asAdmin()->get('/user/' . $newUser->slug) | 
					
						
							|  |  |  |             ->assertSee($newUser->name); | 
					
						
							|  |  |  |         $this->withHtml($resp)->assertElementContains('#content-counts', '1 Book') | 
					
						
							| 
									
										
										
										
											2021-09-14 05:54:21 +08:00
										 |  |  |             ->assertElementContains('#content-counts', '1 Chapter') | 
					
						
							|  |  |  |             ->assertElementContains('#content-counts', '1 Page'); | 
					
						
							| 
									
										
										
										
											2016-02-19 03:32:07 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     public function test_profile_page_shows_recent_activity() | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2021-10-31 04:29:59 +08:00
										 |  |  |         $newUser = User::factory()->create(); | 
					
						
							| 
									
										
										
										
											2016-02-19 03:32:07 +08:00
										 |  |  |         $this->actingAs($newUser); | 
					
						
							| 
									
										
										
										
											2022-09-29 23:49:25 +08:00
										 |  |  |         $entities = $this->entities->createChainBelongingToUser($newUser, $newUser); | 
					
						
							| 
									
										
										
										
											2021-12-12 01:29:33 +08:00
										 |  |  |         Activity::add(ActivityType::BOOK_UPDATE, $entities['book']); | 
					
						
							|  |  |  |         Activity::add(ActivityType::PAGE_CREATE, $entities['page']); | 
					
						
							| 
									
										
										
										
											2016-02-19 03:32:07 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-07-23 22:10:18 +08:00
										 |  |  |         $resp = $this->asAdmin()->get('/user/' . $newUser->slug); | 
					
						
							|  |  |  |         $this->withHtml($resp)->assertElementContains('#recent-user-activity', 'updated book') | 
					
						
							| 
									
										
										
										
											2021-09-14 05:54:21 +08:00
										 |  |  |             ->assertElementContains('#recent-user-activity', 'created page') | 
					
						
							|  |  |  |             ->assertElementContains('#recent-user-activity', $entities['page']->name); | 
					
						
							| 
									
										
										
										
											2016-02-19 03:32:07 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-14 05:54:21 +08:00
										 |  |  |     public function test_user_activity_has_link_leading_to_profile() | 
					
						
							| 
									
										
										
										
											2016-02-19 03:32:07 +08:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2021-10-31 04:29:59 +08:00
										 |  |  |         $newUser = User::factory()->create(); | 
					
						
							| 
									
										
										
										
											2016-02-19 03:32:07 +08:00
										 |  |  |         $this->actingAs($newUser); | 
					
						
							| 
									
										
										
										
											2022-09-29 23:49:25 +08:00
										 |  |  |         $entities = $this->entities->createChainBelongingToUser($newUser, $newUser); | 
					
						
							| 
									
										
										
										
											2021-12-12 01:29:33 +08:00
										 |  |  |         Activity::add(ActivityType::BOOK_UPDATE, $entities['book']); | 
					
						
							|  |  |  |         Activity::add(ActivityType::PAGE_CREATE, $entities['page']); | 
					
						
							| 
									
										
										
										
											2016-02-19 03:32:07 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-14 05:54:21 +08:00
										 |  |  |         $linkSelector = '#recent-activity a[href$="/user/' . $newUser->slug . '"]'; | 
					
						
							| 
									
										
										
										
											2022-07-23 22:10:18 +08:00
										 |  |  |         $resp = $this->asAdmin()->get('/'); | 
					
						
							|  |  |  |         $this->withHtml($resp)->assertElementContains($linkSelector, $newUser->name); | 
					
						
							| 
									
										
										
										
											2016-02-19 03:32:07 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-09-30 00:07:58 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-05 04:08:51 +08:00
										 |  |  |     public function test_profile_has_search_links_in_created_entity_lists() | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2023-01-21 19:08:34 +08:00
										 |  |  |         $user = $this->users->editor(); | 
					
						
							|  |  |  |         $resp = $this->actingAs($this->users->admin())->get('/user/' . $user->slug); | 
					
						
							| 
									
										
										
										
											2021-08-05 04:08:51 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         $expectedLinks = [ | 
					
						
							|  |  |  |             '/search?term=%7Bcreated_by%3A' . $user->slug . '%7D+%7Btype%3Apage%7D', | 
					
						
							|  |  |  |             '/search?term=%7Bcreated_by%3A' . $user->slug . '%7D+%7Btype%3Achapter%7D', | 
					
						
							|  |  |  |             '/search?term=%7Bcreated_by%3A' . $user->slug . '%7D+%7Btype%3Abook%7D', | 
					
						
							|  |  |  |             '/search?term=%7Bcreated_by%3A' . $user->slug . '%7D+%7Btype%3Abookshelf%7D', | 
					
						
							|  |  |  |         ]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         foreach ($expectedLinks as $link) { | 
					
						
							| 
									
										
										
										
											2022-07-23 22:10:18 +08:00
										 |  |  |             $this->withHtml($resp)->assertElementContains('[href$="' . $link . '"]', 'View All'); | 
					
						
							| 
									
										
										
										
											2021-08-05 04:08:51 +08:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-02-19 03:32:07 +08:00
										 |  |  | } |