Optimize some imports
[Sone.git] / src / test / kotlin / net / pterodactylus / sone / web / ajax / DeleteProfileFieldAjaxPageTest.kt
index 6ea28f3..9e4a8e0 100644 (file)
@@ -1,10 +1,11 @@
 package net.pterodactylus.sone.web.ajax
 
-import org.hamcrest.MatcherAssert.assertThat
-import org.hamcrest.Matchers.equalTo
-import org.hamcrest.Matchers.nullValue
-import org.junit.Test
-import org.mockito.Mockito.verify
+import net.pterodactylus.sone.test.*
+import net.pterodactylus.sone.web.*
+import org.hamcrest.MatcherAssert.*
+import org.hamcrest.Matchers.*
+import org.junit.*
+import org.mockito.Mockito.*
 
 /**
  * Unit test for [DeleteProfileFieldAjaxPage].
@@ -13,8 +14,7 @@ class DeleteProfileFieldAjaxPageTest : JsonPageTest("deleteProfileField.ajax", p
 
        @Test
        fun `request without field id results in invalid field id error`() {
-               assertThat(json.isSuccess, equalTo(false))
-               assertThat(json.error, equalTo("invalid-field-id"))
+               assertThatJsonFailed("invalid-field-id")
        }
 
        @Test
@@ -22,10 +22,15 @@ class DeleteProfileFieldAjaxPageTest : JsonPageTest("deleteProfileField.ajax", p
                profile.addField("foo")
                val fieldId = profile.getFieldByName("foo")!!.id
                addRequestParameter("field", fieldId)
-               assertThat(json.isSuccess, equalTo(true))
+               assertThatJsonIsSuccessful()
                assertThat(profile.getFieldByName("foo"), nullValue())
                verify(currentSone).profile = profile
                verify(core).touchConfiguration()
        }
 
+       @Test
+       fun `page can be created by dependency injection`() {
+           assertThat(baseInjector.getInstance<DeleteProfileFieldAjaxPage>(), notNullValue())
+       }
+
 }