| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  | <?php | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | namespace Tests\Api; | 
					
						
							| 
									
										
										
										
											2020-11-29 00:30:30 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | use BookStack\Entities\Models\Chapter; | 
					
						
							|  |  |  | use BookStack\Entities\Models\Page; | 
					
						
							| 
									
										
										
										
											2022-04-05 00:24:05 +08:00
										 |  |  | use Carbon\Carbon; | 
					
						
							|  |  |  | use Illuminate\Support\Facades\DB; | 
					
						
							| 
									
										
										
										
											2020-11-29 00:30:30 +08:00
										 |  |  | use Tests\TestCase; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class PagesApiTest extends TestCase | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     use TestsApi; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-05 00:24:05 +08:00
										 |  |  |     protected string $baseEndpoint = '/api/pages'; | 
					
						
							| 
									
										
										
										
											2020-11-29 00:30:30 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     public function test_index_endpoint_returns_expected_page() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $this->actingAsApiEditor(); | 
					
						
							|  |  |  |         $firstPage = Page::query()->orderBy('id', 'asc')->first(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $resp = $this->getJson($this->baseEndpoint . '?count=1&sort=+id'); | 
					
						
							|  |  |  |         $resp->assertJson(['data' => [ | 
					
						
							|  |  |  |             [ | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  |                 'id'       => $firstPage->id, | 
					
						
							|  |  |  |                 'name'     => $firstPage->name, | 
					
						
							|  |  |  |                 'slug'     => $firstPage->slug, | 
					
						
							|  |  |  |                 'book_id'  => $firstPage->book->id, | 
					
						
							| 
									
										
										
										
											2020-11-29 00:30:30 +08:00
										 |  |  |                 'priority' => $firstPage->priority, | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  |             ], | 
					
						
							| 
									
										
										
										
											2020-11-29 00:30:30 +08:00
										 |  |  |         ]]); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     public function test_create_endpoint() | 
					
						
							| 
									
										
										
										
											2023-07-11 20:11:13 +08:00
										 |  |  |     { | 
					
						
							|  |  |  |         $this->actingAsApiEditor(); | 
					
						
							|  |  |  |         $book = $this->entities->book(); | 
					
						
							|  |  |  |         $details = [ | 
					
						
							|  |  |  |             'name'    => 'My API page', | 
					
						
							|  |  |  |             'book_id' => $book->id, | 
					
						
							|  |  |  |             'html'    => '<p>My new page content</p>', | 
					
						
							|  |  |  |             'tags'    => [ | 
					
						
							|  |  |  |                 [ | 
					
						
							|  |  |  |                     'name'  => 'tagname', | 
					
						
							|  |  |  |                     'value' => 'tagvalue', | 
					
						
							|  |  |  |                 ], | 
					
						
							|  |  |  |             ], | 
					
						
							|  |  |  |             'priority' => 15, | 
					
						
							|  |  |  |         ]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $resp = $this->postJson($this->baseEndpoint, $details); | 
					
						
							|  |  |  |         unset($details['html']); | 
					
						
							|  |  |  |         $resp->assertStatus(200); | 
					
						
							|  |  |  |         $newItem = Page::query()->orderByDesc('id')->where('name', '=', $details['name'])->first(); | 
					
						
							|  |  |  |         $resp->assertJson(array_merge($details, ['id' => $newItem->id, 'slug' => $newItem->slug])); | 
					
						
							|  |  |  |         $this->assertDatabaseHas('tags', [ | 
					
						
							|  |  |  |             'entity_id'   => $newItem->id, | 
					
						
							|  |  |  |             'entity_type' => $newItem->getMorphClass(), | 
					
						
							|  |  |  |             'name'        => 'tagname', | 
					
						
							|  |  |  |             'value'       => 'tagvalue', | 
					
						
							|  |  |  |         ]); | 
					
						
							|  |  |  |         $resp->assertSeeText('My new page content'); | 
					
						
							|  |  |  |         $resp->assertJsonMissing(['book' => []]); | 
					
						
							|  |  |  |         $this->assertActivityExists('page_create', $newItem); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-29 00:30:30 +08:00
										 |  |  |     public function test_page_name_needed_to_create() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $this->actingAsApiEditor(); | 
					
						
							| 
									
										
										
										
											2022-09-30 00:31:38 +08:00
										 |  |  |         $book = $this->entities->book(); | 
					
						
							| 
									
										
										
										
											2020-11-29 00:30:30 +08:00
										 |  |  |         $details = [ | 
					
						
							|  |  |  |             'book_id' => $book->id, | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  |             'html'    => '<p>A page created via the API</p>', | 
					
						
							| 
									
										
										
										
											2020-11-29 00:30:30 +08:00
										 |  |  |         ]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $resp = $this->postJson($this->baseEndpoint, $details); | 
					
						
							|  |  |  |         $resp->assertStatus(422); | 
					
						
							|  |  |  |         $resp->assertJson($this->validationResponse([ | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  |             'name' => ['The name field is required.'], | 
					
						
							| 
									
										
										
										
											2020-11-29 00:30:30 +08:00
										 |  |  |         ])); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     public function test_book_id_or_chapter_id_needed_to_create() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $this->actingAsApiEditor(); | 
					
						
							|  |  |  |         $details = [ | 
					
						
							|  |  |  |             'name' => 'My api page', | 
					
						
							|  |  |  |             'html' => '<p>A page created via the API</p>', | 
					
						
							|  |  |  |         ]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $resp = $this->postJson($this->baseEndpoint, $details); | 
					
						
							|  |  |  |         $resp->assertStatus(422); | 
					
						
							|  |  |  |         $resp->assertJson($this->validationResponse([ | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  |             'book_id'    => ['The book id field is required when chapter id is not present.'], | 
					
						
							|  |  |  |             'chapter_id' => ['The chapter id field is required when book id is not present.'], | 
					
						
							| 
									
										
										
										
											2020-11-29 00:30:30 +08:00
										 |  |  |         ])); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-30 05:11:16 +08:00
										 |  |  |         $chapter = $this->entities->chapter(); | 
					
						
							| 
									
										
										
										
											2020-11-29 00:30:30 +08:00
										 |  |  |         $resp = $this->postJson($this->baseEndpoint, array_merge($details, ['chapter_id' => $chapter->id])); | 
					
						
							|  |  |  |         $resp->assertStatus(200); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-30 05:11:16 +08:00
										 |  |  |         $book = $this->entities->book(); | 
					
						
							| 
									
										
										
										
											2020-11-29 00:30:30 +08:00
										 |  |  |         $resp = $this->postJson($this->baseEndpoint, array_merge($details, ['book_id' => $book->id])); | 
					
						
							|  |  |  |         $resp->assertStatus(200); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     public function test_markdown_can_be_provided_for_create() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $this->actingAsApiEditor(); | 
					
						
							| 
									
										
										
										
											2022-09-30 05:11:16 +08:00
										 |  |  |         $book = $this->entities->book(); | 
					
						
							| 
									
										
										
										
											2020-11-29 00:30:30 +08:00
										 |  |  |         $details = [ | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  |             'book_id'  => $book->id, | 
					
						
							|  |  |  |             'name'     => 'My api page', | 
					
						
							| 
									
										
										
										
											2020-11-29 00:30:30 +08:00
										 |  |  |             'markdown' => "# A new API page \n[link](https://example.com)", | 
					
						
							|  |  |  |         ]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $resp = $this->postJson($this->baseEndpoint, $details); | 
					
						
							|  |  |  |         $resp->assertJson(['markdown' => $details['markdown']]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $respHtml = $resp->json('html'); | 
					
						
							|  |  |  |         $this->assertStringContainsString('new API page</h1>', $respHtml); | 
					
						
							|  |  |  |         $this->assertStringContainsString('link</a>', $respHtml); | 
					
						
							|  |  |  |         $this->assertStringContainsString('href="https://example.com"', $respHtml); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     public function test_read_endpoint() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $this->actingAsApiEditor(); | 
					
						
							| 
									
										
										
										
											2022-09-30 05:11:16 +08:00
										 |  |  |         $page = $this->entities->page(); | 
					
						
							| 
									
										
										
										
											2020-11-29 00:30:30 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         $resp = $this->getJson($this->baseEndpoint . "/{$page->id}"); | 
					
						
							|  |  |  |         $resp->assertStatus(200); | 
					
						
							|  |  |  |         $resp->assertJson([ | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  |             'id'         => $page->id, | 
					
						
							|  |  |  |             'slug'       => $page->slug, | 
					
						
							| 
									
										
										
										
											2020-11-29 00:30:30 +08:00
										 |  |  |             'created_by' => [ | 
					
						
							|  |  |  |                 'name' => $page->createdBy->name, | 
					
						
							|  |  |  |             ], | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  |             'book_id'    => $page->book_id, | 
					
						
							| 
									
										
										
										
											2020-11-29 00:30:30 +08:00
										 |  |  |             'updated_by' => [ | 
					
						
							|  |  |  |                 'name' => $page->createdBy->name, | 
					
						
							|  |  |  |             ], | 
					
						
							| 
									
										
										
										
											2021-01-04 06:29:58 +08:00
										 |  |  |             'owned_by' => [ | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  |                 'name' => $page->ownedBy->name, | 
					
						
							| 
									
										
										
										
											2021-01-04 06:29:58 +08:00
										 |  |  |             ], | 
					
						
							| 
									
										
										
										
											2020-11-29 00:30:30 +08:00
										 |  |  |         ]); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     public function test_read_endpoint_provides_rendered_html() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $this->actingAsApiEditor(); | 
					
						
							| 
									
										
										
										
											2022-09-30 05:11:16 +08:00
										 |  |  |         $page = $this->entities->page(); | 
					
						
							| 
									
										
										
										
											2020-11-29 00:30:30 +08:00
										 |  |  |         $page->html = "<p>testing</p><script>alert('danger')</script><h1>Hello</h1>"; | 
					
						
							|  |  |  |         $page->save(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $resp = $this->getJson($this->baseEndpoint . "/{$page->id}"); | 
					
						
							|  |  |  |         $html = $resp->json('html'); | 
					
						
							|  |  |  |         $this->assertStringNotContainsString('script', $html); | 
					
						
							|  |  |  |         $this->assertStringContainsString('Hello', $html); | 
					
						
							|  |  |  |         $this->assertStringContainsString('testing', $html); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-21 00:07:46 +08:00
										 |  |  |     public function test_read_endpoint_provides_raw_html() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $html = "<p>testing</p><script>alert('danger')</script><h1>Hello</h1>"; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $this->actingAsApiEditor(); | 
					
						
							|  |  |  |         $page = $this->entities->page(); | 
					
						
							|  |  |  |         $page->html = $html; | 
					
						
							|  |  |  |         $page->save(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $resp = $this->getJson($this->baseEndpoint . "/{$page->id}"); | 
					
						
							|  |  |  |         $this->assertEquals($html, $resp->json('raw_html')); | 
					
						
							|  |  |  |         $this->assertNotEquals($html, $resp->json('html')); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-08 15:53:53 +08:00
										 |  |  |     public function test_read_endpoint_returns_not_found() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $this->actingAsApiEditor(); | 
					
						
							|  |  |  |         // get an id that is not used
 | 
					
						
							|  |  |  |         $id = Page::orderBy('id', 'desc')->first()->id + 1; | 
					
						
							|  |  |  |         $this->assertNull(Page::find($id)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $resp = $this->getJson($this->baseEndpoint . "/$id"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $resp->assertNotFound(); | 
					
						
							|  |  |  |         $this->assertNull($resp->json('id')); | 
					
						
							|  |  |  |         $resp->assertJsonIsObject('error'); | 
					
						
							|  |  |  |         $resp->assertJsonStructure([ | 
					
						
							|  |  |  |             'error' => [ | 
					
						
							|  |  |  |                 'code', | 
					
						
							|  |  |  |                 'message', | 
					
						
							|  |  |  |             ], | 
					
						
							|  |  |  |         ]); | 
					
						
							|  |  |  |         $this->assertSame(404, $resp->json('error')['code']); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-29 00:30:30 +08:00
										 |  |  |     public function test_update_endpoint() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $this->actingAsApiEditor(); | 
					
						
							| 
									
										
										
										
											2022-09-30 05:11:16 +08:00
										 |  |  |         $page = $this->entities->page(); | 
					
						
							| 
									
										
										
										
											2020-11-29 00:30:30 +08:00
										 |  |  |         $details = [ | 
					
						
							|  |  |  |             'name' => 'My updated API page', | 
					
						
							|  |  |  |             'html' => '<p>A page created via the API</p>', | 
					
						
							|  |  |  |             'tags' => [ | 
					
						
							|  |  |  |                 [ | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  |                     'name'  => 'freshtag', | 
					
						
							| 
									
										
										
										
											2020-11-29 00:30:30 +08:00
										 |  |  |                     'value' => 'freshtagval', | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  |                 ], | 
					
						
							| 
									
										
										
										
											2020-11-29 00:30:30 +08:00
										 |  |  |             ], | 
					
						
							| 
									
										
										
										
											2023-07-11 20:11:13 +08:00
										 |  |  |             'priority' => 15, | 
					
						
							| 
									
										
										
										
											2020-11-29 00:30:30 +08:00
										 |  |  |         ]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $resp = $this->putJson($this->baseEndpoint . "/{$page->id}", $details); | 
					
						
							|  |  |  |         $page->refresh(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $resp->assertStatus(200); | 
					
						
							|  |  |  |         unset($details['html']); | 
					
						
							|  |  |  |         $resp->assertJson(array_merge($details, [ | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  |             'id' => $page->id, 'slug' => $page->slug, 'book_id' => $page->book_id, | 
					
						
							| 
									
										
										
										
											2020-11-29 00:30:30 +08:00
										 |  |  |         ])); | 
					
						
							|  |  |  |         $this->assertActivityExists('page_update', $page); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     public function test_providing_new_chapter_id_on_update_will_move_page() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $this->actingAsApiEditor(); | 
					
						
							| 
									
										
										
										
											2022-09-30 05:11:16 +08:00
										 |  |  |         $page = $this->entities->page(); | 
					
						
							| 
									
										
										
										
											2020-11-29 00:30:30 +08:00
										 |  |  |         $chapter = Chapter::visible()->where('book_id', '!=', $page->book_id)->first(); | 
					
						
							|  |  |  |         $details = [ | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  |             'name'       => 'My updated API page', | 
					
						
							| 
									
										
										
										
											2020-11-29 00:30:30 +08:00
										 |  |  |             'chapter_id' => $chapter->id, | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  |             'html'       => '<p>A page created via the API</p>', | 
					
						
							| 
									
										
										
										
											2020-11-29 00:30:30 +08:00
										 |  |  |         ]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $resp = $this->putJson($this->baseEndpoint . "/{$page->id}", $details); | 
					
						
							|  |  |  |         $resp->assertStatus(200); | 
					
						
							|  |  |  |         $resp->assertJson([ | 
					
						
							|  |  |  |             'chapter_id' => $chapter->id, | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  |             'book_id'    => $chapter->book_id, | 
					
						
							| 
									
										
										
										
											2020-11-29 00:30:30 +08:00
										 |  |  |         ]); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     public function test_providing_move_via_update_requires_page_create_permission_on_new_parent() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $this->actingAsApiEditor(); | 
					
						
							| 
									
										
										
										
											2022-09-30 05:11:16 +08:00
										 |  |  |         $page = $this->entities->page(); | 
					
						
							| 
									
										
										
										
											2020-11-29 00:30:30 +08:00
										 |  |  |         $chapter = Chapter::visible()->where('book_id', '!=', $page->book_id)->first(); | 
					
						
							| 
									
										
										
										
											2023-01-21 19:08:34 +08:00
										 |  |  |         $this->permissions->setEntityPermissions($chapter, ['view'], [$this->users->editor()->roles()->first()]); | 
					
						
							| 
									
										
										
										
											2020-11-29 00:30:30 +08:00
										 |  |  |         $details = [ | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  |             'name'       => 'My updated API page', | 
					
						
							| 
									
										
										
										
											2020-11-29 00:30:30 +08:00
										 |  |  |             'chapter_id' => $chapter->id, | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  |             'html'       => '<p>A page created via the API</p>', | 
					
						
							| 
									
										
										
										
											2020-11-29 00:30:30 +08:00
										 |  |  |         ]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $resp = $this->putJson($this->baseEndpoint . "/{$page->id}", $details); | 
					
						
							|  |  |  |         $resp->assertStatus(403); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-22 01:54:38 +08:00
										 |  |  |     public function test_update_endpoint_does_not_wipe_content_if_no_html_or_md_provided() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $this->actingAsApiEditor(); | 
					
						
							| 
									
										
										
										
											2022-09-30 05:11:16 +08:00
										 |  |  |         $page = $this->entities->page(); | 
					
						
							| 
									
										
										
										
											2021-08-22 01:54:38 +08:00
										 |  |  |         $originalContent = $page->html; | 
					
						
							|  |  |  |         $details = [ | 
					
						
							|  |  |  |             'name' => 'My updated API page', | 
					
						
							|  |  |  |             'tags' => [ | 
					
						
							|  |  |  |                 [ | 
					
						
							|  |  |  |                     'name'  => 'freshtag', | 
					
						
							|  |  |  |                     'value' => 'freshtagval', | 
					
						
							|  |  |  |                 ], | 
					
						
							|  |  |  |             ], | 
					
						
							|  |  |  |         ]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $this->putJson($this->baseEndpoint . "/{$page->id}", $details); | 
					
						
							|  |  |  |         $page->refresh(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $this->assertEquals($originalContent, $page->html); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-05 00:24:05 +08:00
										 |  |  |     public function test_update_increments_updated_date_if_only_tags_are_sent() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $this->actingAsApiEditor(); | 
					
						
							| 
									
										
										
										
											2022-09-30 05:11:16 +08:00
										 |  |  |         $page = $this->entities->page(); | 
					
						
							| 
									
										
										
										
											2022-04-05 00:24:05 +08:00
										 |  |  |         DB::table('pages')->where('id', '=', $page->id)->update(['updated_at' => Carbon::now()->subWeek()]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $details = [ | 
					
						
							| 
									
										
										
										
											2022-04-25 01:22:40 +08:00
										 |  |  |             'tags' => [['name' => 'Category', 'value' => 'Testing']], | 
					
						
							| 
									
										
										
										
											2022-04-05 00:24:05 +08:00
										 |  |  |         ]; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-24 06:20:46 +08:00
										 |  |  |         $resp = $this->putJson($this->baseEndpoint . "/{$page->id}", $details); | 
					
						
							|  |  |  |         $resp->assertOk(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-05 00:24:05 +08:00
										 |  |  |         $page->refresh(); | 
					
						
							|  |  |  |         $this->assertGreaterThan(Carbon::now()->subDay()->unix(), $page->updated_at->unix()); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-29 00:30:30 +08:00
										 |  |  |     public function test_delete_endpoint() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $this->actingAsApiEditor(); | 
					
						
							| 
									
										
										
										
											2022-09-30 05:11:16 +08:00
										 |  |  |         $page = $this->entities->page(); | 
					
						
							| 
									
										
										
										
											2020-11-29 00:30:30 +08:00
										 |  |  |         $resp = $this->deleteJson($this->baseEndpoint . "/{$page->id}"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $resp->assertStatus(204); | 
					
						
							|  |  |  |         $this->assertActivityExists('page_delete', $page); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     public function test_export_html_endpoint() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $this->actingAsApiEditor(); | 
					
						
							| 
									
										
										
										
											2022-09-30 05:11:16 +08:00
										 |  |  |         $page = $this->entities->page(); | 
					
						
							| 
									
										
										
										
											2020-11-29 00:30:30 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         $resp = $this->get($this->baseEndpoint . "/{$page->id}/export/html"); | 
					
						
							|  |  |  |         $resp->assertStatus(200); | 
					
						
							|  |  |  |         $resp->assertSee($page->name); | 
					
						
							|  |  |  |         $resp->assertHeader('Content-Disposition', 'attachment; filename="' . $page->slug . '.html"'); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     public function test_export_plain_text_endpoint() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $this->actingAsApiEditor(); | 
					
						
							| 
									
										
										
										
											2022-09-30 05:11:16 +08:00
										 |  |  |         $page = $this->entities->page(); | 
					
						
							| 
									
										
										
										
											2020-11-29 00:30:30 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         $resp = $this->get($this->baseEndpoint . "/{$page->id}/export/plaintext"); | 
					
						
							|  |  |  |         $resp->assertStatus(200); | 
					
						
							|  |  |  |         $resp->assertSee($page->name); | 
					
						
							|  |  |  |         $resp->assertHeader('Content-Disposition', 'attachment; filename="' . $page->slug . '.txt"'); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     public function test_export_pdf_endpoint() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $this->actingAsApiEditor(); | 
					
						
							| 
									
										
										
										
											2022-09-30 05:11:16 +08:00
										 |  |  |         $page = $this->entities->page(); | 
					
						
							| 
									
										
										
										
											2020-11-29 00:30:30 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         $resp = $this->get($this->baseEndpoint . "/{$page->id}/export/pdf"); | 
					
						
							|  |  |  |         $resp->assertStatus(200); | 
					
						
							|  |  |  |         $resp->assertHeader('Content-Disposition', 'attachment; filename="' . $page->slug . '.pdf"'); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-06-23 04:32:55 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     public function test_export_markdown_endpoint() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $this->actingAsApiEditor(); | 
					
						
							| 
									
										
										
										
											2022-09-30 05:11:16 +08:00
										 |  |  |         $page = $this->entities->page(); | 
					
						
							| 
									
										
										
										
											2021-06-23 04:32:55 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         $resp = $this->get($this->baseEndpoint . "/{$page->id}/export/markdown"); | 
					
						
							|  |  |  |         $resp->assertStatus(200); | 
					
						
							|  |  |  |         $resp->assertSee('# ' . $page->name); | 
					
						
							|  |  |  |         $resp->assertHeader('Content-Disposition', 'attachment; filename="' . $page->slug . '.md"'); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-08-29 04:48:17 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     public function test_cant_export_when_not_have_permission() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $types = ['html', 'plaintext', 'pdf', 'markdown']; | 
					
						
							|  |  |  |         $this->actingAsApiEditor(); | 
					
						
							| 
									
										
										
										
											2023-01-21 19:08:34 +08:00
										 |  |  |         $this->permissions->removeUserRolePermissions($this->users->editor(), ['content-export']); | 
					
						
							| 
									
										
										
										
											2021-08-29 04:48:17 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-30 05:11:16 +08:00
										 |  |  |         $page = $this->entities->page(); | 
					
						
							| 
									
										
										
										
											2021-08-29 04:48:17 +08:00
										 |  |  |         foreach ($types as $type) { | 
					
						
							|  |  |  |             $resp = $this->get($this->baseEndpoint . "/{$page->id}/export/{$type}"); | 
					
						
							|  |  |  |             $this->assertPermissionError($resp); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  | } |