🚧 Add handler for “new Sone found” event
[Sone.git] / src / test / kotlin / net / pterodactylus / sone / web / notification / NewSoneHandlerTest.kt
1 /**
2  * Sone - NewSoneHandlerTest.kt - Copyright © 2019 David ‘Bombe’ Roden
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17
18 package net.pterodactylus.sone.web.notification
19
20 import com.google.common.eventbus.*
21 import net.pterodactylus.sone.core.event.*
22 import net.pterodactylus.sone.data.impl.*
23 import net.pterodactylus.sone.notify.*
24 import net.pterodactylus.util.notify.*
25 import net.pterodactylus.util.template.*
26 import org.hamcrest.MatcherAssert.*
27 import org.hamcrest.Matchers.*
28 import java.io.*
29 import kotlin.test.*
30
31 class NewSoneHandlerTest {
32
33         @Suppress("UnstableApiUsage")
34         private val eventBus = EventBus()
35         private val notificationManager = NotificationManager()
36         private val handler = NewSoneHandler(notificationManager, Template())
37
38         init {
39                 eventBus.register(handler)
40         }
41
42         @Test
43         fun `handler adds notification if new sone event is fired`() {
44                 eventBus.post(NewSoneFoundEvent(sone))
45                 val notification = notificationManager.notifications.single() as ListNotification<*>
46                 assertThat(notification.id, equalTo("new-sone-notification"))
47         }
48
49         @Test
50         fun `handler adds sone to notification`() {
51                 eventBus.post(NewSoneFoundEvent(sone))
52                 val notification = notificationManager.notifications.single() as ListNotification<*>
53                 assertThat(notification.elements, contains<Any>(sone))
54         }
55
56         @Test
57         fun `handler does not add notification on new sone event if first-start notification is present`() {
58                 notificationManager.addNotification(object : AbstractNotification("first-start-notification") {
59                         override fun render(writer: Writer) = Unit
60                 })
61                 eventBus.post(NewSoneFoundEvent(sone))
62                 val notification = notificationManager.notifications.single()
63                 assertThat(notification.id, equalTo("first-start-notification"))
64         }
65
66 }
67
68 private val sone = IdOnlySone("sone-id")