X-Git-Url: http://source.bookstackapp.com/bookstack/blobdiff_plain/c724bfe4d37037e90a305b5ff9410070ccf90bb9..refs/pull/4467/head:/tests/Entity/BookShelfTest.php diff --git a/tests/Entity/BookShelfTest.php b/tests/Entity/BookShelfTest.php index 5c6489281..c1842c175 100644 --- a/tests/Entity/BookShelfTest.php +++ b/tests/Entity/BookShelfTest.php @@ -2,18 +2,15 @@ namespace Tests\Entity; -use BookStack\Auth\User; use BookStack\Entities\Models\Book; use BookStack\Entities\Models\Bookshelf; use BookStack\Uploads\Image; +use BookStack\Users\Models\User; use Illuminate\Support\Str; use Tests\TestCase; -use Tests\Uploads\UsesImages; class BookShelfTest extends TestCase { - use UsesImages; - public function test_shelves_shows_in_header_if_have_view_permissions() { $viewer = $this->users->viewer(); @@ -21,6 +18,7 @@ class BookShelfTest extends TestCase $this->withHtml($resp)->assertElementContains('header', 'Shelves'); $viewer->roles()->delete(); + $this->permissions->grantUserRolePermissions($viewer, []); $resp = $this->actingAs($viewer)->get('/'); $this->withHtml($resp)->assertElementNotContains('header', 'Shelves'); @@ -113,7 +111,7 @@ class BookShelfTest extends TestCase 'description' => 'Test book description ' . Str::random(10), ]; - $imageFile = $this->getTestImage('shelf-test.png'); + $imageFile = $this->files->uploadedImage('shelf-test.png'); $resp = $this->asEditor()->call('POST', '/shelves', $shelfInfo, [], ['image' => $imageFile]); $resp->assertRedirect(); @@ -198,6 +196,31 @@ class BookShelfTest extends TestCase $this->withHtml($resp)->assertElementContains('.book-content a.grid-card:nth-child(3)', 'adsfsdfsdfsd'); } + public function test_shelf_view_sorts_by_name_case_insensitively() + { + $shelf = Bookshelf::query()->whereHas('books')->with('books')->first(); + $books = Book::query()->take(3)->get(['id', 'name']); + $books[0]->fill(['name' => 'Book Ab'])->save(); + $books[1]->fill(['name' => 'Book ac'])->save(); + $books[2]->fill(['name' => 'Book AD'])->save(); + + // Set book ordering + $this->asAdmin()->put($shelf->getUrl(), [ + 'books' => $books->implode('id', ','), + 'tags' => [], 'description' => 'abc', 'name' => 'abc', + ]); + $this->assertEquals(3, $shelf->books()->count()); + $shelf->refresh(); + + setting()->putUser($this->users->editor(), 'shelf_books_sort', 'name'); + setting()->putUser($this->users->editor(), 'shelf_books_sort_order', 'asc'); + $html = $this->withHtml($this->asEditor()->get($shelf->getUrl())); + + $html->assertElementContains('.book-content a.grid-card:nth-child(1)', 'Book Ab'); + $html->assertElementContains('.book-content a.grid-card:nth-child(2)', 'Book ac'); + $html->assertElementContains('.book-content a.grid-card:nth-child(3)', 'Book AD'); + } + public function test_shelf_edit() { $shelf = $this->entities->shelf();