summaryrefslogtreecommitdiff
path: root/test/notification_test.exs
diff options
context:
space:
mode:
authorIvan Tashkinov <ivantashkinov@gmail.com>2020-09-19 19:16:55 +0300
committerIvan Tashkinov <ivantashkinov@gmail.com>2020-09-19 19:16:55 +0300
commit60b025b782eb27b86a791451149b6690431371dc (patch)
tree1b505061c4374b6fa8a8491b3402707e9eccd797 /test/notification_test.exs
parent6c052bd5b6cc29d321b500654bd6b098d0e6c56a (diff)
downloadpleroma-60b025b782eb27b86a791451149b6690431371dc.tar.gz
pleroma-60b025b782eb27b86a791451149b6690431371dc.zip
[#2074] OAuth scope checking in Streaming API.
Diffstat (limited to 'test/notification_test.exs')
-rw-r--r--test/notification_test.exs8
1 files changed, 5 insertions, 3 deletions
diff --git a/test/notification_test.exs b/test/notification_test.exs
index a09b08675..f2e0f0b0d 100644
--- a/test/notification_test.exs
+++ b/test/notification_test.exs
@@ -179,17 +179,19 @@ defmodule Pleroma.NotificationTest do
describe "create_notification" do
@tag needs_streamer: true
test "it creates a notification for user and send to the 'user' and the 'user:notification' stream" do
- user = insert(:user)
+ %{user: user, token: oauth_token} = oauth_access(["read"])
task =
Task.async(fn ->
- Streamer.get_topic_and_add_socket("user", user)
+ {:ok, _topic} = Streamer.get_topic_and_add_socket("user", user, oauth_token)
assert_receive {:render_with_user, _, _, _}, 4_000
end)
task_user_notification =
Task.async(fn ->
- Streamer.get_topic_and_add_socket("user:notification", user)
+ {:ok, _topic} =
+ Streamer.get_topic_and_add_socket("user:notification", user, oauth_token)
+
assert_receive {:render_with_user, _, _, _}, 4_000
end)