c3f1cd7d5bcac9e4453af2e5adee32a91d310437
[Sone.git] / src / test / kotlin / net / pterodactylus / sone / main / SonePluginTest.kt
1 package net.pterodactylus.sone.main
2
3 import com.google.common.eventbus.*
4 import com.google.inject.*
5 import freenet.client.async.*
6 import freenet.l10n.BaseL10n.LANGUAGE.*
7 import freenet.node.*
8 import freenet.pluginmanager.*
9 import net.pterodactylus.sone.core.*
10 import net.pterodactylus.sone.core.event.*
11 import net.pterodactylus.sone.fcp.*
12 import net.pterodactylus.sone.freenet.wot.*
13 import net.pterodactylus.sone.test.*
14 import net.pterodactylus.sone.web.*
15 import net.pterodactylus.sone.web.notification.*
16 import org.hamcrest.MatcherAssert.*
17 import org.hamcrest.Matchers.*
18 import org.mockito.Mockito.*
19 import java.io.*
20 import java.util.concurrent.atomic.*
21 import kotlin.test.*
22
23 /**
24  * Unit test for [SonePlugin].
25  */
26 @Dirty
27 class SonePluginTest {
28
29         private val sonePlugin by lazy { SonePlugin { injector } }
30         private val pluginRespirator = deepMock<PluginRespirator>()
31         private val node = deepMock<Node>()
32         private val clientCore = deepMock<NodeClientCore>()
33         private val uskManager = deepMock<USKManager>()
34
35         init {
36                 setField(node, "clientCore", clientCore)
37                 whenever(pluginRespirator.node).thenReturn(node)
38                 setField(clientCore, "uskManager", uskManager)
39         }
40
41         @Test
42         fun `sone plugin can be started`() {
43                 sonePlugin.setLanguage(ENGLISH)
44                 sonePlugin.runPlugin(pluginRespirator)
45         }
46
47         @Test
48         fun `core can be created`() {
49                 val injector: Injector = runSonePluginWithRealInjector()
50                 assertThat(injector.getInstance<Core>(), notNullValue())
51         }
52
53         @Test
54         fun `fcp interface can be created`() {
55                 val injector: Injector = runSonePluginWithRealInjector()
56                 assertThat(injector.getInstance<FcpInterface>(), notNullValue())
57         }
58
59         @Test
60         fun `web interface can be created`() {
61                 val injector: Injector = runSonePluginWithRealInjector()
62                 assertThat(injector.getInstance<WebInterface>(), notNullValue())
63         }
64
65         @Test
66         fun `web of trust connector can be created`() {
67                 val injector: Injector = runSonePluginWithRealInjector()
68                 assertThat(injector.getInstance<WebOfTrustConnector>(), notNullValue())
69         }
70
71         @Test
72         fun `notification handler can be created`() {
73                 val injector: Injector = runSonePluginWithRealInjector()
74                 assertThat(injector.getInstance<NotificationHandler>(), notNullValue())
75         }
76
77         private fun runSonePluginWithRealInjector(injectorConsumer: (Injector) -> Unit = {}): Injector {
78                 lateinit var injector: Injector
79                 val sonePlugin = SonePlugin {
80                         Guice.createInjector(*it).also {
81                                 injector = it
82                                 injectorConsumer(it)
83                         }
84                 }
85                 sonePlugin.setLanguage(ENGLISH)
86                 sonePlugin.runPlugin(pluginRespirator)
87                 return injector
88         }
89
90         @Test
91         fun `core is being started`() {
92                 sonePlugin.runPlugin(pluginRespirator)
93                 val core = injector.getInstance<Core>()
94                 verify(core).start()
95         }
96
97         @Test
98         fun `notification handler is being requested`() {
99                 sonePlugin.runPlugin(pluginRespirator)
100                 assertThat(getInjected(NotificationHandler::class.java), notNullValue())
101         }
102
103         private class FirstStartListener(private val firstStartReceived: AtomicBoolean) {
104                 @Subscribe
105                 fun firstStart(firstStart: FirstStart) {
106                         firstStartReceived.set(true)
107                 }
108         }
109
110         @Test
111         fun `first-start event is sent to event bus when first start is true`() {
112                 File("sone.properties").delete()
113                 val firstStartReceived = AtomicBoolean()
114                 runSonePluginWithRealInjector {
115                         val eventBus = it.getInstance(EventBus::class.java)
116                         eventBus.register(FirstStartListener(firstStartReceived))
117                 }
118                 assertThat(firstStartReceived.get(), equalTo(true))
119         }
120
121         @Test
122         fun `first-start event is not sent to event bus when first start is false`() {
123                 File("sone.properties").deleteAfter {
124                         writeText("# empty")
125                         val firstStartReceived = AtomicBoolean()
126                         runSonePluginWithRealInjector {
127                                 val eventBus = it.getInstance(EventBus::class.java)
128                                 eventBus.register(FirstStartListener(firstStartReceived))
129                         }
130                         assertThat(firstStartReceived.get(), equalTo(false))
131                 }
132         }
133
134         private class ConfigNotReadListener(private val configNotReadReceiver: AtomicBoolean) {
135                 @Subscribe
136                 fun configNotRead(configNotRead: ConfigNotRead) {
137                         configNotReadReceiver.set(true)
138                 }
139         }
140
141         @Test
142         fun `config-not-read event is sent to event bus when new config is true`() {
143                 File("sone.properties").deleteAfter {
144                         writeText("Invalid")
145                         val configNotReadReceived = AtomicBoolean()
146                         runSonePluginWithRealInjector {
147                                 val eventBus = it.getInstance(EventBus::class.java)
148                                 eventBus.register(ConfigNotReadListener(configNotReadReceived))
149                         }
150                         assertThat(configNotReadReceived.get(), equalTo(true))
151                 }
152         }
153
154         @Test
155         fun `config-not-read event is not sent to event bus when first start is true`() {
156                 File("sone.properties").delete()
157                 val configNotReadReceived = AtomicBoolean()
158                 runSonePluginWithRealInjector {
159                         val eventBus = it.getInstance(EventBus::class.java)
160                         eventBus.register(ConfigNotReadListener(configNotReadReceived))
161                 }
162                 assertThat(configNotReadReceived.get(), equalTo(false))
163         }
164
165         @Test
166         fun `config-not-read event is not sent to event bus when new config is false`() {
167                 File("sone.properties").deleteAfter {
168                         writeText("# comment")
169                         val configNotReadReceived = AtomicBoolean()
170                         runSonePluginWithRealInjector {
171                                 val eventBus = it.getInstance(EventBus::class.java)
172                                 eventBus.register(ConfigNotReadListener(configNotReadReceived))
173                         }
174                         assertThat(configNotReadReceived.get(), equalTo(false))
175                 }
176         }
177
178         private class StartupListener(private val startupReceived: () -> Unit) {
179                 @Subscribe
180                 fun startup(startup: Startup) {
181                         startupReceived()
182                 }
183         }
184
185         @Test
186         fun `startup event is sent to event bus`() {
187                 val startupReceived = AtomicBoolean()
188                 runSonePluginWithRealInjector {
189                         val eventBus = it.getInstance(EventBus::class.java)
190                         eventBus.register(StartupListener { startupReceived.set(true) })
191                 }
192                 assertThat(startupReceived.get(), equalTo(true))
193         }
194
195         private fun <T> getInjected(clazz: Class<T>, annotation: Annotation? = null): T? =
196                         injected[TypeLiteral.get(clazz) to annotation] as? T
197
198         private val injected =
199                         mutableMapOf<Pair<TypeLiteral<*>, Annotation?>, Any>()
200
201         private val injector = mock<Injector>().apply {
202                 fun mockValue(clazz: Class<*>) = false.takeIf { clazz.name == java.lang.Boolean::class.java.name } ?: mock(clazz)
203                 whenever(getInstance(any<Key<*>>())).then {
204                         injected.getOrPut((it.getArgument(0) as Key<*>).let { it.typeLiteral to it.annotation }) {
205                                 it.getArgument<Key<*>>(0).typeLiteral.type.typeName.toClass().let(::mockValue)
206                         }
207                 }
208                 whenever(getInstance(any<Class<*>>())).then {
209                         injected.getOrPut(TypeLiteral.get(it.getArgument(0) as Class<*>) to null) {
210                                 it.getArgument<Class<*>>(0).let(::mockValue)
211                         }
212                 }
213         }
214
215 }
216
217 private fun String.toClass(): Class<*> = SonePlugin::class.java.classLoader.loadClass(this)
218
219 private fun File.deleteAfter(action: File.() -> Unit) = try {
220         action(this)
221 } finally {
222         this.delete()
223 }