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

index b2a6d7b..0b0df7d 100644 (file)
@@ -6,13 +6,14 @@ 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
 
 /**
  * Lets the user delete a Sone. Of course the Sone is not really deleted from
  * Freenet; merely all references to it are removed from the local plugin
  * installation.
  */
-class DeleteSonePage(template: Template, webInterface: WebInterface):
+class DeleteSonePage @Inject constructor(template: Template, webInterface: WebInterface):
                LoggedInPage("deleteSone.html", template, "Page.DeleteSone.Title", webInterface) {
 
        override fun handleRequest(freenetRequest: FreenetRequest, currentSone: Sone, templateContext: TemplateContext) {
index 415adf6..7e237d6 100644 (file)
@@ -1,9 +1,12 @@
 package net.pterodactylus.sone.web.pages
 
+import net.pterodactylus.sone.test.getInstance
 import net.pterodactylus.sone.test.whenever
+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.Mockito.any
 import org.mockito.Mockito.never
@@ -52,4 +55,9 @@ class DeleteSonePageTest: WebPageTest(::DeleteSonePage) {
                }
        }
 
+       @Test
+       fun `page can be created by dependency injection`() {
+               assertThat(baseInjector.getInstance<DeleteSonePage>(), notNullValue())
+       }
+
 }