2018-12-23 20:11:29 +00: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 15:47:33 +00:00
|
|
|
defmodule Pleroma.Web.Websub.WebsubControllerTest do
|
|
|
|
use Pleroma.Web.ConnCase
|
|
|
|
import Pleroma.Factory
|
2019-02-10 21:57:38 +00:00
|
|
|
alias Pleroma.Repo
|
2017-04-28 13:45:10 +00:00
|
|
|
alias Pleroma.Web.Websub
|
2019-03-05 02:52:23 +00:00
|
|
|
alias Pleroma.Web.Websub.WebsubClientSubscription
|
2017-04-20 15:47:33 +00:00
|
|
|
|
2019-08-19 15:34:29 +00:00
|
|
|
clear_config_all([:instance, :federating]) do
|
|
|
|
Pleroma.Config.put([:instance, :federating], true)
|
2019-07-09 06:30:51 +00:00
|
|
|
end
|
|
|
|
|
2017-04-20 15:47:33 +00: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",
|
2017-04-22 11:48:10 +00:00
|
|
|
"hub.mode": "subscribe",
|
2017-04-20 15:47:33 +00:00
|
|
|
"hub.topic": Pleroma.Web.OStatus.feed_path(user),
|
|
|
|
"hub.secret": "a random secret",
|
2017-04-22 10:05:48 +00:00
|
|
|
"hub.lease_seconds": "100"
|
2017-04-20 15:47:33 +00:00
|
|
|
}
|
|
|
|
|
2018-03-30 13:01:53 +00:00
|
|
|
conn =
|
|
|
|
conn
|
|
|
|
|> post(path, data)
|
2017-04-20 15:47:33 +00:00
|
|
|
|
|
|
|
assert response(conn, 202) == "Accepted"
|
|
|
|
end
|
2017-04-28 13:45:10 +00: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 16:45:55 +00:00
|
|
|
"hub.lease_seconds" => "100"
|
2017-04-28 13:45:10 +00:00
|
|
|
}
|
|
|
|
|
2018-03-30 13:01:53 +00:00
|
|
|
conn =
|
|
|
|
conn
|
|
|
|
|> get("/push/subscriptions/#{websub.id}", params)
|
2017-04-28 13:45:10 +00:00
|
|
|
|
|
|
|
websub = Repo.get(WebsubClientSubscription, websub.id)
|
|
|
|
|
|
|
|
assert response(conn, 200) == "some challenge"
|
|
|
|
assert websub.state == "accepted"
|
2018-03-30 13:01:53 +00:00
|
|
|
assert_in_delta NaiveDateTime.diff(websub.valid_until, NaiveDateTime.utc_now()), 100, 5
|
2017-04-28 13:45:10 +00:00
|
|
|
end
|
|
|
|
|
2019-01-25 17:38:54 +00:00
|
|
|
describe "websub_incoming" do
|
2019-05-25 04:34:16 +00:00
|
|
|
test "accepts incoming feed updates", %{conn: conn} do
|
2019-01-25 17:38:54 +00:00
|
|
|
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"
|
|
|
|
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"
|
|
|
|
end
|
2017-04-28 13:45:10 +00:00
|
|
|
end
|
|
|
|
end
|