From 85c942c0a3b86afe5a82493e45c449dfd9e53687 Mon Sep 17 00:00:00 2001 From: =?utf8?q?David=20=E2=80=98Bombe=E2=80=99=20Roden?= Date: Wed, 11 Dec 2019 18:33:40 +0100 Subject: [PATCH] =?utf8?q?=F0=9F=9A=A7=20Send=20startup=20event=20on=20sta?= =?utf8?q?rtup?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- .../net/pterodactylus/sone/main/SonePlugin.java | 2 ++ .../net/pterodactylus/sone/core/event/Startup.kt | 23 ++++++++++++++++++++++ .../net/pterodactylus/sone/main/SonePluginTest.kt | 18 +++++++++++++++++ 3 files changed, 43 insertions(+) create mode 100644 src/main/kotlin/net/pterodactylus/sone/core/event/Startup.kt diff --git a/src/main/java/net/pterodactylus/sone/main/SonePlugin.java b/src/main/java/net/pterodactylus/sone/main/SonePlugin.java index ca32537..4957d30 100644 --- a/src/main/java/net/pterodactylus/sone/main/SonePlugin.java +++ b/src/main/java/net/pterodactylus/sone/main/SonePlugin.java @@ -221,6 +221,8 @@ public class SonePlugin implements FredPlugin, FredPluginFCP, FredPluginL10n, Fr eventBus.post(new ConfigNotRead()); } } + + eventBus.post(new Startup()); } @VisibleForTesting diff --git a/src/main/kotlin/net/pterodactylus/sone/core/event/Startup.kt b/src/main/kotlin/net/pterodactylus/sone/core/event/Startup.kt new file mode 100644 index 0000000..9a9d273 --- /dev/null +++ b/src/main/kotlin/net/pterodactylus/sone/core/event/Startup.kt @@ -0,0 +1,23 @@ +/** + * Sone - Startup.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.core.event + +/** + * Event that signals the startup of Sone. + */ +class Startup diff --git a/src/test/kotlin/net/pterodactylus/sone/main/SonePluginTest.kt b/src/test/kotlin/net/pterodactylus/sone/main/SonePluginTest.kt index 5795285..b40df75 100644 --- a/src/test/kotlin/net/pterodactylus/sone/main/SonePluginTest.kt +++ b/src/test/kotlin/net/pterodactylus/sone/main/SonePluginTest.kt @@ -180,6 +180,24 @@ class SonePluginTest { } } + private class StartupListener(private val startupReceived: () -> Unit) { + @Subscribe + fun startup(startup: Startup) { + startupReceived() + } + } + + @Test + fun `startup event is sent to event bus`() { + val startupReceived = AtomicBoolean() + runSonePluginWithRealInjector { + val eventBus = it.getInstance(EventBus::class.java) + eventBus.register(StartupListener { startupReceived.set(true) }) + } + sonePlugin.runPlugin(pluginRespirator) + assertThat(startupReceived.get(), equalTo(true)) + } + private fun getInjected(clazz: Class, annotation: Annotation? = null): T? = injected[TypeLiteral.get(clazz) to annotation] as? T -- 2.7.4