45be33b70e5caa14c794e269ebb8ae345c73cc64
[Sone.git] / src / test / kotlin / net / pterodactylus / sone / web / notification / LocalPostHandlerTest.kt
1 /**
2  * Sone - NewLocalPostHandlerTest.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 kotlin.test.*
30
31 /**
32  * Unit test for [LocalPostHandler].
33  */
34 class LocalPostHandlerTest {
35
36         private val eventBus = EventBus()
37         private val notificationManager = NotificationManager()
38         private val notification = ListNotification<Post>("", "", Template())
39
40         init {
41                 eventBus.register(LocalPostHandler(notificationManager, notification))
42         }
43
44         @Test
45         fun `handler adds post by local sone to notification`() {
46                 eventBus.post(NewPostFoundEvent(localPost))
47                 assertThat(notification.elements, contains<Post>(localPost))
48         }
49
50         @Test
51         fun `handler does not add post by remote sone to notification`() {
52                 eventBus.post(NewPostFoundEvent(remotePost))
53                 assertThat(notification.elements, emptyIterable())
54         }
55
56         @Test
57         fun `handler adds notification to manager`() {
58                 eventBus.post(NewPostFoundEvent(remotePost))
59                 assertThat(notificationManager.notifications, contains<Notification>(notification))
60         }
61
62         @Test
63         fun `handler does not add notification during first start`() {
64                 notificationManager.firstStart()
65                 eventBus.post(NewPostFoundEvent(remotePost))
66                 assertThat(notificationManager.notifications, not(hasItem<Notification>(notification)))
67         }
68
69         @Test
70         fun `handler removes post from notification when post is removed`() {
71                 notification.add(localPost)
72                 notificationManager.addNotification(notification)
73                 eventBus.post(PostRemovedEvent(localPost))
74                 assertThat(notification.elements, emptyIterable())
75         }
76
77         @Test
78         fun `handler does not remove remote post from notification when post is removed`() {
79                 notification.add(remotePost)
80                 notificationManager.addNotification(notification)
81                 eventBus.post(PostRemovedEvent(remotePost))
82                 assertThat(notification.elements, contains(remotePost))
83         }
84
85         @Test
86         fun `handler removes post from notification when post is marked as known`() {
87                 notification.add(localPost)
88                 notificationManager.addNotification(notification)
89                 eventBus.post(MarkPostKnownEvent(localPost))
90                 assertThat(notification.elements, emptyIterable())
91         }
92
93         @Test
94         fun `handler does not remove remote post from notification when post is marked as known`() {
95                 notification.add(remotePost)
96                 notificationManager.addNotification(notification)
97                 eventBus.post(MarkPostKnownEvent(remotePost))
98                 assertThat(notification.elements, contains(remotePost))
99         }
100
101 }
102
103 private val localSone: Sone = object : IdOnlySone("local-sone") {
104         override fun isLocal() = true
105 }
106 private val localPost: Post = object : Post.EmptyPost("local-post") {
107         override fun getSone() = localSone
108 }
109 private val remoteSone: Sone = IdOnlySone("remote-sone")
110 private val remotePost: Post = object : Post.EmptyPost("remote-post") {
111         override fun getSone() = remoteSone
112 }