🎨 Add helper for simulating first start
[Sone.git] / src / test / kotlin / net / pterodactylus / sone / web / notification / NewRemotePostHandlerTest.kt
1 /**
2  * Sone - NewRemotePostHandlerTest.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.Post.*
24 import net.pterodactylus.sone.data.impl.*
25 import net.pterodactylus.sone.notify.*
26 import net.pterodactylus.util.notify.*
27 import net.pterodactylus.util.template.*
28 import org.hamcrest.MatcherAssert.*
29 import org.hamcrest.Matchers.*
30 import kotlin.test.*
31
32 /**
33  * Unit test for [NewRemotePostHandler].
34  */
35 @Suppress("UnstableApiUsage")
36 class NewRemotePostHandlerTest {
37
38         private val eventBus = EventBus()
39         private val notificationManager = NotificationManager()
40         private val notification = ListNotification<Post>("", "", Template())
41         private val handler = NewRemotePostHandler(notificationManager, notification)
42
43         init {
44                 eventBus.register(handler)
45         }
46
47         @Test
48         fun `handler adds remote post to new-post notification`() {
49                 eventBus.post(NewPostFoundEvent(remotePost))
50                 assertThat(notification.elements, contains(remotePost))
51         }
52
53         @Test
54         fun `handler does not add local post to new-post notification`() {
55                 eventBus.post(NewPostFoundEvent(localPost))
56                 assertThat(notification.elements, emptyIterable())
57         }
58
59         @Test
60         fun `handler adds notification for remote post to notification manager`() {
61                 eventBus.post(NewPostFoundEvent(remotePost))
62                 assertThat(notificationManager.notifications, contains<Notification>(notification))
63         }
64
65         @Test
66         fun `handler does not add notification for local post to notification manager`() {
67                 eventBus.post(NewPostFoundEvent(localPost))
68                 assertThat(notificationManager.notifications, emptyIterable())
69         }
70
71         @Test
72         fun `handler does not add notification to notification manager during first start`() {
73                 notificationManager.firstStart()
74                 eventBus.post(NewPostFoundEvent(remotePost))
75                 assertThat(notificationManager.notifications, not(hasItem(notification)))
76         }
77
78 }
79
80 private val remoteSone: Sone = IdOnlySone("remote-sone")
81 private val remotePost: Post = object : EmptyPost("remote-post") {
82         override fun getSone() = remoteSone
83 }
84
85 private val localSone: Sone = object : IdOnlySone("local-sone") {
86         override fun isLocal() = true
87 }
88 private val localPost: Post = object : EmptyPost("local-post") {
89         override fun getSone() = localSone
90 }