Add test for DI constructability of DismissNotificationPage
authorDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Sat, 20 Jan 2018 23:44:19 +0000 (00:44 +0100)
committerDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Sat, 20 Jan 2018 23:44:19 +0000 (00:44 +0100)
src/main/kotlin/net/pterodactylus/sone/web/pages/DismissNotificationPage.kt
src/test/kotlin/net/pterodactylus/sone/web/pages/DismissNotificationPageTest.kt

index 9f8eeb4..3cb3c43 100644 (file)
@@ -4,11 +4,12 @@ import net.pterodactylus.sone.web.WebInterface
 import net.pterodactylus.sone.web.page.FreenetRequest
 import net.pterodactylus.util.template.Template
 import net.pterodactylus.util.template.TemplateContext
+import javax.inject.Inject
 
 /**
  * Page that lets the user dismiss a notification.
  */
-class DismissNotificationPage(template: Template, webInterface: WebInterface):
+class DismissNotificationPage @Inject constructor(template: Template, webInterface: WebInterface):
                SoneTemplatePage("dismissNotification.html", webInterface, template, "Page.DismissNotification.Title") {
 
        override fun handleRequest(freenetRequest: FreenetRequest, templateContext: TemplateContext) {
index 41f47aa..c6aab00 100644 (file)
@@ -1,11 +1,14 @@
 package net.pterodactylus.sone.web.pages
 
+import net.pterodactylus.sone.test.getInstance
 import net.pterodactylus.sone.test.mock
 import net.pterodactylus.sone.test.whenever
+import net.pterodactylus.sone.web.baseInjector
 import net.pterodactylus.util.notify.Notification
 import net.pterodactylus.util.web.Method.POST
 import org.hamcrest.MatcherAssert.assertThat
 import org.hamcrest.Matchers.equalTo
+import org.hamcrest.Matchers.notNullValue
 import org.junit.Test
 import org.mockito.Mockito.never
 import org.mockito.Mockito.verify
@@ -63,4 +66,9 @@ class DismissNotificationPageTest: WebPageTest(::DismissNotificationPage) {
                }
        }
 
+       @Test
+       fun `page can be created by dependency injection`() {
+               assertThat(baseInjector.getInstance<DismissNotificationPage>(), notNullValue())
+       }
+
 }