Add test for rendering mute expiration date

Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
This commit is contained in:
marcin mikołajczak 2022-07-08 20:54:12 +02:00
parent b0f83aea29
commit 0b16ce79f9
1 changed files with 17 additions and 0 deletions

View File

@ -634,4 +634,21 @@ test "uses mediaproxy urls when it's enabled (regardless of media preview proxy
|> assert()
end
end
test "renders mute expiration date" do
user = insert(:user)
other_user = insert(:user)
{:ok, _user_relationships} =
User.mute(user, other_user, %{notifications: true, expires_in: 24 * 60 * 60})
%{
mute_expires_at: mute_expires_at
} = AccountView.render("show.json", %{user: other_user, for: user, mutes: true})
assert NaiveDateTime.diff(
mute_expires_at,
NaiveDateTime.utc_now() |> NaiveDateTime.add(24 * 60 * 60)
) in -3..3
end
end