Add test for distrust ajax page
[Sone.git] / src / test / kotlin / net / pterodactylus / sone / web / ajax / JsonPageTest.kt
index 5d43a1e..cb5ee5a 100644 (file)
@@ -1,13 +1,16 @@
 package net.pterodactylus.sone.web.ajax
 
+import com.google.common.eventbus.EventBus
 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.core.Preferences
 import net.pterodactylus.sone.data.Post
 import net.pterodactylus.sone.data.PostReply
+import net.pterodactylus.sone.data.Profile
 import net.pterodactylus.sone.data.Sone
 import net.pterodactylus.sone.data.Sone.SoneStatus
 import net.pterodactylus.sone.data.Sone.SoneStatus.idle
@@ -43,6 +46,8 @@ abstract class JsonPageTest(
 
        protected val webInterface = mock<WebInterface>()
        protected val core = mock<Core>()
+       protected val eventBus = mock<EventBus>()
+       protected val preferences = Preferences(eventBus)
        protected val elementLoader = mock<ElementLoader>()
        protected open val page: JsonPage by lazy { pageSupplier(webInterface) }
        protected val json by lazy { page.createJsonObject(freenetRequest)!! }
@@ -51,6 +56,7 @@ abstract class JsonPageTest(
        protected val freenetRequest = mock<FreenetRequest>()
        protected val httpRequest = mock<HTTPRequest>()
        protected val currentSone = deepMock<Sone>()
+       protected val profile = Profile(currentSone)
 
        private val requestHeaders = mutableMapOf<String, String>()
        private val requestParameters = mutableMapOf<String, String>()
@@ -59,9 +65,10 @@ abstract class JsonPageTest(
        private val remoteSones = mutableMapOf<String, Sone>()
        private val posts = mutableMapOf<String, Post>()
        private val newPosts = mutableMapOf<String, Post>()
+       private val replies = mutableMapOf<String, PostReply>()
        private val newReplies = mutableMapOf<String, PostReply>()
        private val linkedElements = mutableMapOf<String, LinkedElement>()
-       private val notifications = mutableListOf<Notification>()
+       private val notifications = mutableMapOf<String, Notification>()
 
        @Before
        fun setupWebInterface() {
@@ -69,16 +76,19 @@ abstract class JsonPageTest(
                whenever(webInterface.getCurrentSoneCreatingSession(toadletContext)).thenReturn(currentSone)
                whenever(webInterface.getCurrentSoneWithoutCreatingSession(toadletContext)).thenReturn(currentSone)
                whenever(webInterface.core).thenReturn(core)
-               whenever(webInterface.getNotifications(currentSone)).thenAnswer { notifications }
+               whenever(webInterface.getNotifications(currentSone)).thenAnswer { notifications.values }
+               whenever(webInterface.getNotification(anyString())).then { notifications[it[0]].asOptional() }
                whenever(webInterface.getNewPosts(currentSone)).thenAnswer { newPosts.values }
                whenever(webInterface.getNewReplies(currentSone)).thenAnswer { newReplies.values }
        }
 
        @Before
        fun setupCore() {
+               whenever(core.preferences).thenReturn(preferences)
                whenever(core.getSone(anyString())).thenAnswer { (localSones + remoteSones)[it.getArgument(0)].asOptional() }
                whenever(core.getLocalSone(anyString())).thenAnswer { localSones[it[0]] }
                whenever(core.getPost(anyString())).thenAnswer { (posts + newPosts)[it[0]].asOptional() }
+               whenever(core.getPostReply(anyString())).then { replies[it[0]].asOptional() }
        }
 
        @Before
@@ -116,6 +126,11 @@ abstract class JsonPageTest(
                whenever(httpRequest.isPartSet(anyString())).thenAnswer { it.getArgument(0) in requestParts }
        }
 
+       @Before
+       fun setupProfile() {
+               whenever(currentSone.profile).thenReturn(profile)
+       }
+
        protected val JsonReturnObject.error get() = if (this is JsonErrorReturnObject) this.error else null
 
        protected fun Sone.mock(id: String, name: String, local: Boolean = false, time: Long, status: SoneStatus = idle) = apply {
@@ -144,12 +159,12 @@ abstract class JsonPageTest(
                requestParts += key to value
        }
 
-       protected fun addNotification(vararg notifications: Notification) {
-               this.notifications += notifications
+       protected fun addNotification(notification: Notification, notificationId: String? = null) {
+               notifications[notificationId ?: notification.id] = notification
        }
 
-       protected fun addSone(sone: Sone) {
-               remoteSones += sone.id to sone
+       protected fun addSone(sone: Sone, soneId: String? = null) {
+               remoteSones += (soneId ?: sone.id) to sone
        }
 
        protected fun addLocalSone(id: String, sone: Sone) {
@@ -169,6 +184,10 @@ abstract class JsonPageTest(
                                whenever(this.recipientId).thenReturn(recipientId.asOptional())
                        }.also { newPosts[id] = it }
 
+       protected fun addReply(id: String, reply: PostReply) {
+               replies[id] = reply
+       }
+
        protected fun addNewReply(id: String, soneId: String, postId: String, postSoneId: String) {
                newReplies[id] = mock<PostReply>().apply {
                        whenever(this.id).thenReturn(id)