Add test for delete profile field ajax page
[Sone.git] / src / test / kotlin / net / pterodactylus / sone / web / ajax / DeleteProfileFieldAjaxPageTest.kt
diff --git a/src/test/kotlin/net/pterodactylus/sone/web/ajax/DeleteProfileFieldAjaxPageTest.kt b/src/test/kotlin/net/pterodactylus/sone/web/ajax/DeleteProfileFieldAjaxPageTest.kt
new file mode 100644 (file)
index 0000000..6ea28f3
--- /dev/null
@@ -0,0 +1,31 @@
+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
+
+/**
+ * Unit test for [DeleteProfileFieldAjaxPage].
+ */
+class DeleteProfileFieldAjaxPageTest : JsonPageTest("deleteProfileField.ajax", pageSupplier = ::DeleteProfileFieldAjaxPage) {
+
+       @Test
+       fun `request without field id results in invalid field id error`() {
+               assertThat(json.isSuccess, equalTo(false))
+               assertThat(json.error, equalTo("invalid-field-id"))
+       }
+
+       @Test
+       fun `request with valid field id results in field deletion`() {
+               profile.addField("foo")
+               val fieldId = profile.getFieldByName("foo")!!.id
+               addRequestParameter("field", fieldId)
+               assertThat(json.isSuccess, equalTo(true))
+               assertThat(profile.getFieldByName("foo"), nullValue())
+               verify(currentSone).profile = profile
+               verify(core).touchConfiguration()
+       }
+
+}