}
@Provides
+ @Singleton
fun getMarkPostKnownDuringFirstStartHandler(core: Core, notificationManager: NotificationManager) =
MarkPostKnownDuringFirstStartHandler(notificationManager, core::markPostKnown)
fun getNewSoneNotification(loaders: Loaders) =
ListNotification<Sone>("new-sone-notification", "sones", loaders.loadTemplate("/templates/notify/newSoneNotification.html"), dismissable = false)
+ @Provides
+ @Singleton
+ fun getNewRemotePostHandler(notificationManager: NotificationManager, @Named("newRemotePost") newPostNotification: ListNotification<Post>) =
+ NewRemotePostHandler(notificationManager, newPostNotification)
+
+ @Provides
+ @Singleton
+ @Named("newRemotePost")
+ fun getNewPostNotification(loaders: Loaders) =
+ ListNotification<Post>("new-post-notification", "posts", loaders.loadTemplate("/templates/notify/newPostNotification.html"), dismissable = false)
+
}
import net.pterodactylus.sone.core.*
import net.pterodactylus.sone.core.event.*
import net.pterodactylus.sone.data.*
+import net.pterodactylus.sone.data.Post.*
import net.pterodactylus.sone.data.impl.*
import net.pterodactylus.sone.main.*
import net.pterodactylus.sone.notify.*
}
@Test
+ fun `mark-post-known-during-first-start handler is created as singleton`() {
+ injector.verifySingletonInstance<MarkPostKnownDuringFirstStartHandler>()
+ }
+
+ @Test
fun `mark-post-known-during-first-start handler is created with correct action`() {
notificationManager.addNotification(object : AbstractNotification("first-start-notification") {
override fun render(writer: Writer?) = Unit
assertThat(injector.getInstance<ListNotification<Sone>>(named("newSone")).isDismissable, equalTo(false))
}
+ @Test
+ fun `new-remote-post handler can be created`() {
+ assertThat(injector.getInstance<NewRemotePostHandler>(), notNullValue())
+ }
+
+ @Test
+ fun `new-remote-post handler is created as singleton`() {
+ injector.verifySingletonInstance<NewRemotePostHandler>()
+ }
+
+ @Test
+ fun `new-remote-post notification can be created`() {
+ assertThat(injector.getInstance<ListNotification<Post>>(named("newRemotePost")), notNullValue())
+ }
+
+ @Test
+ fun `new-remote-post notification is created as singleton`() {
+ injector.verifySingletonInstance<ListNotification<Post>>(named("newRemotePost"))
+ }
+
+ @Test
+ fun `new-remote-post notification has correct ID`() {
+ assertThat(injector.getInstance<ListNotification<Post>>(named("newRemotePost")).id, equalTo("new-post-notification"))
+ }
+
+ @Test
+ fun `new-remote-post notification is not dismissable`() {
+ assertThat(injector.getInstance<ListNotification<Post>>(named("newRemotePost")).isDismissable, equalTo(false))
+ }
+
+ @Test
+ fun `new-remote-post notification has correct key and template`() {
+ loaders.templates += "/templates/notify/newPostNotification.html" to "<% posts>".asTemplate()
+ val notification = injector.getInstance<ListNotification<Post>>(named("newRemotePost"))
+ val posts = listOf(EmptyPost("post1"), EmptyPost("post2"))
+ posts.forEach(notification::add)
+ assertThat(notification.render(), equalTo(posts.toString()))
+ }
+
}