forked from AkkomaGang/akkoma
mix format
This commit is contained in:
parent
883036b245
commit
cad4ba2ab3
2 changed files with 6 additions and 4 deletions
|
@ -34,8 +34,7 @@ defmodule Pleroma.Web.ActivityPub.VisibilityTest do
|
||||||
{:ok, unlisted} =
|
{:ok, unlisted} =
|
||||||
CommonAPI.post(user, %{status: "@#{mentioned.nickname}", visibility: "unlisted"})
|
CommonAPI.post(user, %{status: "@#{mentioned.nickname}", visibility: "unlisted"})
|
||||||
|
|
||||||
{:ok, local} =
|
{:ok, local} = CommonAPI.post(user, %{status: "@#{mentioned.nickname}", visibility: "local"})
|
||||||
CommonAPI.post(user, %{status: "@#{mentioned.nickname}", visibility: "local"})
|
|
||||||
|
|
||||||
{:ok, list} =
|
{:ok, list} =
|
||||||
CommonAPI.post(user, %{
|
CommonAPI.post(user, %{
|
||||||
|
|
|
@ -238,7 +238,9 @@ test "EmojiReact notification with remote custom emoji" do
|
||||||
other_user = insert(:user, local: false)
|
other_user = insert(:user, local: false)
|
||||||
|
|
||||||
{:ok, activity} = CommonAPI.post(user, %{status: "#morb"})
|
{:ok, activity} = CommonAPI.post(user, %{status: "#morb"})
|
||||||
{:ok, emoji_react, _} = Builder.emoji_react(other_user, Object.normalize(activity, fetch: false), ":100a:")
|
|
||||||
|
{:ok, emoji_react, _} =
|
||||||
|
Builder.emoji_react(other_user, Object.normalize(activity, fetch: false), ":100a:")
|
||||||
|
|
||||||
remoteUrl = "http://evil.website/emoji/100a.png"
|
remoteUrl = "http://evil.website/emoji/100a.png"
|
||||||
[tag] = emoji_react["tag"]
|
[tag] = emoji_react["tag"]
|
||||||
|
@ -259,11 +261,12 @@ test "EmojiReact notification with remote custom emoji" do
|
||||||
pleroma: %{is_seen: false, is_muted: false},
|
pleroma: %{is_seen: false, is_muted: false},
|
||||||
type: "pleroma:emoji_reaction",
|
type: "pleroma:emoji_reaction",
|
||||||
emoji: ":100a:",
|
emoji: ":100a:",
|
||||||
emoji_url: (if testProxy, do: MediaProxy.encode_url(remoteUrl), else: remoteUrl),
|
emoji_url: if(testProxy, do: MediaProxy.encode_url(remoteUrl), else: remoteUrl),
|
||||||
account: AccountView.render("show.json", %{user: other_user, for: user}),
|
account: AccountView.render("show.json", %{user: other_user, for: user}),
|
||||||
status: StatusView.render("show.json", %{activity: activity, for: user}),
|
status: StatusView.render("show.json", %{activity: activity, for: user}),
|
||||||
created_at: Utils.to_masto_date(notification.inserted_at)
|
created_at: Utils.to_masto_date(notification.inserted_at)
|
||||||
}
|
}
|
||||||
|
|
||||||
test_notifications_rendering([notification], user, [expected])
|
test_notifications_rendering([notification], user, [expected])
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue