Replace bookmark ajax page test with Kotlin version
[Sone.git] / src / test / kotlin / net / pterodactylus / sone / web / ajax / JsonPageTest.kt
index 84f74f9..b5f17cf 100644 (file)
@@ -1,31 +1,40 @@
 package net.pterodactylus.sone.web.ajax
 
 import freenet.clients.http.ToadletContext
+import freenet.support.SimpleReadOnlyArrayBucket
 import freenet.support.api.HTTPRequest
 import net.pterodactylus.sone.core.Core
+import net.pterodactylus.sone.core.ElementLoader
+import net.pterodactylus.sone.core.LinkedElement
 import net.pterodactylus.sone.data.Post
 import net.pterodactylus.sone.data.PostReply
 import net.pterodactylus.sone.data.Sone
 import net.pterodactylus.sone.data.Sone.SoneStatus
 import net.pterodactylus.sone.data.Sone.SoneStatus.idle
-import net.pterodactylus.sone.test.asOptional
 import net.pterodactylus.sone.test.deepMock
+import net.pterodactylus.sone.test.get
 import net.pterodactylus.sone.test.mock
 import net.pterodactylus.sone.test.whenever
+import net.pterodactylus.sone.utils.asOptional
 import net.pterodactylus.sone.web.WebInterface
 import net.pterodactylus.sone.web.page.FreenetRequest
 import net.pterodactylus.util.notify.Notification
 import org.junit.Before
+import org.mockito.ArgumentMatchers.anyInt
 import org.mockito.ArgumentMatchers.anyString
+import org.mockito.ArgumentMatchers.isNull
+import java.util.NoSuchElementException
+import javax.naming.SizeLimitExceededException
 
 /**
  * Base class for tests for any [JsonPage] implementations.
  */
-open class JsonPageTest {
+open class JsonPageTest(pageSupplier: (WebInterface) -> JsonPage = { _ -> mock<JsonPage>() }) {
 
        protected val webInterface = mock<WebInterface>()
        protected val core = mock<Core>()
-       protected open lateinit var page: JsonPage
+       protected val elementLoader = mock<ElementLoader>()
+       protected open val page: JsonPage by lazy { pageSupplier(webInterface) }
        protected val json by lazy { page.createJsonObject(freenetRequest)!! }
 
        protected val toadletContext = mock<ToadletContext>()
@@ -34,10 +43,12 @@ open class JsonPageTest {
        protected val currentSone = deepMock<Sone>()
 
        private val requestParameters = mutableMapOf<String, String>()
+       private val requestParts = mutableMapOf<String, String>()
        private val localSones = mutableMapOf<String, Sone>()
        private val remoteSones = mutableMapOf<String, Sone>()
        private val newPosts = mutableMapOf<String, Post>()
        private val newReplies = mutableMapOf<String, PostReply>()
+       private val linkedElements = mutableMapOf<String, LinkedElement>()
        private val notifications = mutableListOf<Notification>()
 
        @Before
@@ -53,6 +64,14 @@ open class JsonPageTest {
        @Before
        fun setupCore() {
                whenever(core.getSone(anyString())).thenAnswer { (localSones + remoteSones)[it.getArgument(0)].asOptional() }
+               whenever(core.getPost(anyString())).thenAnswer { newPosts[it[0]].asOptional() }
+       }
+
+       @Before
+       fun setupElementLoader() {
+               whenever(elementLoader.loadElement(anyString())).thenAnswer {
+                       linkedElements[it.getArgument(0)] ?: LinkedElement(it.getArgument(0), loading = true)
+               }
        }
 
        @Before
@@ -69,6 +88,15 @@ open class JsonPageTest {
        @Before
        fun setupHttpRequest() {
                whenever(httpRequest.getParam(anyString())).thenAnswer { requestParameters[it.getArgument(0)] ?: "" }
+               whenever(httpRequest.getParam(anyString(), anyString())).thenAnswer { requestParameters[it.getArgument(0)] ?: it.getArgument(1) }
+               whenever(httpRequest.getParam(anyString(), isNull())).thenAnswer { requestParameters[it.getArgument(0)] }
+               whenever(httpRequest.getPart(anyString())).thenAnswer { requestParts[it.getArgument(0)]?.let { SimpleReadOnlyArrayBucket(it.toByteArray()) } }
+               whenever(httpRequest.getPartAsBytesFailsafe(anyString(), anyInt())).thenAnswer { requestParts[it.getArgument(0)]?.toByteArray()?.copyOf(it.getArgument(1)) ?: ByteArray(0) }
+               whenever(httpRequest.getPartAsBytesThrowing(anyString(), anyInt())).thenAnswer { invocation -> requestParts[invocation.getArgument(0)]?.let { it.toByteArray().let { if (it.size > invocation.getArgument<Int>(1)) throw SizeLimitExceededException() else it } } ?: throw NoSuchElementException() }
+               whenever(httpRequest.getPartAsStringFailsafe(anyString(), anyInt())).thenAnswer { requestParts[it.getArgument(0)]?.substring(0, it.getArgument(1)) ?: "" }
+               whenever(httpRequest.getPartAsStringThrowing(anyString(), anyInt())).thenAnswer { invocation -> requestParts[invocation.getArgument(0)]?.let { if (it.length > invocation.getArgument<Int>(1)) throw SizeLimitExceededException() else it } ?: throw NoSuchElementException() }
+               whenever(httpRequest.getIntPart(anyString(), anyInt())).thenAnswer { invocation -> requestParts[invocation.getArgument(0)]?.toIntOrNull() ?: invocation.getArgument(1) }
+               whenever(httpRequest.isPartSet(anyString())).thenAnswer { it.getArgument(0) in requestParts }
        }
 
        protected fun Sone.mock(id: String, name: String, local: Boolean = false, time: Long, status: SoneStatus = idle) = apply {
@@ -88,6 +116,10 @@ open class JsonPageTest {
                requestParameters += key to value
        }
 
+       protected fun addRequestPart(key: String, value: String) {
+               requestParts += key to value
+       }
+
        protected fun addNotification(vararg notifications: Notification) {
                this.notifications += notifications
        }
@@ -96,15 +128,14 @@ open class JsonPageTest {
                remoteSones += sone.id to sone
        }
 
-       protected fun addNewPost(id: String, soneId: String, time: Long, recipientId: String? = null) {
-               newPosts[id] = mock<Post>().apply {
-                       whenever(this.id).thenReturn(id)
-                       val sone = mock<Sone>().apply { whenever(this.id).thenReturn(soneId) }
-                       whenever(this.sone).thenReturn(sone)
-                       whenever(this.time).thenReturn(time)
-                       whenever(this.recipientId).thenReturn(recipientId.asOptional())
-               }
-       }
+       protected fun addNewPost(id: String, soneId: String, time: Long, recipientId: String? = null) =
+                       mock<Post>().apply {
+                               whenever(this.id).thenReturn(id)
+                               val sone = mock<Sone>().apply { whenever(this.id).thenReturn(soneId) }
+                               whenever(this.sone).thenReturn(sone)
+                               whenever(this.time).thenReturn(time)
+                               whenever(this.recipientId).thenReturn(recipientId.asOptional())
+                       }.also { newPosts[id] = it }
 
        protected fun addNewReply(id: String, soneId: String, postId: String, postSoneId: String) {
                newReplies[id] = mock<PostReply>().apply {
@@ -120,4 +151,8 @@ open class JsonPageTest {
                }
        }
 
+       protected fun addLinkedElement(link: String, loading: Boolean, failed: Boolean) {
+               linkedElements[link] = LinkedElement(link, failed, loading)
+       }
+
 }