tests: fix up for changed bbcode library output and verify html is properly escaped
This commit is contained in:
parent
501af917b5
commit
ef52aa0e66
@ -128,7 +128,16 @@ defmodule Pleroma.Web.CommonAPI.UtilsTest do
|
|||||||
assert output == expected
|
assert output == expected
|
||||||
|
|
||||||
text = "[b]hello world![/b]\n\nsecond paragraph!"
|
text = "[b]hello world![/b]\n\nsecond paragraph!"
|
||||||
expected = "<strong>hello world!</strong><br><br>second paragraph!"
|
expected = "<strong>hello world!</strong><br>\n<br>\nsecond paragraph!"
|
||||||
|
|
||||||
|
{output, [], []} = Utils.format_input(text, "text/bbcode")
|
||||||
|
|
||||||
|
assert output == expected
|
||||||
|
|
||||||
|
text = "[b]hello world![/b]\n\n<strong>second paragraph!</strong>"
|
||||||
|
|
||||||
|
expected =
|
||||||
|
"<strong>hello world!</strong><br>\n<br>\n<strong>second paragraph!</strong>"
|
||||||
|
|
||||||
{output, [], []} = Utils.format_input(text, "text/bbcode")
|
{output, [], []} = Utils.format_input(text, "text/bbcode")
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user