X-Git-Url: https://git.pterodactylus.net/?p=Sone.git;a=blobdiff_plain;f=src%2Ftest%2Fkotlin%2Fnet%2Fpterodactylus%2Fsone%2Fweb%2Fajax%2FDeleteProfileFieldAjaxPageTest.kt;h=9e4a8e0a4543e990c93ec4e5ae39a08a0f5c9e38;hp=6ea28f3ad60831bf292712e9fb4a3e1b2c93d697;hb=d14188d87056cfd63490ef9f16f4aae0c1864864;hpb=4588d890e2d7eae8f9ca727a4435ad388c172615 diff --git a/src/test/kotlin/net/pterodactylus/sone/web/ajax/DeleteProfileFieldAjaxPageTest.kt b/src/test/kotlin/net/pterodactylus/sone/web/ajax/DeleteProfileFieldAjaxPageTest.kt index 6ea28f3..9e4a8e0 100644 --- a/src/test/kotlin/net/pterodactylus/sone/web/ajax/DeleteProfileFieldAjaxPageTest.kt +++ b/src/test/kotlin/net/pterodactylus/sone/web/ajax/DeleteProfileFieldAjaxPageTest.kt @@ -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(), notNullValue()) + } + }