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

index 50b2dd7..ef0d3f5 100644 (file)
@@ -11,11 +11,12 @@ import net.pterodactylus.sone.web.page.FreenetRequest
 import net.pterodactylus.util.template.Template
 import net.pterodactylus.util.template.TemplateContext
 import java.net.URI
+import javax.inject.Inject
 
 /**
  * Lets the user browser another Sone.
  */
-class ViewSonePage(template: Template, webInterface: WebInterface):
+class ViewSonePage @Inject constructor(template: Template, webInterface: WebInterface):
                SoneTemplatePage("viewSone.html", webInterface, template) {
 
        override fun handleRequest(freenetRequest: FreenetRequest, templateContext: TemplateContext) {
index d7ff46d..67adb8f 100644 (file)
@@ -4,14 +4,17 @@ import net.pterodactylus.sone.data.Post
 import net.pterodactylus.sone.data.PostReply
 import net.pterodactylus.sone.data.Profile
 import net.pterodactylus.sone.data.Sone
+import net.pterodactylus.sone.test.getInstance
 import net.pterodactylus.sone.test.isOnPage
 import net.pterodactylus.sone.test.mock
 import net.pterodactylus.sone.test.whenever
 import net.pterodactylus.sone.utils.Pagination
 import net.pterodactylus.sone.utils.asOptional
+import net.pterodactylus.sone.web.baseInjector
 import org.hamcrest.MatcherAssert.assertThat
 import org.hamcrest.Matchers.contains
 import org.hamcrest.Matchers.equalTo
+import org.hamcrest.Matchers.notNullValue
 import org.hamcrest.Matchers.nullValue
 import org.junit.Before
 import org.junit.Test
@@ -204,4 +207,9 @@ class ViewSonePageTest: WebPageTest(::ViewSonePage) {
                assertThat(page.isLinkExcepted(null), equalTo(true))
        }
 
+       @Test
+       fun `page can be created by dependency injection`() {
+           assertThat(baseInjector.getInstance<ViewSonePage>(), notNullValue())
+       }
+
 }