Add test for DI constructability of UnlikePage
authorDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Sun, 21 Jan 2018 10:40:57 +0000 (11:40 +0100)
committerDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Sun, 21 Jan 2018 10:40:57 +0000 (11:40 +0100)
src/main/kotlin/net/pterodactylus/sone/web/pages/UnlikePage.kt
src/test/kotlin/net/pterodactylus/sone/web/pages/UnlikePageTest.kt

index 6bfabe2..4e03b76 100644 (file)
@@ -7,11 +7,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 unlike a [net.pterodactylus.sone.data.Post] or [net.pterodactylus.sone.data.Reply].
  */
-class UnlikePage(template: Template, webInterface: WebInterface):
+class UnlikePage @Inject constructor(template: Template, webInterface: WebInterface):
                LoggedInPage("unlike.html", template, "Page.Unlike.Title", webInterface) {
 
        override fun handleRequest(freenetRequest: FreenetRequest, currentSone: Sone, templateContext: TemplateContext) {
index fe00729..0fb4d1a 100644 (file)
@@ -1,8 +1,11 @@
 package net.pterodactylus.sone.web.pages
 
+import net.pterodactylus.sone.test.getInstance
+import net.pterodactylus.sone.web.baseInjector
 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.ArgumentMatchers.any
 import org.mockito.Mockito.never
@@ -68,4 +71,9 @@ class UnlikePageTest: WebPageTest(::UnlikePage) {
                }
        }
 
+       @Test
+       fun `page can be created by dependency injection`() {
+           assertThat(baseInjector.getInstance<UnlikePage>(), notNullValue())
+       }
+
 }