2021-06-26 11:23:15 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Tests\Entity;
|
2020-11-06 07:54:39 -05:00
|
|
|
|
2021-09-17 16:29:16 -04:00
|
|
|
use BookStack\Entities\Models\Book;
|
2020-11-21 19:17:45 -05:00
|
|
|
use BookStack\Entities\Models\Chapter;
|
2021-12-19 10:40:52 -05:00
|
|
|
use BookStack\Entities\Models\Page;
|
2020-11-06 07:54:39 -05:00
|
|
|
use Tests\TestCase;
|
|
|
|
|
|
|
|
class ChapterTest extends TestCase
|
|
|
|
{
|
2021-09-17 16:29:16 -04:00
|
|
|
public function test_create()
|
|
|
|
{
|
|
|
|
/** @var Book $book */
|
|
|
|
$book = Book::query()->first();
|
|
|
|
|
2021-10-30 16:29:59 -04:00
|
|
|
$chapter = Chapter::factory()->make([
|
2021-09-17 16:29:16 -04:00
|
|
|
'name' => 'My First Chapter',
|
|
|
|
]);
|
|
|
|
|
|
|
|
$resp = $this->asEditor()->get($book->getUrl());
|
|
|
|
$resp->assertElementContains('a[href="' . $book->getUrl('/create-chapter') . '"]', 'New Chapter');
|
|
|
|
|
|
|
|
$resp = $this->get($book->getUrl('/create-chapter'));
|
|
|
|
$resp->assertElementContains('form[action="' . $book->getUrl('/create-chapter') . '"][method="POST"]', 'Save Chapter');
|
|
|
|
|
|
|
|
$resp = $this->post($book->getUrl('/create-chapter'), $chapter->only('name', 'description'));
|
|
|
|
$resp->assertRedirect($book->getUrl('/chapter/my-first-chapter'));
|
|
|
|
|
|
|
|
$resp = $this->get($book->getUrl('/chapter/my-first-chapter'));
|
|
|
|
$resp->assertSee($chapter->name);
|
|
|
|
$resp->assertSee($chapter->description);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function test_delete()
|
2020-11-06 07:54:39 -05:00
|
|
|
{
|
|
|
|
$chapter = Chapter::query()->whereHas('pages')->first();
|
|
|
|
$this->assertNull($chapter->deleted_at);
|
|
|
|
$pageCount = $chapter->pages()->count();
|
|
|
|
|
|
|
|
$deleteViewReq = $this->asEditor()->get($chapter->getUrl('/delete'));
|
|
|
|
$deleteViewReq->assertSeeText('Are you sure you want to delete this chapter?');
|
|
|
|
|
|
|
|
$deleteReq = $this->delete($chapter->getUrl());
|
|
|
|
$deleteReq->assertRedirect($chapter->getParent()->getUrl());
|
|
|
|
$this->assertActivityExists('chapter_delete', $chapter);
|
|
|
|
|
|
|
|
$chapter->refresh();
|
|
|
|
$this->assertNotNull($chapter->deleted_at);
|
|
|
|
|
|
|
|
$this->assertTrue($chapter->pages()->count() === 0);
|
|
|
|
$this->assertTrue($chapter->pages()->withTrashed()->count() === $pageCount);
|
|
|
|
$this->assertTrue($chapter->deletions()->count() === 1);
|
|
|
|
|
|
|
|
$redirectReq = $this->get($deleteReq->baseResponse->headers->get('location'));
|
|
|
|
$redirectReq->assertNotificationContains('Chapter Successfully Deleted');
|
|
|
|
}
|
2021-12-19 10:40:52 -05:00
|
|
|
|
|
|
|
public function test_show_view_has_copy_button()
|
|
|
|
{
|
|
|
|
/** @var Chapter $chapter */
|
|
|
|
$chapter = Chapter::query()->first();
|
|
|
|
|
|
|
|
$resp = $this->asEditor()->get($chapter->getUrl());
|
|
|
|
$resp->assertElementContains("a[href$=\"{$chapter->getUrl('/copy')}\"]", 'Copy');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function test_copy_view()
|
|
|
|
{
|
|
|
|
/** @var Chapter $chapter */
|
|
|
|
$chapter = Chapter::query()->first();
|
|
|
|
|
|
|
|
$resp = $this->asEditor()->get($chapter->getUrl('/copy'));
|
|
|
|
$resp->assertOk();
|
|
|
|
$resp->assertSee('Copy Chapter');
|
|
|
|
$resp->assertElementExists("input[name=\"name\"][value=\"{$chapter->name}\"]");
|
2021-12-20 12:40:27 -05:00
|
|
|
$resp->assertElementExists('input[name="entity_selection"]');
|
2021-12-19 10:40:52 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
public function test_copy()
|
|
|
|
{
|
|
|
|
/** @var Chapter $chapter */
|
|
|
|
$chapter = Chapter::query()->whereHas('pages')->first();
|
|
|
|
/** @var Book $otherBook */
|
|
|
|
$otherBook = Book::query()->where('id', '!=', $chapter->book_id)->first();
|
|
|
|
|
|
|
|
$resp = $this->asEditor()->post($chapter->getUrl('/copy'), [
|
2021-12-20 12:40:27 -05:00
|
|
|
'name' => 'My copied chapter',
|
2021-12-19 10:40:52 -05:00
|
|
|
'entity_selection' => 'book:' . $otherBook->id,
|
|
|
|
]);
|
|
|
|
|
|
|
|
/** @var Chapter $newChapter */
|
|
|
|
$newChapter = Chapter::query()->where('name', '=', 'My copied chapter')->first();
|
|
|
|
|
|
|
|
$resp->assertRedirect($newChapter->getUrl());
|
|
|
|
$this->assertEquals($otherBook->id, $newChapter->book_id);
|
|
|
|
$this->assertEquals($chapter->pages->count(), $newChapter->pages->count());
|
|
|
|
}
|
|
|
|
|
|
|
|
public function test_copy_does_not_copy_non_visible_pages()
|
|
|
|
{
|
|
|
|
/** @var Chapter $chapter */
|
|
|
|
$chapter = Chapter::query()->whereHas('pages')->first();
|
|
|
|
|
|
|
|
// Hide pages to all non-admin roles
|
|
|
|
/** @var Page $page */
|
|
|
|
foreach ($chapter->pages as $page) {
|
|
|
|
$page->restricted = true;
|
|
|
|
$page->save();
|
|
|
|
$this->regenEntityPermissions($page);
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->asEditor()->post($chapter->getUrl('/copy'), [
|
|
|
|
'name' => 'My copied chapter',
|
|
|
|
]);
|
|
|
|
|
|
|
|
/** @var Chapter $newChapter */
|
|
|
|
$newChapter = Chapter::query()->where('name', '=', 'My copied chapter')->first();
|
|
|
|
$this->assertEquals(0, $newChapter->pages()->count());
|
|
|
|
}
|
|
|
|
|
|
|
|
public function test_copy_does_not_copy_pages_if_user_cant_page_create()
|
|
|
|
{
|
|
|
|
/** @var Chapter $chapter */
|
|
|
|
$chapter = Chapter::query()->whereHas('pages')->first();
|
|
|
|
$viewer = $this->getViewer();
|
|
|
|
$this->giveUserPermissions($viewer, ['chapter-create-all']);
|
|
|
|
|
|
|
|
// Lacking permission results in no copied pages
|
|
|
|
$this->actingAs($viewer)->post($chapter->getUrl('/copy'), [
|
|
|
|
'name' => 'My copied chapter',
|
|
|
|
]);
|
|
|
|
|
|
|
|
/** @var Chapter $newChapter */
|
|
|
|
$newChapter = Chapter::query()->where('name', '=', 'My copied chapter')->first();
|
|
|
|
$this->assertEquals(0, $newChapter->pages()->count());
|
|
|
|
|
|
|
|
$this->giveUserPermissions($viewer, ['page-create-all']);
|
|
|
|
|
|
|
|
// Having permission rules in copied pages
|
|
|
|
$this->actingAs($viewer)->post($chapter->getUrl('/copy'), [
|
|
|
|
'name' => 'My copied again chapter',
|
|
|
|
]);
|
|
|
|
|
|
|
|
/** @var Chapter $newChapter2 */
|
|
|
|
$newChapter2 = Chapter::query()->where('name', '=', 'My copied again chapter')->first();
|
|
|
|
$this->assertEquals($chapter->pages()->count(), $newChapter2->pages()->count());
|
|
|
|
}
|
2021-06-26 11:23:15 -04:00
|
|
|
}
|