Add test for DI constructability of AboutPage
[Sone.git] / src / test / kotlin / net / pterodactylus / sone / web / pages / AboutPageTest.kt
index 142bf81..7856ee2 100644 (file)
@@ -1,10 +1,16 @@
 package net.pterodactylus.sone.web.pages
 
+import com.google.inject.Guice
 import net.pterodactylus.sone.main.SonePlugin.PluginHomepage
 import net.pterodactylus.sone.main.SonePlugin.PluginVersion
 import net.pterodactylus.sone.main.SonePlugin.PluginYear
+import net.pterodactylus.sone.test.getInstance
+import net.pterodactylus.sone.test.isProvidedByMock
+import net.pterodactylus.sone.web.WebInterface
+import net.pterodactylus.util.template.Template
 import org.hamcrest.MatcherAssert.assertThat
 import org.hamcrest.Matchers.equalTo
+import org.hamcrest.Matchers.notNullValue
 import org.junit.Test
 
 /**
@@ -46,4 +52,16 @@ class AboutPageTest: WebPageTest({ template, webInterface -> AboutPage(template,
                assertThat(templateContext["year"], equalTo<Any>(year))
        }
 
+       @Test
+       fun `about page can be created by dependency injection`() {
+               val injector = Guice.createInjector(
+                               Template::class.isProvidedByMock(),
+                               WebInterface::class.isProvidedByMock(),
+                               PluginVersion::class.isProvidedByMock(),
+                               PluginYear::class.isProvidedByMock(),
+                               PluginHomepage::class.isProvidedByMock()
+               )
+               assertThat(injector.getInstance<AboutPage>(), notNullValue())
+       }
+
 }