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