951de28034e85504a2e1f564004eaf8d17f12be3
[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.sone.test.*
25 import net.pterodactylus.sone.utils.*
26 import net.pterodactylus.util.notify.*
27 import org.hamcrest.MatcherAssert.*
28 import org.hamcrest.Matchers.*
29 import java.io.*
30 import kotlin.test.*
31
32 class NewSoneHandlerTest {
33
34         @Suppress("UnstableApiUsage")
35         private val eventBus = EventBus()
36         private val notificationManager = NotificationManager()
37         private val handler = NewSoneHandler(notificationManager, "<% sones>".asTemplate())
38
39         init {
40                 eventBus.register(handler)
41         }
42
43         @Test
44         fun `handler adds notification if new sone event is fired`() {
45                 eventBus.post(NewSoneFoundEvent(sone))
46                 val notification = notificationManager.notifications.single() as ListNotification<*>
47                 assertThat(notification.id, equalTo("new-sone-notification"))
48         }
49
50         @Test
51         fun `handler adds sone to notification`() {
52                 eventBus.post(NewSoneFoundEvent(sone))
53                 val notification = notificationManager.notifications.single() as ListNotification<*>
54                 assertThat(notification.elements, contains<Any>(sone))
55         }
56
57         @Test
58         fun `handler sets correct key for sones`() {
59                 eventBus.post(NewSoneFoundEvent(sone))
60                 val notification = notificationManager.notifications.single() as ListNotification<*>
61                 assertThat(notification.render(), equalTo(listOf(sone).toString()))
62         }
63
64         @Test
65         fun `handler creates non-dismissable notification`() {
66                 eventBus.post(NewSoneFoundEvent(sone))
67                 val notification = notificationManager.notifications.single() as ListNotification<*>
68                 assertThat(notification, matches("is not dismissable") { !it.isDismissable })
69         }
70
71         @Test
72         fun `handler does not add notification on new sone event if first-start notification is present`() {
73                 notificationManager.addNotification(object : AbstractNotification("first-start-notification") {
74                         override fun render(writer: Writer) = Unit
75                 })
76                 eventBus.post(NewSoneFoundEvent(sone))
77                 val notification = notificationManager.notifications.single()
78                 assertThat(notification.id, equalTo("first-start-notification"))
79         }
80
81         @Test
82         fun `handler removes sone from notification if sone is marked as known`() {
83                 eventBus.post(NewSoneFoundEvent(sone))
84                 val notification = notificationManager.notifications.single() as ListNotification<*>
85                 eventBus.post(MarkSoneKnownEvent(sone))
86                 assertThat(notification.elements, emptyIterable())
87         }
88
89         @Test
90         fun `handler removes sone from notification if sone is removed`() {
91                 eventBus.post(NewSoneFoundEvent(sone))
92                 val notification = notificationManager.notifications.single() as ListNotification<*>
93                 eventBus.post(SoneRemovedEvent(sone))
94                 assertThat(notification.elements, emptyIterable())
95         }
96
97 }
98
99 private val sone = IdOnlySone("sone-id")