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

index 8eccfb4..b2014f0 100644 (file)
@@ -6,11 +6,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
 
 /**
  * Lets the user delete a post they made.
  */
-class DeletePostPage(template: Template, webInterface: WebInterface):
+class DeletePostPage @Inject constructor(template: Template, webInterface: WebInterface):
                LoggedInPage("deletePost.html", template, "Page.DeletePost.Title", webInterface) {
 
        override fun handleRequest(freenetRequest: FreenetRequest, currentSone: Sone, templateContext: TemplateContext) {
index 5ccd5c2..3c18fb4 100644 (file)
@@ -2,11 +2,14 @@ package net.pterodactylus.sone.web.pages
 
 import net.pterodactylus.sone.data.Post
 import net.pterodactylus.sone.data.Sone
+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.web.Method.POST
 import org.hamcrest.MatcherAssert.assertThat
 import org.hamcrest.Matchers.equalTo
+import org.hamcrest.Matchers.notNullValue
 import org.junit.Before
 import org.junit.Test
 import org.mockito.Mockito.never
@@ -102,4 +105,9 @@ class DeletePostPageTest: WebPageTest(::DeletePostPage) {
                assertThat(templateContext["returnPage"], equalTo<Any>("return.html"))
        }
 
+       @Test
+       fun `page can be created by dependency injection`() {
+           assertThat(baseInjector.getInstance<DeletePostPage>(), notNullValue())
+       }
+
 }