2021-06-26 11:23:15 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Tests\Entity;
|
2020-11-06 07:54:39 -05:00
|
|
|
|
2021-01-04 12:52:08 -05:00
|
|
|
use BookStack\Entities\Models\Book;
|
2021-09-15 17:18:37 -04:00
|
|
|
use BookStack\Entities\Models\Chapter;
|
2020-11-21 19:17:45 -05:00
|
|
|
use BookStack\Entities\Models\Page;
|
2021-09-15 17:18:37 -04:00
|
|
|
use Carbon\Carbon;
|
2020-11-06 07:54:39 -05:00
|
|
|
use Tests\TestCase;
|
|
|
|
|
|
|
|
class PageTest extends TestCase
|
|
|
|
{
|
2021-09-17 16:29:16 -04:00
|
|
|
public function test_create()
|
|
|
|
{
|
|
|
|
/** @var Chapter $chapter */
|
|
|
|
$chapter = Chapter::query()->first();
|
2021-10-30 16:29:59 -04:00
|
|
|
$page = Page::factory()->make([
|
2021-09-17 16:29:16 -04:00
|
|
|
'name' => 'My First Page',
|
|
|
|
]);
|
|
|
|
|
|
|
|
$resp = $this->asEditor()->get($chapter->getUrl());
|
|
|
|
$resp->assertElementContains('a[href="' . $chapter->getUrl('/create-page') . '"]', 'New Page');
|
|
|
|
|
|
|
|
$resp = $this->get($chapter->getUrl('/create-page'));
|
|
|
|
/** @var Page $draftPage */
|
|
|
|
$draftPage = Page::query()
|
|
|
|
->where('draft', '=', true)
|
|
|
|
->orderBy('created_at', 'desc')
|
|
|
|
->first();
|
|
|
|
$resp->assertRedirect($draftPage->getUrl());
|
|
|
|
|
|
|
|
$resp = $this->get($draftPage->getUrl());
|
|
|
|
$resp->assertElementContains('form[action="' . $draftPage->getUrl() . '"][method="POST"]', 'Save Page');
|
|
|
|
|
|
|
|
$resp = $this->post($draftPage->getUrl(), $draftPage->only('name', 'html'));
|
|
|
|
$draftPage->refresh();
|
|
|
|
$resp->assertRedirect($draftPage->getUrl());
|
|
|
|
}
|
|
|
|
|
2021-04-20 16:03:44 -04:00
|
|
|
public function test_page_view_when_creator_is_deleted_but_owner_exists()
|
|
|
|
{
|
|
|
|
$page = Page::query()->first();
|
|
|
|
$user = $this->getViewer();
|
|
|
|
$owner = $this->getEditor();
|
|
|
|
$page->created_by = $user->id;
|
|
|
|
$page->owned_by = $owner->id;
|
|
|
|
$page->save();
|
|
|
|
$user->delete();
|
|
|
|
|
|
|
|
$resp = $this->asAdmin()->get($page->getUrl());
|
|
|
|
$resp->assertStatus(200);
|
|
|
|
$resp->assertSeeText('Owned by ' . $owner->name);
|
|
|
|
}
|
|
|
|
|
2021-01-04 12:52:08 -05:00
|
|
|
public function test_page_creation_with_markdown_content()
|
|
|
|
{
|
|
|
|
$this->setSettings(['app-editor' => 'markdown']);
|
|
|
|
$book = Book::query()->first();
|
|
|
|
|
|
|
|
$this->asEditor()->get($book->getUrl('/create-page'));
|
|
|
|
$draft = Page::query()->where('book_id', '=', $book->id)
|
|
|
|
->where('draft', '=', true)->first();
|
|
|
|
|
|
|
|
$details = [
|
|
|
|
'markdown' => '# a title',
|
2021-06-26 11:23:15 -04:00
|
|
|
'html' => '<h1>a title</h1>',
|
|
|
|
'name' => 'my page',
|
2021-01-04 12:52:08 -05:00
|
|
|
];
|
|
|
|
$resp = $this->post($book->getUrl("/draft/{$draft->id}"), $details);
|
|
|
|
$resp->assertRedirect();
|
|
|
|
|
|
|
|
$this->assertDatabaseHas('pages', [
|
|
|
|
'markdown' => $details['markdown'],
|
2021-06-26 11:23:15 -04:00
|
|
|
'name' => $details['name'],
|
|
|
|
'id' => $draft->id,
|
|
|
|
'draft' => false,
|
2021-01-04 12:52:08 -05:00
|
|
|
]);
|
|
|
|
|
|
|
|
$draft->refresh();
|
2021-06-26 11:23:15 -04:00
|
|
|
$resp = $this->get($draft->getUrl('/edit'));
|
|
|
|
$resp->assertSee('# a title');
|
2021-01-04 12:52:08 -05:00
|
|
|
}
|
|
|
|
|
2020-11-06 07:54:39 -05:00
|
|
|
public function test_page_delete()
|
|
|
|
{
|
|
|
|
$page = Page::query()->first();
|
|
|
|
$this->assertNull($page->deleted_at);
|
|
|
|
|
|
|
|
$deleteViewReq = $this->asEditor()->get($page->getUrl('/delete'));
|
|
|
|
$deleteViewReq->assertSeeText('Are you sure you want to delete this page?');
|
|
|
|
|
|
|
|
$deleteReq = $this->delete($page->getUrl());
|
|
|
|
$deleteReq->assertRedirect($page->getParent()->getUrl());
|
|
|
|
$this->assertActivityExists('page_delete', $page);
|
|
|
|
|
|
|
|
$page->refresh();
|
|
|
|
$this->assertNotNull($page->deleted_at);
|
|
|
|
$this->assertTrue($page->deletions()->count() === 1);
|
|
|
|
|
|
|
|
$redirectReq = $this->get($deleteReq->baseResponse->headers->get('location'));
|
|
|
|
$redirectReq->assertNotificationContains('Page Successfully Deleted');
|
|
|
|
}
|
2021-01-09 14:39:09 -05:00
|
|
|
|
2021-05-26 11:40:56 -04:00
|
|
|
public function test_page_full_delete_removes_all_revisions()
|
|
|
|
{
|
|
|
|
/** @var Page $page */
|
|
|
|
$page = Page::query()->first();
|
|
|
|
$page->revisions()->create([
|
|
|
|
'html' => '<p>ducks</p>',
|
|
|
|
'name' => 'my page revision',
|
|
|
|
'type' => 'draft',
|
|
|
|
]);
|
|
|
|
$page->revisions()->create([
|
|
|
|
'html' => '<p>ducks</p>',
|
|
|
|
'name' => 'my page revision',
|
|
|
|
'type' => 'revision',
|
|
|
|
]);
|
|
|
|
|
|
|
|
$this->assertDatabaseHas('page_revisions', [
|
|
|
|
'page_id' => $page->id,
|
|
|
|
]);
|
|
|
|
|
|
|
|
$this->asEditor()->delete($page->getUrl());
|
|
|
|
$this->asAdmin()->post('/settings/recycle-bin/empty');
|
|
|
|
|
|
|
|
$this->assertDatabaseMissing('page_revisions', [
|
|
|
|
'page_id' => $page->id,
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
2021-01-09 14:39:09 -05:00
|
|
|
public function test_page_copy()
|
|
|
|
{
|
|
|
|
$page = Page::first();
|
|
|
|
$page->html = '<p>This is some test content</p>';
|
|
|
|
$page->save();
|
|
|
|
|
|
|
|
$currentBook = $page->book;
|
|
|
|
$newBook = Book::where('id', '!=', $currentBook->id)->first();
|
|
|
|
|
|
|
|
$resp = $this->asEditor()->get($page->getUrl('/copy'));
|
|
|
|
$resp->assertSee('Copy Page');
|
|
|
|
|
|
|
|
$movePageResp = $this->post($page->getUrl('/copy'), [
|
|
|
|
'entity_selection' => 'book:' . $newBook->id,
|
2021-06-26 11:23:15 -04:00
|
|
|
'name' => 'My copied test page',
|
2021-01-09 14:39:09 -05:00
|
|
|
]);
|
|
|
|
$pageCopy = Page::where('name', '=', 'My copied test page')->first();
|
|
|
|
|
|
|
|
$movePageResp->assertRedirect($pageCopy->getUrl());
|
|
|
|
$this->assertTrue($pageCopy->book->id == $newBook->id, 'Page was copied to correct book');
|
|
|
|
$this->assertStringContainsString('This is some test content', $pageCopy->html);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function test_page_copy_with_markdown_has_both_html_and_markdown()
|
|
|
|
{
|
|
|
|
$page = Page::first();
|
|
|
|
$page->html = '<h1>This is some test content</h1>';
|
|
|
|
$page->markdown = '# This is some test content';
|
|
|
|
$page->save();
|
|
|
|
$newBook = Book::where('id', '!=', $page->book->id)->first();
|
|
|
|
|
|
|
|
$this->asEditor()->post($page->getUrl('/copy'), [
|
|
|
|
'entity_selection' => 'book:' . $newBook->id,
|
2021-06-26 11:23:15 -04:00
|
|
|
'name' => 'My copied test page',
|
2021-01-09 14:39:09 -05:00
|
|
|
]);
|
|
|
|
$pageCopy = Page::where('name', '=', 'My copied test page')->first();
|
|
|
|
|
|
|
|
$this->assertStringContainsString('This is some test content', $pageCopy->html);
|
|
|
|
$this->assertEquals('# This is some test content', $pageCopy->markdown);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function test_page_copy_with_no_destination()
|
|
|
|
{
|
|
|
|
$page = Page::first();
|
|
|
|
$currentBook = $page->book;
|
|
|
|
|
|
|
|
$resp = $this->asEditor()->get($page->getUrl('/copy'));
|
|
|
|
$resp->assertSee('Copy Page');
|
|
|
|
|
|
|
|
$movePageResp = $this->post($page->getUrl('/copy'), [
|
2021-06-26 11:23:15 -04:00
|
|
|
'name' => 'My copied test page',
|
2021-01-09 14:39:09 -05:00
|
|
|
]);
|
|
|
|
|
|
|
|
$pageCopy = Page::where('name', '=', 'My copied test page')->first();
|
|
|
|
|
|
|
|
$movePageResp->assertRedirect($pageCopy->getUrl());
|
|
|
|
$this->assertTrue($pageCopy->book->id == $currentBook->id, 'Page was copied to correct book');
|
|
|
|
$this->assertTrue($pageCopy->id !== $page->id, 'Page copy is not the same instance');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function test_page_can_be_copied_without_edit_permission()
|
|
|
|
{
|
|
|
|
$page = Page::first();
|
|
|
|
$currentBook = $page->book;
|
|
|
|
$newBook = Book::where('id', '!=', $currentBook->id)->first();
|
|
|
|
$viewer = $this->getViewer();
|
|
|
|
|
|
|
|
$resp = $this->actingAs($viewer)->get($page->getUrl());
|
|
|
|
$resp->assertDontSee($page->getUrl('/copy'));
|
|
|
|
|
|
|
|
$newBook->owned_by = $viewer->id;
|
|
|
|
$newBook->save();
|
|
|
|
$this->giveUserPermissions($viewer, ['page-create-own']);
|
|
|
|
$this->regenEntityPermissions($newBook);
|
|
|
|
|
|
|
|
$resp = $this->actingAs($viewer)->get($page->getUrl());
|
|
|
|
$resp->assertSee($page->getUrl('/copy'));
|
|
|
|
|
|
|
|
$movePageResp = $this->post($page->getUrl('/copy'), [
|
|
|
|
'entity_selection' => 'book:' . $newBook->id,
|
2021-06-26 11:23:15 -04:00
|
|
|
'name' => 'My copied test page',
|
2021-01-09 14:39:09 -05:00
|
|
|
]);
|
|
|
|
$movePageResp->assertRedirect();
|
|
|
|
|
|
|
|
$this->assertDatabaseHas('pages', [
|
2021-06-26 11:23:15 -04:00
|
|
|
'name' => 'My copied test page',
|
2021-01-09 14:39:09 -05:00
|
|
|
'created_by' => $viewer->id,
|
2021-06-26 11:23:15 -04:00
|
|
|
'book_id' => $newBook->id,
|
2021-01-09 14:39:09 -05:00
|
|
|
]);
|
|
|
|
}
|
2021-05-15 12:33:53 -04:00
|
|
|
|
2021-09-15 17:18:37 -04:00
|
|
|
public function test_old_page_slugs_redirect_to_new_pages()
|
2021-05-15 12:33:53 -04:00
|
|
|
{
|
2021-09-15 17:18:37 -04:00
|
|
|
/** @var Page $page */
|
|
|
|
$page = Page::query()->first();
|
2021-05-15 12:33:53 -04:00
|
|
|
|
2021-09-15 17:18:37 -04:00
|
|
|
// Need to save twice since revisions are not generated in seeder.
|
|
|
|
$this->asAdmin()->put($page->getUrl(), [
|
|
|
|
'name' => 'super test',
|
2021-09-18 16:21:44 -04:00
|
|
|
'html' => '<p></p>',
|
2021-09-15 17:18:37 -04:00
|
|
|
]);
|
2021-05-15 12:33:53 -04:00
|
|
|
|
2021-09-15 17:18:37 -04:00
|
|
|
$page->refresh();
|
|
|
|
$pageUrl = $page->getUrl();
|
2021-05-15 12:33:53 -04:00
|
|
|
|
2021-09-15 17:18:37 -04:00
|
|
|
$this->put($pageUrl, [
|
|
|
|
'name' => 'super test page',
|
2021-09-18 16:21:44 -04:00
|
|
|
'html' => '<p></p>',
|
2021-05-15 12:33:53 -04:00
|
|
|
]);
|
2021-09-15 17:18:37 -04:00
|
|
|
|
|
|
|
$this->get($pageUrl)
|
|
|
|
->assertRedirect("/books/{$page->book->slug}/page/super-test-page");
|
2021-05-15 12:33:53 -04:00
|
|
|
}
|
2021-09-15 17:18:37 -04:00
|
|
|
|
|
|
|
public function test_page_within_chapter_deletion_returns_to_chapter()
|
|
|
|
{
|
|
|
|
/** @var Chapter $chapter */
|
|
|
|
$chapter = Chapter::query()->first();
|
|
|
|
$page = $chapter->pages()->first();
|
|
|
|
|
|
|
|
$this->asEditor()->delete($page->getUrl())
|
|
|
|
->assertRedirect($chapter->getUrl());
|
|
|
|
}
|
|
|
|
|
|
|
|
public function test_recently_updated_pages_view()
|
|
|
|
{
|
|
|
|
$user = $this->getEditor();
|
|
|
|
$content = $this->createEntityChainBelongingToUser($user);
|
|
|
|
|
|
|
|
$this->asAdmin()->get('/pages/recently-updated')
|
|
|
|
->assertElementContains('.entity-list .page:nth-child(1)', $content['page']->name);
|
|
|
|
}
|
|
|
|
|
2022-01-24 13:23:16 -05:00
|
|
|
public function test_recently_updated_pages_view_shows_updated_by_details()
|
|
|
|
{
|
|
|
|
$user = $this->getEditor();
|
|
|
|
/** @var Page $page */
|
|
|
|
$page = Page::query()->first();
|
|
|
|
|
|
|
|
$this->actingAs($user)->put($page->getUrl(), [
|
|
|
|
'name' => 'Updated title',
|
|
|
|
'html' => '<p>Updated content</p>',
|
|
|
|
]);
|
|
|
|
|
|
|
|
$resp = $this->asAdmin()->get('/pages/recently-updated');
|
|
|
|
$resp->assertElementContains('.entity-list .page:nth-child(1)', 'Updated 1 second ago by ' . $user->name);
|
|
|
|
}
|
|
|
|
|
2022-01-24 16:21:30 -05:00
|
|
|
public function test_recently_updated_pages_view_shows_parent_chain()
|
|
|
|
{
|
|
|
|
$user = $this->getEditor();
|
|
|
|
/** @var Page $page */
|
|
|
|
$page = Page::query()->whereNotNull('chapter_id')->first();
|
|
|
|
|
|
|
|
$this->actingAs($user)->put($page->getUrl(), [
|
|
|
|
'name' => 'Updated title',
|
|
|
|
'html' => '<p>Updated content</p>',
|
|
|
|
]);
|
|
|
|
|
|
|
|
$resp = $this->asAdmin()->get('/pages/recently-updated');
|
|
|
|
$resp->assertElementContains('.entity-list .page:nth-child(1)', $page->chapter->getShortName(42));
|
|
|
|
$resp->assertElementContains('.entity-list .page:nth-child(1)', $page->book->getShortName(42));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function test_recently_updated_pages_view_does_not_show_parent_if_not_visible()
|
|
|
|
{
|
|
|
|
$user = $this->getEditor();
|
|
|
|
/** @var Page $page */
|
|
|
|
$page = Page::query()->whereNotNull('chapter_id')->first();
|
|
|
|
|
|
|
|
$this->actingAs($user)->put($page->getUrl(), [
|
|
|
|
'name' => 'Updated title',
|
|
|
|
'html' => '<p>Updated content</p>',
|
|
|
|
]);
|
|
|
|
|
|
|
|
$this->setEntityRestrictions($page->book);
|
|
|
|
$this->setEntityRestrictions($page, ['view'], [$user->roles->first()]);
|
|
|
|
|
|
|
|
$resp = $this->get('/pages/recently-updated');
|
|
|
|
$resp->assertDontSee($page->book->getShortName(42));
|
|
|
|
$resp->assertDontSee($page->chapter->getShortName(42));
|
|
|
|
$resp->assertElementContains('.entity-list .page:nth-child(1)', 'Updated title');
|
|
|
|
}
|
|
|
|
|
2021-09-15 17:18:37 -04:00
|
|
|
public function test_recently_updated_pages_on_home()
|
|
|
|
{
|
|
|
|
/** @var Page $page */
|
|
|
|
$page = Page::query()->orderBy('updated_at', 'asc')->first();
|
|
|
|
Page::query()->where('id', '!=', $page->id)->update([
|
|
|
|
'updated_at' => Carbon::now()->subSecond(1),
|
|
|
|
]);
|
|
|
|
|
|
|
|
$this->asAdmin()->get('/')
|
|
|
|
->assertElementNotContains('#recently-updated-pages', $page->name);
|
|
|
|
|
|
|
|
$this->put($page->getUrl(), [
|
|
|
|
'name' => $page->name,
|
|
|
|
'html' => $page->html,
|
|
|
|
]);
|
|
|
|
|
|
|
|
$this->get('/')
|
|
|
|
->assertElementContains('#recently-updated-pages', $page->name);
|
|
|
|
}
|
2021-06-26 11:23:15 -04:00
|
|
|
}
|