🚧 Add handler for image-insert notifications
authorDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Wed, 11 Dec 2019 12:42:27 +0000 (13:42 +0100)
committerDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Wed, 11 Dec 2019 15:59:24 +0000 (16:59 +0100)
src/main/kotlin/net/pterodactylus/sone/web/notification/ImageInsertHandler.kt [new file with mode: 0644]
src/test/kotlin/net/pterodactylus/sone/web/notification/ImageInsertHandlerTest.kt [new file with mode: 0644]

diff --git a/src/main/kotlin/net/pterodactylus/sone/web/notification/ImageInsertHandler.kt b/src/main/kotlin/net/pterodactylus/sone/web/notification/ImageInsertHandler.kt
new file mode 100644 (file)
index 0000000..ea11481
--- /dev/null
@@ -0,0 +1,65 @@
+/**
+ * Sone - ImageInsertHandler.kt - Copyright Â© 2019 David â€˜Bombe’ Roden
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+
+package net.pterodactylus.sone.web.notification
+
+import com.google.common.eventbus.*
+import net.pterodactylus.sone.core.event.*
+import net.pterodactylus.sone.data.*
+import net.pterodactylus.sone.notify.*
+import net.pterodactylus.util.notify.*
+
+/**
+ * Notification handler for the various image-insert-related events.
+ *
+ * @see ImageInsertStartedEvent
+ * @see ImageInsertAbortedEvent
+ * @see ImageInsertFailedEvent
+ * @see ImageInsertFinishedEvent
+ */
+class ImageInsertHandler(
+               private val notificationManager: NotificationManager,
+               private val imageInsertingNotification: ListNotification<Image>,
+               private val imageFailedNotification: ListNotification<Image>,
+               private val imageInsertedNotification: ListNotification<Image>) {
+
+       @Subscribe
+       fun imageInsertStarted(imageInsertStartedEvent: ImageInsertStartedEvent) {
+               imageInsertingNotification.add(imageInsertStartedEvent.image)
+               notificationManager.addNotification(imageInsertingNotification)
+       }
+
+       @Subscribe
+       fun imageInsertAborted(imageInsertAbortedEvent: ImageInsertAbortedEvent) {
+               imageInsertingNotification.remove(imageInsertAbortedEvent.image)
+       }
+
+       @Subscribe
+       fun imageInsertFailed(imageInsertFailedEvent: ImageInsertFailedEvent) {
+               imageInsertingNotification.remove(imageInsertFailedEvent.image)
+               imageFailedNotification.add(imageInsertFailedEvent.image)
+               notificationManager.addNotification(imageFailedNotification)
+       }
+
+       @Subscribe
+       fun imageInsertFinished(imageInsertFinishedEvent: ImageInsertFinishedEvent) {
+               imageInsertingNotification.remove(imageInsertFinishedEvent.image)
+               imageInsertedNotification.add(imageInsertFinishedEvent.image)
+               notificationManager.addNotification(imageInsertedNotification)
+       }
+
+}
diff --git a/src/test/kotlin/net/pterodactylus/sone/web/notification/ImageInsertHandlerTest.kt b/src/test/kotlin/net/pterodactylus/sone/web/notification/ImageInsertHandlerTest.kt
new file mode 100644 (file)
index 0000000..3f570a9
--- /dev/null
@@ -0,0 +1,107 @@
+/**
+ * Sone - ImageInsertHandler.kt - Copyright Â© 2019 David â€˜Bombe’ Roden
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+
+package net.pterodactylus.sone.web.notification
+
+import com.google.common.eventbus.*
+import freenet.keys.FreenetURI.*
+import net.pterodactylus.sone.core.event.*
+import net.pterodactylus.sone.data.*
+import net.pterodactylus.sone.data.impl.*
+import net.pterodactylus.sone.notify.*
+import net.pterodactylus.util.notify.*
+import net.pterodactylus.util.template.*
+import org.hamcrest.MatcherAssert.*
+import org.hamcrest.Matchers.*
+import kotlin.test.*
+
+/**
+ * Unit test for [ImageInsertHandler].
+ */
+@Suppress("UnstableApiUsage")
+class ImageInsertHandlerTest {
+
+       private val eventBus = EventBus()
+       private val notificationManager = NotificationManager()
+       private val imageInsertingNotification = ListNotification<Image>("", "", Template())
+       private val imageFailedNotification = ListNotification<Image>("", "", Template())
+       private val imageInsertedNotification = ListNotification<Image>("", "", Template())
+
+       init {
+               eventBus.register(ImageInsertHandler(notificationManager, imageInsertingNotification, imageFailedNotification, imageInsertedNotification))
+       }
+
+       @Test
+       fun `handler adds notification when image insert starts`() {
+               eventBus.post(ImageInsertStartedEvent(image))
+               assertThat(notificationManager.notifications, contains<Notification>(imageInsertingNotification))
+       }
+
+       @Test
+       fun `handler adds image to notification when image insert starts`() {
+               eventBus.post(ImageInsertStartedEvent(image))
+               assertThat(imageInsertingNotification.elements, contains(image))
+       }
+
+       @Test
+       fun `handler removes image from inserting notification when insert is aborted`() {
+               eventBus.post(ImageInsertStartedEvent(image))
+               eventBus.post(ImageInsertAbortedEvent(image))
+               assertThat(imageInsertingNotification.elements, emptyIterable())
+       }
+
+       @Test
+       fun `handler removes image from inserting notification when insert fails`() {
+               eventBus.post(ImageInsertStartedEvent(image))
+               eventBus.post(ImageInsertFailedEvent(image, Throwable()))
+               assertThat(imageInsertingNotification.elements, emptyIterable())
+       }
+
+       @Test
+       fun `handler adds image to insert-failed notification when insert fails`() {
+               eventBus.post(ImageInsertFailedEvent(image, Throwable()))
+               assertThat(imageFailedNotification.elements, contains(image))
+       }
+
+       @Test
+       fun `handler adds insert-failed notification to manager when insert fails`() {
+               eventBus.post(ImageInsertFailedEvent(image, Throwable()))
+               assertThat(notificationManager.notifications, contains<Notification>(imageFailedNotification))
+       }
+
+       @Test
+       fun `handler removes image from inserting notification when insert succeeds`() {
+               eventBus.post(ImageInsertStartedEvent(image))
+               eventBus.post(ImageInsertFinishedEvent(image, EMPTY_CHK_URI))
+               assertThat(imageInsertingNotification.elements, emptyIterable())
+       }
+
+       @Test
+       fun `handler adds image to inserted notification when insert succeeds`() {
+               eventBus.post(ImageInsertFinishedEvent(image, EMPTY_CHK_URI))
+               assertThat(imageInsertedNotification.elements, contains(image))
+       }
+
+       @Test
+       fun `handler adds inserted notification to manager when insert succeeds`() {
+               eventBus.post(ImageInsertFinishedEvent(image, EMPTY_CHK_URI))
+               assertThat(notificationManager.notifications, contains<Notification>(imageInsertedNotification))
+       }
+
+}
+
+private val image: Image = ImageImpl()