pleroma/test/web/thread_mute_test.exs

41 lines
1 KiB
Elixir
Raw Normal View History

2019-02-09 13:23:51 +00:00
# Pleroma: A lightweight social networking server
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only
defmodule Pleroma.Web.ThreadMuteTest do
use Pleroma.DataCase
import Pleroma.Web.ThreadMute
import Pleroma.Factory
2019-02-09 13:34:42 +00:00
describe "mute tests" do
setup do
user = insert(:user, %{id: "1"})
2019-02-09 13:23:51 +00:00
2019-02-09 13:34:42 +00:00
activity =
insert(:note_activity, %{
data: %{
"context" => "http://localhost:4000/contexts/361ca23e-ffa7-4773-b981-a355a18dc592"
}
})
2019-02-09 13:23:51 +00:00
2019-02-09 13:34:42 +00:00
[user: user, activity: activity]
end
2019-02-09 13:23:51 +00:00
2019-02-09 13:34:42 +00:00
test "add mute", %{user: user, activity: activity} do
id = activity.id
{:ok, mute} = add_mute(user, id)
assert mute.user_id == "1"
assert mute.context == "http://localhost:4000/contexts/361ca23e-ffa7-4773-b981-a355a18dc592"
end
test "remove mute", %{user: user, activity: activity} do
id = activity.id
add_mute(user, id)
{1, nil} = remove_mute(user, id)
end
2019-02-09 13:23:51 +00:00
end
end