2019-12-03 11:29:51 +01:00
|
|
|
# Portions of this file are derived from Pleroma:
|
|
|
|
# Pleroma: A lightweight social networking server
|
|
|
|
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
|
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2020-01-26 21:36:50 +01:00
|
|
|
defmodule Mobilizon.Web.Plugs.MappedSignatureToIdentityTest do
|
|
|
|
use Mobilizon.Web.ConnCase
|
2021-11-19 17:40:42 +01:00
|
|
|
import Mobilizon.Factory
|
2020-01-23 00:55:07 +01:00
|
|
|
|
2020-01-26 21:36:50 +01:00
|
|
|
alias Mobilizon.Web.Plugs.MappedSignatureToIdentity
|
2019-12-03 11:29:51 +01:00
|
|
|
|
|
|
|
defp set_signature(conn, key_id) do
|
|
|
|
conn
|
|
|
|
|> put_req_header("signature", "keyId=\"#{key_id}\"")
|
|
|
|
|> assign(:valid_signature, true)
|
|
|
|
end
|
|
|
|
|
|
|
|
test "it successfully maps a valid identity with a valid signature" do
|
2021-11-19 17:40:42 +01:00
|
|
|
insert(:actor, domain: "framapiaf.org", url: "https://framapiaf.org/users/admin")
|
2021-11-13 18:45:01 +01:00
|
|
|
|
|
|
|
conn =
|
|
|
|
build_conn(:get, "/doesntmattter")
|
|
|
|
|> set_signature("https://framapiaf.org/users/admin")
|
|
|
|
|> MappedSignatureToIdentity.call(%{})
|
|
|
|
|
|
|
|
refute is_nil(conn.assigns.actor)
|
2019-12-03 11:29:51 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
test "it successfully maps a valid identity with a valid signature with payload" do
|
2021-11-19 17:40:42 +01:00
|
|
|
insert(:actor, domain: "framapiaf.org", url: "https://framapiaf.org/users/admin")
|
2021-11-13 18:45:01 +01:00
|
|
|
|
|
|
|
conn =
|
|
|
|
build_conn(:post, "/doesntmattter", %{"actor" => "https://framapiaf.org/users/admin"})
|
|
|
|
|> set_signature("https://framapiaf.org/users/admin")
|
|
|
|
|> MappedSignatureToIdentity.call(%{})
|
|
|
|
|
|
|
|
refute is_nil(conn.assigns.actor)
|
2019-12-03 11:29:51 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
test "it considers a mapped identity to be invalid when it mismatches a payload" do
|
2021-11-19 17:40:42 +01:00
|
|
|
insert(:actor, domain: "framapiaf.org", url: "https://framapiaf.org/users/admin")
|
|
|
|
insert(:actor, domain: "niu.moe", url: "https://niu.moe/users/rye")
|
2021-11-13 18:45:01 +01:00
|
|
|
|
|
|
|
conn =
|
|
|
|
build_conn(:post, "/doesntmattter", %{"actor" => "https://framapiaf.org/users/admin"})
|
|
|
|
|> set_signature("https://niu.moe/users/rye")
|
|
|
|
|> MappedSignatureToIdentity.call(%{})
|
|
|
|
|
|
|
|
assert %{valid_signature: false} == conn.assigns
|
2019-12-03 11:29:51 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
test "it considers a mapped identity to be invalid when the identity cannot be found" do
|
2021-11-19 17:40:42 +01:00
|
|
|
insert(:actor, domain: "framapiaf.org", url: "https://framapiaf.org/users/admin")
|
|
|
|
insert(:actor, domain: "mastodon.social", url: "https://mastodon.social/users/gargron")
|
2021-11-13 18:45:01 +01:00
|
|
|
|
|
|
|
conn =
|
|
|
|
build_conn(:post, "/doesntmattter", %{"actor" => "https://framapiaf.org/users/admin"})
|
|
|
|
|> set_signature("https://mastodon.social/users/gargron")
|
|
|
|
|> MappedSignatureToIdentity.call(%{})
|
|
|
|
|
|
|
|
assert %{valid_signature: false} == conn.assigns
|
2019-12-03 11:29:51 +01:00
|
|
|
end
|
|
|
|
end
|