From 3bc31a49282a7c3737e330e03723aac7464be71e Mon Sep 17 00:00:00 2001 From: =?utf8?q?David=20=E2=80=98Bombe=E2=80=99=20Roden?= Date: Fri, 29 Nov 2019 16:49:59 +0100 Subject: [PATCH] =?utf8?q?=F0=9F=9A=A7=20Add=20notification=20handler=20fo?= =?utf8?q?r=20locked=20Sones?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- .../web/notification/SoneLockedOnStartupHandler.kt | 42 +++++++++++++++ .../notification/SoneLockedOnStartupHandlerTest.kt | 63 ++++++++++++++++++++++ 2 files changed, 105 insertions(+) create mode 100644 src/main/kotlin/net/pterodactylus/sone/web/notification/SoneLockedOnStartupHandler.kt create mode 100644 src/test/kotlin/net/pterodactylus/sone/web/notification/SoneLockedOnStartupHandlerTest.kt diff --git a/src/main/kotlin/net/pterodactylus/sone/web/notification/SoneLockedOnStartupHandler.kt b/src/main/kotlin/net/pterodactylus/sone/web/notification/SoneLockedOnStartupHandler.kt new file mode 100644 index 0000000..d6ec08f --- /dev/null +++ b/src/main/kotlin/net/pterodactylus/sone/web/notification/SoneLockedOnStartupHandler.kt @@ -0,0 +1,42 @@ +/** + * Sone - SoneLockedOnStartupNotification.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.* +import net.pterodactylus.util.template.* + +/** + * Handler for [SoneLockedOnStartup][net.pterodactylus.sone.core.event.SoneLockedOnStartup] events + * that adds the appropriate notification to the [NotificationManager]. + */ +class SoneLockedOnStartupHandler(private val notificationManager: NotificationManager, template: Template) { + + private val notification = ListNotification("sone-locked-on-startup", "sones", template) + + @Subscribe + @Suppress("UnstableApiUsage") + fun soneLockedOnStartup(soneLockedOnStartup: SoneLockedOnStartup) { + notification.add(soneLockedOnStartup.sone) + notificationManager.addNotification(notification) + } + +} diff --git a/src/test/kotlin/net/pterodactylus/sone/web/notification/SoneLockedOnStartupHandlerTest.kt b/src/test/kotlin/net/pterodactylus/sone/web/notification/SoneLockedOnStartupHandlerTest.kt new file mode 100644 index 0000000..0b9d1e1 --- /dev/null +++ b/src/test/kotlin/net/pterodactylus/sone/web/notification/SoneLockedOnStartupHandlerTest.kt @@ -0,0 +1,63 @@ +/** + * Sone - SoneLockedOnStartupNotificationTest.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.impl.* +import net.pterodactylus.sone.notify.* +import net.pterodactylus.sone.utils.* +import net.pterodactylus.util.notify.* +import org.hamcrest.MatcherAssert.* +import org.hamcrest.Matchers.* +import kotlin.test.* + +/** + * Unit test for [SoneLockedOnStartupHandler]. + */ +class SoneLockedOnStartupHandlerTest { + + @Suppress("UnstableApiUsage") + private val eventBus = EventBus() + private val manager = NotificationManager() + private val notification by lazy { manager.notifications.single() as ListNotification<*> } + + init { + SoneLockedOnStartupHandler(manager, template).also(eventBus::register) + eventBus.post(SoneLockedOnStartup(sone)) + } + + @Test + fun `notification has correct id`() { + assertThat(notification.id, equalTo("sone-locked-on-startup")) + } + + @Test + fun `handler adds sone to notification when event is posted`() { + assertThat(notification.elements, contains(sone)) + } + + @Test + fun `handler creates notification with correct key`() { + assertThat(notification.render(), equalTo(listOf(sone).toString())) + } + +} + +private val sone = IdOnlySone("sone-id") +private val template = "<% sones>".asTemplate() -- 2.7.4