1 package net.pterodactylus.sone.web.ajax
3 import net.pterodactylus.sone.data.Post
4 import org.hamcrest.MatcherAssert.assertThat
5 import org.hamcrest.Matchers.equalTo
7 import org.mockito.ArgumentMatchers.any
8 import org.mockito.Mockito.never
9 import org.mockito.Mockito.verify
12 * Unit test for [BookmarkAjaxPage].
14 class BookmarkAjaxPageTest : JsonPageTest("bookmark.ajax", requiresLogin = false, pageSupplier = ::BookmarkAjaxPage) {
17 fun `missing post ID results in invalid id response`() {
18 assertThatJsonFailed("invalid-post-id")
22 fun `empty post ID results in invalid id response`() {
23 addRequestParameter("post", "")
24 assertThatJsonFailed("invalid-post-id")
28 fun `invalid post ID results in success but does not bookmark anything`() {
29 addRequestParameter("post", "missing")
30 assertThatJsonIsSuccessful()
31 verify(core, never()).bookmarkPost(any<Post>())
35 fun `valid post ID results in success and bookmarks the post`() {
36 addRequestParameter("post", "valid-post-id")
37 val post = addNewPost("valid-post-id", "1", 2)
38 assertThatJsonIsSuccessful()
39 verify(core).bookmarkPost(post)