* src/engine/util/util-html.vala (smart_escape): Don't bother attempting to match a pair of tags, just something that looks like an opening tag, since IMG is an empty element and it is valid to not have a closing slash in HTML. Also, closing tags in HTML are optional anwyay. Add some unit tests.
142 lines
4.9 KiB
Vala
142 lines
4.9 KiB
Vala
/*
|
||
* Copyright 2016 Michael Gratton <mike@vee.net>
|
||
*
|
||
* This software is licensed under the GNU Lesser General Public License
|
||
* (version 2.1 or later). See the COPYING file in this distribution.
|
||
*/
|
||
|
||
class Geary.HTML.UtilTest : Gee.TestCase {
|
||
|
||
public UtilTest() {
|
||
base("Geary.HTML.Util");
|
||
add_test("smart_escape_div", smart_escape_div);
|
||
add_test("smart_escape_no_closing_tag", smart_escape_no_closing_tag);
|
||
add_test("smart_escape_img", smart_escape_img);
|
||
add_test("smart_escape_xhtml_img", smart_escape_xhtml_img);
|
||
add_test("smart_escape_mixed", smart_escape_mixed);
|
||
add_test("smart_escape_text", smart_escape_text);
|
||
add_test("smart_escape_text_url", smart_escape_text_url);
|
||
add_test("remove_html_tags", remove_html_tags);
|
||
}
|
||
|
||
public void smart_escape_div() {
|
||
string html = "<div>ohhai</div>";
|
||
assert(Geary.HTML.smart_escape(html, false) == html);
|
||
}
|
||
|
||
public void smart_escape_no_closing_tag() {
|
||
string html = "<div>ohhai";
|
||
assert(Geary.HTML.smart_escape(html, false) == html);
|
||
}
|
||
|
||
public void smart_escape_img() {
|
||
string html = "<img src=\"http://example.com/lol.gif\">";
|
||
assert(Geary.HTML.smart_escape(html, false) == html);
|
||
}
|
||
|
||
public void smart_escape_xhtml_img() {
|
||
string html = "<img src=\"http://example.com/lol.gif\"/>";
|
||
assert(Geary.HTML.smart_escape(html, false) == html);
|
||
}
|
||
|
||
public void smart_escape_mixed() {
|
||
string html = "mixed <div>ohhai</div> text";
|
||
assert(Geary.HTML.smart_escape(html, false) == html);
|
||
}
|
||
|
||
public void smart_escape_text() {
|
||
string text = "some text";
|
||
assert(Geary.HTML.smart_escape(text, false) == "<div style='white-space: pre;'>some text</div>");
|
||
}
|
||
|
||
public void smart_escape_text_url() {
|
||
string text = "<http://example.com>";
|
||
assert(Geary.HTML.smart_escape(text, false) == "<div style='white-space: pre;'><http://example.com></div>");
|
||
}
|
||
|
||
public void remove_html_tags() {
|
||
string blockquote_body = """<blockquote>hello</blockquote> <p>there</p>""";
|
||
|
||
string style_complete = """<style>
|
||
.bodyblack { font-family: Verdana, Arial, Helvetica, sans-serif; font-size:
|
||
12px; }
|
||
td { font-size: 12px; }
|
||
.footer { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10
|
||
px; }
|
||
</style>""";
|
||
|
||
string style_truncated = """<html><head>
|
||
<meta http-equiv=Content-Type content="text/html; charset=utf-8">
|
||
<style>
|
||
.bodyblack { font-family: Verdana, """;
|
||
|
||
assert(Geary.HTML.html_to_text(HTML_BODY_COMPLETE) == HTML_BODY_COMPLETE_EXPECTED);
|
||
assert(Geary.HTML.html_to_text(blockquote_body) == "hello\n there\n");
|
||
assert(Geary.HTML.html_to_text(blockquote_body, false) == " there\n");
|
||
assert(Geary.HTML.html_to_text(HTML_ENTITIES_BODY) == HTML_ENTITIES_EXPECTED);
|
||
assert(Geary.HTML.html_to_text(style_complete) == "");
|
||
assert(Geary.HTML.html_to_text(style_complete) == "");
|
||
assert(Geary.HTML.html_to_text(style_truncated) == "");
|
||
}
|
||
|
||
private static string HTML_BODY_COMPLETE = """<html><head>
|
||
<meta http-equiv=Content-Type content="text/html; charset=utf-8">
|
||
<style>
|
||
.bodyblack { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px; }
|
||
td { font-size: 12px; }
|
||
.footer { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10px; }
|
||
</style>
|
||
</head>
|
||
<body><table cellSpacing="0" cellPadding="0" width="450" border="0" class="bodyblack"><tr><td>
|
||
<p><br />Hi Kenneth, <br /> <br /> We xxxxx xxxx xx xxx xxx xx xxxx x xxxxxxxx xxxxxxxx.
|
||
<br /> <br /> <br /> <br />Thank you, <br /> <br />XXXXX
|
||
X XXXXXX<br /><br />You can reply directly to this message or click the following link:<br /><a href="https://app.foobar.com/xxxxxxxx752a0ab01641966deff6c48623aba">https://app.foobar.com/xxxxxxxxxxxxxxxx1641966deff6c48623aba</a><br /><br />You can change your email preferences at:<br /><a href="https://app.foobar.com/xxxxxxxxxxxxx">https://app.foobar.com/xxxxxxxxxxx</a></p></td></tr>
|
||
</table></body></html>
|
||
""";
|
||
|
||
private static string HTML_BODY_COMPLETE_EXPECTED = """
|
||
|
||
Hi Kenneth,
|
||
|
||
We xxxxx xxxx xx xxx xxx xx xxxx x xxxxxxxx xxxxxxxx.
|
||
|
||
|
||
|
||
|
||
Thank you,
|
||
|
||
XXXXX
|
||
X XXXXXX
|
||
|
||
You can reply directly to this message or click the following link:
|
||
https://app.foobar.com/xxxxxxxxxxxxxxxx1641966deff6c48623aba
|
||
|
||
You can change your email preferences at:
|
||
https://app.foobar.com/xxxxxxxxxxx
|
||
|
||
""";
|
||
|
||
private static string HTML_ENTITIES_BODY = """<html><head></head><body><div style="font-family: Verdana;font-size: 12.0px;"><div>
|
||
<div style="font-family: Verdana;font-size: 12.0px;">
|
||
<div>What if I said that I'd like to go to the theater tomorrow night.</div>
|
||
|
||
<div> </div>
|
||
|
||
<div>I think we could do that!</div>
|
||
""";
|
||
|
||
private static string HTML_ENTITIES_EXPECTED = """
|
||
|
||
What if I said that I'd like to go to the theater tomorrow night.
|
||
|
||
|
||
|
||
|
||
|
||
I think we could do that!
|
||
|
||
|
||
|
||
""";
|
||
|
||
}
|