summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2017-03-20 16:24:44 +0000
committerVincent Sanders <vince@kyllikki.org>2017-03-20 16:24:44 +0000
commit3c94073590196710ccbe59e9e43f7e3e5241bde0 (patch)
tree6f421a04c8fec4f1fd295732405ee1a29f18db19 /test
parent4eb7c5497e35a4dd1e67da8e4bf240ec8ad70bf2 (diff)
downloadnetsurf-3c94073590196710ccbe59e9e43f7e3e5241bde0.tar.gz
netsurf-3c94073590196710ccbe59e9e43f7e3e5241bde0.tar.bz2
extend mime sniffing tests to cover rss and atom feed detection
Diffstat (limited to 'test')
-rw-r--r--test/mimesniff.c38
1 files changed, 34 insertions, 4 deletions
diff --git a/test/mimesniff.c b/test/mimesniff.c
index 87c710971..20e6860ef 100644
--- a/test/mimesniff.c
+++ b/test/mimesniff.c
@@ -168,7 +168,7 @@ static struct test_mimetype match_unknown_bom_tests[] = {
static struct test_mimetype match_unknown_ws_tests[] = {
SIG("<?xml", text_xml, false),
- SIG("<!DOCTYPE HTML ", text_html, false),
+ SIG("<!DOCTYPE HTML>", text_html, false),
SIG("<HTML ", text_html, false),
SIG("<HEAD ", text_html, false),
SIG("<SCRIPT ", text_html, false),
@@ -725,22 +725,47 @@ START_TEST(mimesniff_html_header_sniff_test)
false,
&effective_type);
ck_assert_int_eq(err, NSERROR_NEED_DATA);
+}
+END_TEST
+
+
+#define SIG(s,m,a) { (const uint8_t *)s, SLEN(s), &corestring_lwc_##m, a }
+static struct test_mimetype text_html_header_tests[] = {
+ SIG("text", text_html, true),
+ SIG("\xef\xbb\xbf\t\n\r <!-- a comment><!DOCTYPE HTML><?pi?><head>", text_html, true),
+ SIG("\xef\xbb\xbf\t\n\r <!DOCTYPE HTML><?pi?><rss version=\"2.0\">", application_rss_xml, true),
+ SIG("\t\n\r <? pi ?><feed>", application_atom_xml, true),
+ SIG("<rdf:RDF xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\" xmlns=\"http://purl.org/rss/1.0\">", application_rss_xml, true),
+ SIG("<rdf:RDF xmlns=\"http://purl.org/rss/1.0\">", text_html, true),
+ SIG("<rdf:RDF xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\">", text_html, true),
+};
+#undef SIG
+
+
+START_TEST(mimesniff_text_html_header_sniff_test)
+{
+ nserror err;
+ const struct test_mimetype *tst = &text_html_header_tests[_i];
+ lwc_string *effective_type;
+ bool match;
err = mimesniff_compute_effective_type("text/html",
- "text",
- 4,
+ tst->data,
+ tst->len,
true,
false,
&effective_type);
ck_assert_int_eq(err, NSERROR_OK);
ck_assert(lwc_string_caseless_isequal(effective_type,
- corestring_lwc_text_html,
+ *(tst->mime_type),
&match) == lwc_error_ok && match);
lwc_string_unref(effective_type);
+
}
END_TEST
+
START_TEST(mimesniff_text_fancy_header_sniff_test)
{
nserror err;
@@ -790,7 +815,12 @@ static TCase *mimesniff_header_case_create(void)
tcase_add_test(tc, mimesniff_plusxml_header_sniff_test);
tcase_add_test(tc, mimesniff_xml_header_sniff_test);
tcase_add_test(tc, mimesniff_supported_image_header_sniff_test);
+
tcase_add_test(tc, mimesniff_html_header_sniff_test);
+ tcase_add_loop_test(tc,
+ mimesniff_text_html_header_sniff_test,
+ 0, NELEMS(text_html_header_tests));
+
tcase_add_test(tc, mimesniff_text_fancy_header_sniff_test);
return tc;