diff --git a/src/test/kotlin/dev/usbharu/hideout/activitypub/interfaces/api/inbox/InboxControllerImplTest.kt b/src/test/kotlin/dev/usbharu/hideout/activitypub/interfaces/api/inbox/InboxControllerImplTest.kt index 75d76521..5bc960fa 100644 --- a/src/test/kotlin/dev/usbharu/hideout/activitypub/interfaces/api/inbox/InboxControllerImplTest.kt +++ b/src/test/kotlin/dev/usbharu/hideout/activitypub/interfaces/api/inbox/InboxControllerImplTest.kt @@ -19,6 +19,7 @@ import org.mockito.kotlin.eq import org.mockito.kotlin.whenever import org.springframework.http.MediaType import org.springframework.test.web.servlet.MockMvc +import org.springframework.test.web.servlet.get import org.springframework.test.web.servlet.post import org.springframework.test.web.servlet.setup.MockMvcBuilders @@ -101,4 +102,9 @@ class InboxControllerImplTest { } } + + @Test + fun `inbox GETリクエストには504を返す`() { + mockMvc.get("/inbox").andExpect { status { isMethodNotAllowed() } } + } }