X-Git-Url: http://source.bookstackapp.com/bookstack/blobdiff_plain/a6633642232efd164d4708967ab59e498fbff896..refs/heads/development:/tests/Entity/PageRevisionTest.php diff --git a/tests/Entity/PageRevisionTest.php b/tests/Entity/PageRevisionTest.php index 68a8f01a9..9040254f7 100644 --- a/tests/Entity/PageRevisionTest.php +++ b/tests/Entity/PageRevisionTest.php @@ -1,38 +1,46 @@ -entities->page(); + + $html = $this->withHtml($this->asViewer()->get($page->getUrl())); + $html->assertLinkExists($page->getUrl('/revisions')); + $html->assertElementContains('a', 'Revisions'); + $html->assertElementContains('a', 'Revision #1'); + } + public function test_page_revision_views_viewable() { $this->asEditor(); - - $pageRepo = app(PageRepo::class); - $page = Page::first(); - $pageRepo->update($page, ['name' => 'updated page', 'html' => '
new content
', 'summary' => 'page revision testing']); + $page = $this->entities->page(); + $this->createRevisions($page, 1, ['name' => 'updated page', 'html' => 'new content
']); $pageRevision = $page->revisions->last(); - $revisionView = $this->get($page->getUrl() . '/revisions/' . $pageRevision->id); - $revisionView->assertStatus(200); - $revisionView->assertSee('new content'); + $resp = $this->get($page->getUrl() . '/revisions/' . $pageRevision->id); + $resp->assertStatus(200); + $resp->assertSee('new content'); - $revisionView = $this->get($page->getUrl() . '/revisions/' . $pageRevision->id . '/changes'); - $revisionView->assertStatus(200); - $revisionView->assertSee('new content'); + $resp = $this->get($page->getUrl() . '/revisions/' . $pageRevision->id . '/changes'); + $resp->assertStatus(200); + $resp->assertSee('new content'); } public function test_page_revision_preview_shows_content_of_revision() { $this->asEditor(); - - $pageRepo = app(PageRepo::class); - $page = Page::first(); - $pageRepo->update($page, ['name' => 'updated page', 'html' => 'new revision content
', 'summary' => 'page revision testing']); + $page = $this->entities->page(); + $this->createRevisions($page, 1, ['name' => 'updated page', 'html' => 'new revision content
']); $pageRevision = $page->revisions->last(); - $pageRepo->update($page, ['name' => 'updated page', 'html' => 'Updated content
', 'summary' => 'page revision testing 2']); + $this->createRevisions($page, 1, ['name' => 'updated page', 'html' => 'Updated content
']); $revisionView = $this->get($page->getUrl() . '/revisions/' . $pageRevision->id); $revisionView->assertStatus(200); @@ -42,13 +50,34 @@ class PageRevisionTest extends TestCase public function test_page_revision_restore_updates_content() { $this->asEditor(); + $page = $this->entities->page(); + $this->createRevisions($page, 1, ['name' => 'updated page abc123', 'html' => 'new contente def456
']); + $this->createRevisions($page, 1, ['name' => 'updated page again', 'html' => 'new content
']); + $page = Page::find($page->id); + + $pageView = $this->get($page->getUrl()); + $pageView->assertDontSee('abc123'); + $pageView->assertDontSee('def456'); - $pageRepo = app(PageRepo::class); - $page = Page::first(); - $pageRepo->update($page, ['name' => 'updated page abc123', 'html' => 'new contente def456
', 'summary' => 'initial page revision testing']); - $pageRepo->update($page, ['name' => 'updated page again', 'html' => 'new content
', 'summary' => 'page revision testing']); - $page = Page::find($page->id); + $revToRestore = $page->revisions()->where('name', 'like', '%abc123')->first(); + $restoreReq = $this->put($page->getUrl() . '/revisions/' . $revToRestore->id . '/restore'); + $page = Page::find($page->id); + $restoreReq->assertStatus(302); + $restoreReq->assertRedirect($page->getUrl()); + + $pageView = $this->get($page->getUrl()); + $pageView->assertSee('abc123'); + $pageView->assertSee('def456'); + } + + public function test_page_revision_restore_with_markdown_retains_markdown_content() + { + $this->asEditor(); + $page = $this->entities->page(); + $this->createRevisions($page, 1, ['name' => 'updated page abc123', 'markdown' => '## New Content def456']); + $this->createRevisions($page, 1, ['name' => 'updated page again', 'markdown' => '## New Content Updated']); + $page = Page::find($page->id); $pageView = $this->get($page->getUrl()); $pageView->assertDontSee('abc123'); @@ -56,12 +85,16 @@ class PageRevisionTest extends TestCase $revToRestore = $page->revisions()->where('name', 'like', '%abc123')->first(); $restoreReq = $this->put($page->getUrl() . '/revisions/' . $revToRestore->id . '/restore'); - $page = Page::find($page->id); + $page = Page::find($page->id); $restoreReq->assertStatus(302); $restoreReq->assertRedirect($page->getUrl()); $pageView = $this->get($page->getUrl()); + $this->assertDatabaseHas('pages', [ + 'id' => $page->id, + 'markdown' => '## New Content def456', + ]); $pageView->assertSee('abc123'); $pageView->assertSee('def456'); } @@ -69,11 +102,9 @@ class PageRevisionTest extends TestCase public function test_page_revision_restore_sets_new_revision_with_summary() { $this->asEditor(); - - $pageRepo = app(PageRepo::class); - $page = Page::first(); - $pageRepo->update($page, ['name' => 'updated page abc123', 'html' => 'new contente def456
', 'summary' => 'My first update']); - $pageRepo->update($page, ['name' => 'updated page again', 'html' => 'new content
', 'summary' => '']); + $page = $this->entities->page(); + $this->createRevisions($page, 1, ['name' => 'updated page abc123', 'html' => 'new contente def456
', 'summary' => 'My first update']); + $this->createRevisions($page, 1, ['html' => 'new content
']); $page->refresh(); $revToRestore = $page->revisions()->where('name', 'like', '%abc123')->first(); @@ -82,43 +113,37 @@ class PageRevisionTest extends TestCase $this->assertDatabaseHas('page_revisions', [ 'page_id' => $page->id, - 'text' => 'new contente def456', - 'type' => 'version', + 'text' => 'new contente def456', + 'type' => 'version', 'summary' => "Restored from #{$revToRestore->id}; My first update", ]); + + $detail = "Revision #{$revToRestore->revision_number} (ID: {$revToRestore->id}) for page ID {$revToRestore->page_id}"; + $this->assertActivityExists(ActivityType::REVISION_RESTORE, null, $detail); } public function test_page_revision_count_increments_on_update() { - $page = Page::first(); + $page = $this->entities->page(); $startCount = $page->revision_count; - $resp = $this->asEditor()->put($page->getUrl(), ['name' => 'Updated page', 'html' => 'new page html', 'summary' => 'Update a']); - $resp->assertStatus(302); + $this->createRevisions($page, 1); - $this->assertTrue(Page::find($page->id)->revision_count === $startCount+1); + $this->assertTrue(Page::find($page->id)->revision_count === $startCount + 1); } public function test_revision_count_shown_in_page_meta() { - $page = Page::first(); - $this->asEditor()->put($page->getUrl(), ['name' => 'Updated page', 'html' => 'new page html', 'summary' => 'Update a']); - - $page = Page::find($page->id); - $this->asEditor()->put($page->getUrl(), ['name' => 'Updated page', 'html' => 'new page html', 'summary' => 'Update a']); + $page = $this->entities->page(); + $this->createRevisions($page, 2); - $page = Page::find($page->id); - $pageView = $this->get($page->getUrl()); + $pageView = $this->asViewer()->get($page->getUrl()); $pageView->assertSee('Revision #' . $page->revision_count); } - public function test_revision_deletion() { - $page = Page::first(); - $this->asEditor()->put($page->getUrl(), ['name' => 'Updated page', 'html' => 'new page html', 'summary' => 'Update a']); - - $page = Page::find($page->id); - $this->asEditor()->put($page->getUrl(), ['name' => 'Updated page', 'html' => 'new page html', 'summary' => 'Update a']); - - $page = Page::find($page->id); + public function test_revision_deletion() + { + $page = $this->entities->page(); + $this->createRevisions($page, 2); $beforeRevisionCount = $page->revisions->count(); // Delete the first revision @@ -126,18 +151,20 @@ class PageRevisionTest extends TestCase $resp = $this->asEditor()->delete($revision->getUrl('/delete/')); $resp->assertRedirect($page->getUrl('/revisions')); - $page = Page::find($page->id); + $page->refresh(); $afterRevisionCount = $page->revisions->count(); $this->assertTrue($beforeRevisionCount === ($afterRevisionCount + 1)); + $detail = "Revision #{$revision->revision_number} (ID: {$revision->id}) for page ID {$revision->page_id}"; + $this->assertActivityExists(ActivityType::REVISION_DELETE, null, $detail); + // Try to delete the latest revision $beforeRevisionCount = $page->revisions->count(); - $currentRevision = $page->getCurrentRevision(); - $resp = $this->asEditor()->delete($currentRevision->getUrl('/delete/')); + $resp = $this->asEditor()->delete($page->currentRevision->getUrl('/delete/')); $resp->assertRedirect($page->getUrl('/revisions')); - $page = Page::find($page->id); + $page->refresh(); $afterRevisionCount = $page->revisions->count(); $this->assertTrue($beforeRevisionCount === $afterRevisionCount); } @@ -145,13 +172,8 @@ class PageRevisionTest extends TestCase public function test_revision_limit_enforced() { config()->set('app.revision_limit', 2); - $page = Page::first(); - $this->asEditor()->put($page->getUrl(), ['name' => 'Updated page', 'html' => 'new page html', 'summary' => 'Update a']); - $page = Page::find($page->id); - $this->asEditor()->put($page->getUrl(), ['name' => 'Updated page', 'html' => 'new page html', 'summary' => 'Update a']); - for ($i = 0; $i < 10; $i++) { - $this->asEditor()->put($page->getUrl(), ['name' => 'Updated page', 'html' => 'new page html', 'summary' => 'Update a']); - } + $page = $this->entities->page(); + $this->createRevisions($page, 12); $revisionCount = $page->revisions()->count(); $this->assertEquals(2, $revisionCount); @@ -160,15 +182,88 @@ class PageRevisionTest extends TestCase public function test_false_revision_limit_allows_many_revisions() { config()->set('app.revision_limit', false); - $page = Page::first(); - $this->asEditor()->put($page->getUrl(), ['name' => 'Updated page', 'html' => 'new page html', 'summary' => 'Update a']); - $page = Page::find($page->id); - $this->asEditor()->put($page->getUrl(), ['name' => 'Updated page', 'html' => 'new page html', 'summary' => 'Update a']); - for ($i = 0; $i < 10; $i++) { - $this->asEditor()->put($page->getUrl(), ['name' => 'Updated page', 'html' => 'new page html', 'summary' => 'Update a']); - } + $page = $this->entities->page(); + $this->createRevisions($page, 12); $revisionCount = $page->revisions()->count(); $this->assertEquals(12, $revisionCount); } -} \ No newline at end of file + + public function test_revision_list_shows_editor_type() + { + $page = $this->entities->page(); + $this->createRevisions($page, 1, ['html' => 'new page html']); + + $resp = $this->asAdmin()->get($page->refresh()->getUrl('/revisions')); + $this->withHtml($resp)->assertElementContains('.item-list-row > div:nth-child(2)', 'WYSIWYG)'); + $this->withHtml($resp)->assertElementNotContains('.item-list-row > div:nth-child(2)', 'Markdown)'); + + $this->createRevisions($page, 1, ['markdown' => '# Some markdown content']); + $resp = $this->get($page->refresh()->getUrl('/revisions')); + $this->withHtml($resp)->assertElementContains('.item-list-row > div:nth-child(2)', 'Markdown)'); + } + + public function test_revision_changes_link_not_shown_for_oldest_revision() + { + $page = $this->entities->page(); + $this->createRevisions($page, 3, ['html' => 'new page html']); + + $resp = $this->asAdmin()->get($page->refresh()->getUrl('/revisions')); + $html = $this->withHtml($resp); + + $html->assertElementNotExists('.item-list > .item-list-row:last-child a[href*="/changes"]'); + $html->assertElementContains('.item-list > .item-list-row:nth-child(2)', 'Changes'); + } + + public function test_revision_restore_action_only_visible_with_permission() + { + $page = $this->entities->page(); + $this->createRevisions($page, 2); + + $viewer = $this->users->viewer(); + $this->actingAs($viewer); + $respHtml = $this->withHtml($this->get($page->getUrl('/revisions'))); + $respHtml->assertElementNotContains('.actions a', 'Restore'); + $respHtml->assertElementNotExists('form[action$="/restore"]'); + + $this->permissions->grantUserRolePermissions($viewer, ['page-update-all']); + + $respHtml = $this->withHtml($this->get($page->getUrl('/revisions'))); + $respHtml->assertElementContains('.actions a', 'Restore'); + $respHtml->assertElementExists('form[action$="/restore"]'); + } + + public function test_revision_delete_action_only_visible_with_permission() + { + $page = $this->entities->page(); + $this->createRevisions($page, 2); + + $viewer = $this->users->viewer(); + $this->actingAs($viewer); + $respHtml = $this->withHtml($this->get($page->getUrl('/revisions'))); + $respHtml->assertElementNotContains('.actions a', 'Delete'); + $respHtml->assertElementNotExists('form[action$="/delete"]'); + + $this->permissions->grantUserRolePermissions($viewer, ['page-delete-all']); + + $respHtml = $this->withHtml($this->get($page->getUrl('/revisions'))); + $respHtml->assertElementContains('.actions a', 'Delete'); + $respHtml->assertElementExists('form[action$="/delete"]'); + } + + protected function createRevisions(Page $page, int $times, array $attrs = []) + { + $user = user(); + + for ($i = 0; $i < $times; $i++) { + $data = ['name' => 'Page update' . $i, 'summary' => 'Update entry' . $i]; + if (!isset($attrs['markdown'])) { + $data['html'] = 'My update page
'; + } + $this->asAdmin()->put($page->getUrl(), array_merge($data, $attrs)); + $page->refresh(); + } + + $this->actingAs($user); + } +}