commit: 66e1b4089528dcd5bcdb61343f111cea03f17ab8
parent 60101e240dea53c3496eda548dbe269fc22b2f72
Author: Mark Felder <feld@feld.me>
Date: Wed, 28 Aug 2024 16:04:12 -0400
Cancel if the User fetch resulted in a 410
Diffstat:
1 file changed, 23 insertions(+), 0 deletions(-)
diff --git a/test/pleroma/workers/receiver_worker_test.exs b/test/pleroma/workers/receiver_worker_test.exs
@@ -65,6 +65,12 @@ defmodule Pleroma.Workers.ReceiverWorkerTest do
status: 404,
body: ""
}
+
+ %{url: "https://springfield.social/users/hankscorpio"} ->
+ %Tesla.Env{
+ status: 410,
+ body: ""
+ }
end)
end
@@ -101,6 +107,23 @@ defmodule Pleroma.Workers.ReceiverWorkerTest do
assert {:cancel, {:error, :not_found}} = ReceiverWorker.perform(oban_job)
end
+
+ test "when request returns a 410" do
+ params =
+ insert(:note_activity).data
+ |> Map.put("actor", "https://springfield.social/users/hankscorpio")
+
+ {:ok, oban_job} =
+ Federator.incoming_ap_doc(%{
+ method: "POST",
+ req_headers: [],
+ request_path: "/inbox",
+ params: params,
+ query_string: ""
+ })
+
+ assert {:cancel, {:error, :not_found}} = ReceiverWorker.perform(oban_job)
+ end
end
test "it can validate the signature" do