mirror of
https://git.pleroma.social/pleroma/pleroma.git
synced 2024-12-22 16:16:34 +00:00
Merge branch 'scrubber-mention-hashtag' into 'develop'
Add tests for Mastodon mention hashtag class See merge request pleroma/pleroma!4255
This commit is contained in:
commit
7f3600fddd
1 changed files with 22 additions and 0 deletions
|
@ -41,6 +41,10 @@ defmodule Pleroma.HTMLTest do
|
||||||
<span class="h-card"><a class="u-url mention animate-spin">@<span>foo</span></a></span>
|
<span class="h-card"><a class="u-url mention animate-spin">@<span>foo</span></a></span>
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
@mention_hashtags_sample """
|
||||||
|
<a href="https://mastodon.example/tags/linux" class="mention hashtag" rel="tag">#<span>linux</span></a>
|
||||||
|
"""
|
||||||
|
|
||||||
describe "StripTags scrubber" do
|
describe "StripTags scrubber" do
|
||||||
test "works as expected" do
|
test "works as expected" do
|
||||||
expected = """
|
expected = """
|
||||||
|
@ -126,6 +130,15 @@ defmodule Pleroma.HTMLTest do
|
||||||
Pleroma.HTML.Scrubber.TwitterText
|
Pleroma.HTML.Scrubber.TwitterText
|
||||||
)
|
)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
test "does allow mention hashtags" do
|
||||||
|
expected = """
|
||||||
|
<a href="https://mastodon.example/tags/linux" class="mention hashtag" rel="tag">#<span>linux</span></a>
|
||||||
|
"""
|
||||||
|
|
||||||
|
assert expected ==
|
||||||
|
HTML.filter_tags(@mention_hashtags_sample, Pleroma.HTML.Scrubber.Default)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
describe "default scrubber" do
|
describe "default scrubber" do
|
||||||
|
@ -189,6 +202,15 @@ defmodule Pleroma.HTMLTest do
|
||||||
Pleroma.HTML.Scrubber.Default
|
Pleroma.HTML.Scrubber.Default
|
||||||
)
|
)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
test "does allow mention hashtags" do
|
||||||
|
expected = """
|
||||||
|
<a href="https://mastodon.example/tags/linux" class="mention hashtag" rel="tag">#<span>linux</span></a>
|
||||||
|
"""
|
||||||
|
|
||||||
|
assert expected ==
|
||||||
|
HTML.filter_tags(@mention_hashtags_sample, Pleroma.HTML.Scrubber.Default)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
describe "extract_first_external_url_from_object" do
|
describe "extract_first_external_url_from_object" do
|
||||||
|
|
Loading…
Reference in a new issue