X-Git-Url: http://source.bookstackapp.com/bookstack/blobdiff_plain/db9aa410960ed38ebdbae2ee6ce0ac44ee0eb068..refs/pull/3593/head:/tests/FavouriteTest.php diff --git a/tests/FavouriteTest.php b/tests/FavouriteTest.php index ce5caf5c2..017dd889f 100644 --- a/tests/FavouriteTest.php +++ b/tests/FavouriteTest.php @@ -1,32 +1,34 @@ first(); $editor = $this->getEditor(); $resp = $this->actingAs($editor)->get($page->getUrl()); - $resp->assertElementContains('button', 'Favourite'); - $resp->assertElementExists('form[method="POST"][action$="/favourites/add"]'); + $this->withHtml($resp)->assertElementContains('button', 'Favourite'); + $this->withHtml($resp)->assertElementExists('form[method="POST"][action$="/favourites/add"]'); $resp = $this->post('/favourites/add', [ 'type' => get_class($page), - 'id' => $page->id, + 'id' => $page->id, ]); $resp->assertRedirect($page->getUrl()); $resp->assertSessionHas('success', "\"{$page->name}\" has been added to your favourites"); $this->assertDatabaseHas('favourites', [ - 'user_id' => $editor->id, + 'user_id' => $editor->id, 'favouritable_type' => $page->getMorphClass(), - 'favouritable_id' => $page->id, + 'favouritable_id' => $page->id, ]); } @@ -35,18 +37,18 @@ class FavouriteTest extends TestCase $page = Page::query()->first(); $editor = $this->getEditor(); Favourite::query()->forceCreate([ - 'user_id' => $editor->id, - 'favouritable_id' => $page->id, + 'user_id' => $editor->id, + 'favouritable_id' => $page->id, 'favouritable_type' => $page->getMorphClass(), ]); $resp = $this->actingAs($editor)->get($page->getUrl()); - $resp->assertElementContains('button', 'Unfavourite'); - $resp->assertElementExists('form[method="POST"][action$="/favourites/remove"]'); + $this->withHtml($resp)->assertElementContains('button', 'Unfavourite'); + $this->withHtml($resp)->assertElementExists('form[method="POST"][action$="/favourites/remove"]'); $resp = $this->post('/favourites/remove', [ 'type' => get_class($page), - 'id' => $page->id, + 'id' => $page->id, ]); $resp->assertRedirect($page->getUrl()); $resp->assertSessionHas('success', "\"{$page->name}\" has been removed from your favourites"); @@ -56,4 +58,61 @@ class FavouriteTest extends TestCase ]); } -} \ No newline at end of file + public function test_book_chapter_shelf_pages_contain_favourite_button() + { + $entities = [ + Bookshelf::query()->first(), + Book::query()->first(), + Chapter::query()->first(), + ]; + $this->actingAs($this->getEditor()); + + foreach ($entities as $entity) { + $resp = $this->get($entity->getUrl()); + $this->withHtml($resp)->assertElementExists('form[method="POST"][action$="/favourites/add"]'); + } + } + + public function test_header_contains_link_to_favourites_page_when_logged_in() + { + $this->setSettings(['app-public' => 'true']); + $resp = $this->get('/'); + $this->withHtml($resp)->assertElementNotContains('header', 'My Favourites'); + $resp = $this->actingAs($this->getViewer())->get('/'); + $this->withHtml($resp)->assertElementContains('header a', 'My Favourites'); + } + + public function test_favourites_shown_on_homepage() + { + $editor = $this->getEditor(); + + $resp = $this->actingAs($editor)->get('/'); + $this->withHtml($resp)->assertElementNotExists('#top-favourites'); + + /** @var Page $page */ + $page = Page::query()->first(); + $page->favourites()->save((new Favourite())->forceFill(['user_id' => $editor->id])); + + $resp = $this->get('/'); + $this->withHtml($resp)->assertElementExists('#top-favourites'); + $this->withHtml($resp)->assertElementContains('#top-favourites', $page->name); + } + + public function test_favourites_list_page_shows_favourites_and_has_working_pagination() + { + /** @var Page $page */ + $page = Page::query()->first(); + $editor = $this->getEditor(); + + $resp = $this->actingAs($editor)->get('/favourites'); + $resp->assertDontSee($page->name); + + $page->favourites()->save((new Favourite())->forceFill(['user_id' => $editor->id])); + + $resp = $this->get('/favourites'); + $resp->assertSee($page->name); + + $resp = $this->get('/favourites?page=2'); + $resp->assertDontSee($page->name); + } +}