🎨 Move new-sone template creation into module
[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.*
23 import net.pterodactylus.sone.data.impl.*
24 import net.pterodactylus.sone.notify.*
25 import net.pterodactylus.util.notify.*
26 import net.pterodactylus.util.template.*
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 notification = ListNotification<Sone>("", "", Template())
38         private val handler = NewSoneHandler(notificationManager, notification)
39
40         init {
41                 eventBus.register(handler)
42         }
43
44         @Test
45         fun `handler adds notification if new sone event is fired`() {
46                 eventBus.post(NewSoneFoundEvent(sone))
47                 assertThat(notificationManager.notifications, contains<Notification>(notification))
48         }
49
50         @Test
51         fun `handler adds sone to notification`() {
52                 eventBus.post(NewSoneFoundEvent(sone))
53                 assertThat(notification.elements, contains(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                 assertThat(notificationManager.notifications.single().id, equalTo("first-start-notification"))
63         }
64
65         @Test
66         fun `handler removes sone from notification if sone is marked as known`() {
67                 notification.add(sone)
68                 eventBus.post(MarkSoneKnownEvent(sone))
69                 assertThat(notification.elements, emptyIterable())
70         }
71
72         @Test
73         fun `handler removes sone from notification if sone is removed`() {
74                 notification.add(sone)
75                 eventBus.post(SoneRemovedEvent(sone))
76                 assertThat(notification.elements, emptyIterable())
77         }
78
79 }
80
81 private val sone: Sone = IdOnlySone("sone-id")