From: David ‘Bombe’ Roden Date: Sat, 20 Jan 2018 23:42:06 +0000 (+0100) Subject: Add test for DI constructability of DeleteReplyPage X-Git-Tag: v79^2~219 X-Git-Url: https://git.pterodactylus.net/?p=Sone.git;a=commitdiff_plain;h=79b7e5bbbf68e66ccaf82f6cd4004f387f4e83fe Add test for DI constructability of DeleteReplyPage --- diff --git a/src/main/kotlin/net/pterodactylus/sone/web/pages/DeleteReplyPage.kt b/src/main/kotlin/net/pterodactylus/sone/web/pages/DeleteReplyPage.kt index 29d8c81..d524c0e 100644 --- a/src/main/kotlin/net/pterodactylus/sone/web/pages/DeleteReplyPage.kt +++ b/src/main/kotlin/net/pterodactylus/sone/web/pages/DeleteReplyPage.kt @@ -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 /** * This page lets the user delete a reply. */ -class DeleteReplyPage(template: Template, webInterface: WebInterface): +class DeleteReplyPage @Inject constructor(template: Template, webInterface: WebInterface): LoggedInPage("deleteReply.html", template, "Page.DeleteReply.Title", webInterface) { override fun handleRequest(freenetRequest: FreenetRequest, currentSone: Sone, templateContext: TemplateContext) { diff --git a/src/test/kotlin/net/pterodactylus/sone/web/pages/DeleteReplyPageTest.kt b/src/test/kotlin/net/pterodactylus/sone/web/pages/DeleteReplyPageTest.kt index c332557..5cc0e7f 100644 --- a/src/test/kotlin/net/pterodactylus/sone/web/pages/DeleteReplyPageTest.kt +++ b/src/test/kotlin/net/pterodactylus/sone/web/pages/DeleteReplyPageTest.kt @@ -2,11 +2,14 @@ package net.pterodactylus.sone.web.pages import net.pterodactylus.sone.data.PostReply 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 @@ -95,4 +98,9 @@ class DeleteReplyPageTest: WebPageTest(::DeleteReplyPage) { } } + @Test + fun `page can be created by dependency injection`() { + assertThat(baseInjector.getInstance(), notNullValue()) + } + }