From 060f9d859329fd070a625adc5e70dee4c811d2e6 Mon Sep 17 00:00:00 2001 From: =?utf8?q?David=20=E2=80=98Bombe=E2=80=99=20Roden?= Date: Wed, 11 Dec 2019 13:42:27 +0100 Subject: [PATCH] =?utf8?q?=F0=9F=9A=A7=20Add=20handler=20for=20image-inser?= =?utf8?q?t=20notifications?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- .../sone/web/notification/ImageInsertHandler.kt | 65 +++++++++++++ .../web/notification/ImageInsertHandlerTest.kt | 107 +++++++++++++++++++++ 2 files changed, 172 insertions(+) create mode 100644 src/main/kotlin/net/pterodactylus/sone/web/notification/ImageInsertHandler.kt create mode 100644 src/test/kotlin/net/pterodactylus/sone/web/notification/ImageInsertHandlerTest.kt 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 index 0000000..ea11481 --- /dev/null +++ b/src/main/kotlin/net/pterodactylus/sone/web/notification/ImageInsertHandler.kt @@ -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 . + */ + +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, + private val imageFailedNotification: ListNotification, + private val imageInsertedNotification: ListNotification) { + + @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 index 0000000..3f570a9 --- /dev/null +++ b/src/test/kotlin/net/pterodactylus/sone/web/notification/ImageInsertHandlerTest.kt @@ -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 . + */ + +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("", "", Template()) + private val imageFailedNotification = ListNotification("", "", Template()) + private val imageInsertedNotification = ListNotification("", "", 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(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(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(imageInsertedNotification)) + } + +} + +private val image: Image = ImageImpl() -- 2.7.4