diff options
author | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2016-02-13 01:02:12 +0100 |
---|---|---|
committer | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2016-02-13 01:02:12 +0100 |
commit | f63fb03b25b33d5c2ef5ef0eaad016b4ee4aee65 (patch) | |
tree | dce906c3cce2e564e2f2b218478bfc7dd5047c99 /tests/check_content_parser.c | |
parent | 542a6d37c5b7675f1c80dcc47a5413ffa76a425b (diff) | |
download | blogc-f63fb03b25b33d5c2ef5ef0eaad016b4ee4aee65.tar.gz blogc-f63fb03b25b33d5c2ef5ef0eaad016b4ee4aee65.tar.bz2 blogc-f63fb03b25b33d5c2ef5ef0eaad016b4ee4aee65.zip |
content-parser: fixed bug that parsed text with '!' + link as image
Diffstat (limited to 'tests/check_content_parser.c')
-rw-r--r-- | tests/check_content_parser.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/check_content_parser.c b/tests/check_content_parser.c index 970ec5c..e8e412a 100644 --- a/tests/check_content_parser.c +++ b/tests/check_content_parser.c @@ -1360,6 +1360,10 @@ test_content_parse_inline(void **state) assert_non_null(html); assert_string_equal(html, "<em>bola</em>"); free(html); + html = blogc_content_parse_inline("bola!"); + assert_non_null(html); + assert_string_equal(html, "bola!"); + free(html); } @@ -1475,6 +1479,10 @@ test_content_parse_inline_link(void **state) assert_non_null(html); assert_string_equal(html, "<a href=\"http://example.org/\">bola</a>\n"); free(html); + html = blogc_content_parse_inline("[bola!](http://example.org/)\n"); + assert_non_null(html); + assert_string_equal(html, "<a href=\"http://example.org/\">bola!</a>\n"); + free(html); html = blogc_content_parse_inline("[bola]\n(http://example.org/)\n"); assert_non_null(html); assert_string_equal(html, "<a href=\"http://example.org/\">bola</a>\n"); @@ -1491,6 +1499,12 @@ test_content_parse_inline_link(void **state) assert_non_null(html); assert_string_equal(html, "<a href=\"http://example.org/\"><code>bola(2)[3]**!\\</code></a>\n"); free(html); + html = blogc_content_parse_inline("test suite!)\n" + "depends on [cmocka](http://cmocka.org/), though.\n"); + assert_non_null(html); + assert_string_equal(html, "test suite!)\n" + "depends on <a href=\"http://cmocka.org/\">cmocka</a>, though.\n"); + free(html); // "invalid" html = blogc_content_parse_inline("[bola](\nhttp://example.org/)\n"); assert_non_null(html); |