diff options
author | Haelwenn (lanodan) Monnier <contact@hacktivis.me> | 2018-11-24 08:47:35 +0100 |
---|---|---|
committer | Haelwenn (lanodan) Monnier <contact@hacktivis.me> | 2018-11-24 08:51:35 +0100 |
commit | cc8952b45fc9c8d77f1d7c83674d4194b032c5fd (patch) | |
tree | a0f834316f6528cada1a543c270afbf8651c86c1 | |
parent | ca029f0b693891fbe21dc58fb379c2319cf05f17 (diff) | |
download | pleroma-cc8952b45fc9c8d77f1d7c83674d4194b032c5fd.tar.gz |
Web.MastodonApi.MastodonSocketTest: Add test for unauthenticated websocket
-rw-r--r-- | test/web/mastodon_api/mastodon_socket_test.exs | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/test/web/mastodon_api/mastodon_socket_test.exs b/test/web/mastodon_api/mastodon_socket_test.exs new file mode 100644 index 000000000..c7d71defc --- /dev/null +++ b/test/web/mastodon_api/mastodon_socket_test.exs @@ -0,0 +1,33 @@ +defmodule Pleroma.Web.MastodonApi.MastodonSocketTest do + use Pleroma.DataCase + + alias Pleroma.Web.MastodonApi.MastodonSocket + alias Pleroma.Web.{Streamer, CommonAPI} + alias Pleroma.User + + import Pleroma.Factory + + test "public is working when non-authenticated" do + user = insert(:user) + + task = + Task.async(fn -> + assert_receive {:text, _}, 4_000 + end) + + fake_socket = %{ + transport_pid: task.pid, + assigns: %{} + } + + topics = %{ + "public" => [fake_socket] + } + + {:ok, activity} = CommonAPI.post(user, %{"status" => "Test"}) + + Streamer.push_to_socket(topics, "public", activity) + + Task.await(task) + end +end |