pleroma/test/web/websub/websub_controller_test.exs

88 lines
2.5 KiB
Elixir
Raw Normal View History

2018-12-23 21:11:29 +01:00
# Pleroma: A lightweight social networking server
# Copyright © 2017-2018 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only
2017-04-20 17:47:33 +02:00
defmodule Pleroma.Web.Websub.WebsubControllerTest do
use Pleroma.Web.ConnCase
import Pleroma.Factory
2017-04-28 15:45:10 +02:00
alias Pleroma.Web.Websub.WebsubClientSubscription
2019-02-10 22:57:38 +01:00
alias Pleroma.Activity
alias Pleroma.Repo
2017-04-28 15:45:10 +02:00
alias Pleroma.Web.Websub
2017-04-20 17:47:33 +02:00
test "websub subscription request", %{conn: conn} do
user = insert(:user)
path = Pleroma.Web.OStatus.pubsub_path(user)
data = %{
"hub.callback": "http://example.org/sub",
"hub.mode": "subscribe",
2017-04-20 17:47:33 +02:00
"hub.topic": Pleroma.Web.OStatus.feed_path(user),
"hub.secret": "a random secret",
2017-04-22 12:05:48 +02:00
"hub.lease_seconds": "100"
2017-04-20 17:47:33 +02:00
}
2018-03-30 15:01:53 +02:00
conn =
conn
|> post(path, data)
2017-04-20 17:47:33 +02:00
assert response(conn, 202) == "Accepted"
end
2017-04-28 15:45:10 +02:00
test "websub subscription confirmation", %{conn: conn} do
websub = insert(:websub_client_subscription)
params = %{
"hub.mode" => "subscribe",
"hub.topic" => websub.topic,
"hub.challenge" => "some challenge",
2017-05-10 18:45:55 +02:00
"hub.lease_seconds" => "100"
2017-04-28 15:45:10 +02:00
}
2018-03-30 15:01:53 +02:00
conn =
conn
|> get("/push/subscriptions/#{websub.id}", params)
2017-04-28 15:45:10 +02:00
websub = Repo.get(WebsubClientSubscription, websub.id)
assert response(conn, 200) == "some challenge"
assert websub.state == "accepted"
2018-03-30 15:01:53 +02:00
assert_in_delta NaiveDateTime.diff(websub.valid_until, NaiveDateTime.utc_now()), 100, 5
2017-04-28 15:45:10 +02:00
end
describe "websub_incoming" do
test "handles incoming feed updates", %{conn: conn} do
websub = insert(:websub_client_subscription)
doc = "some stuff"
signature = Websub.sign(websub.secret, doc)
conn =
conn
|> put_req_header("x-hub-signature", "sha1=" <> signature)
|> put_req_header("content-type", "application/atom+xml")
|> post("/push/subscriptions/#{websub.id}", doc)
assert response(conn, 200) == "OK"
assert length(Repo.all(Activity)) == 1
end
test "rejects incoming feed updates with the wrong signature", %{conn: conn} do
websub = insert(:websub_client_subscription)
doc = "some stuff"
signature = Websub.sign("wrong secret", doc)
conn =
conn
|> put_req_header("x-hub-signature", "sha1=" <> signature)
|> put_req_header("content-type", "application/atom+xml")
|> post("/push/subscriptions/#{websub.id}", doc)
assert response(conn, 500) == "Error"
assert Enum.empty?(Repo.all(Activity))
end
2017-04-28 15:45:10 +02:00
end
end