forked from AkkomaGang/akkoma
[#1560] Added tests for non-federating instance bahaviour to OStatusControllerTest.
This commit is contained in:
parent
b4367125e9
commit
bd8624d649
1 changed files with 29 additions and 0 deletions
|
@ -277,4 +277,33 @@ test "404s when attachment isn't audio or video", %{conn: conn} do
|
||||||
|> response(404)
|
|> response(404)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
describe "when instance is not federating," do
|
||||||
|
clear_config([:instance, :federating]) do
|
||||||
|
Pleroma.Config.put([:instance, :federating], false)
|
||||||
|
end
|
||||||
|
|
||||||
|
test "returns 404 for GET routes", %{conn: conn} do
|
||||||
|
conn = put_req_header(conn, "accept", "application/json")
|
||||||
|
|
||||||
|
note_activity = insert(:note_activity, local: true)
|
||||||
|
[_, activity_uuid] = hd(Regex.scan(~r/.+\/([\w-]+)$/, note_activity.data["id"]))
|
||||||
|
|
||||||
|
object = Object.normalize(note_activity)
|
||||||
|
[_, object_uuid] = hd(Regex.scan(~r/.+\/([\w-]+)$/, object.data["id"]))
|
||||||
|
|
||||||
|
get_uris = [
|
||||||
|
"/activities/#{activity_uuid}",
|
||||||
|
"/objects/#{object_uuid}",
|
||||||
|
"/notice/#{note_activity.id}",
|
||||||
|
"/notice/#{note_activity.id}/embed_player"
|
||||||
|
]
|
||||||
|
|
||||||
|
for get_uri <- get_uris do
|
||||||
|
conn
|
||||||
|
|> get(get_uri)
|
||||||
|
|> json_response(404)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue