aboutsummaryrefslogtreecommitdiffstats
path: root/tests/check_source_parser.c
diff options
context:
space:
mode:
authorRafael G. Martins <rafael@rafaelmartins.eng.br>2016-04-20 02:50:20 +0200
committerRafael G. Martins <rafael@rafaelmartins.eng.br>2016-04-20 02:50:20 +0200
commit9b2a563b4931ca39cd6dd14bf85cda627714a4b2 (patch)
treeafcc5ead7219b0f9f38728eb58c88dfe641325dc /tests/check_source_parser.c
parentc216deff59e2c0dd9538ced99d6b579013b3b5de (diff)
downloadblogc-9b2a563b4931ca39cd6dd14bf85cda627714a4b2.tar.gz
blogc-9b2a563b4931ca39cd6dd14bf85cda627714a4b2.tar.bz2
blogc-9b2a563b4931ca39cd6dd14bf85cda627714a4b2.zip
content-parser: extract post description from content
description is the first line of the first paragraph parsed from content file. users can override it declaring DESCRIPTION variable in source file itself. this also fixes a bug with line endings when using single line blockquotes.
Diffstat (limited to 'tests/check_source_parser.c')
-rw-r--r--tests/check_source_parser.c46
1 files changed, 42 insertions, 4 deletions
diff --git a/tests/check_source_parser.c b/tests/check_source_parser.c
index fba997a..a2a3ddc 100644
--- a/tests/check_source_parser.c
+++ b/tests/check_source_parser.c
@@ -34,7 +34,7 @@ test_source_parse(void **state)
sb_trie_t *source = blogc_source_parse(a, strlen(a), &err);
assert_null(err);
assert_non_null(source);
- assert_int_equal(sb_trie_size(source), 5);
+ assert_int_equal(sb_trie_size(source), 6);
assert_string_equal(sb_trie_lookup(source, "VAR1"), "asd asd");
assert_string_equal(sb_trie_lookup(source, "VAR2"), "123chunda");
assert_string_equal(sb_trie_lookup(source, "EXCERPT"),
@@ -47,6 +47,7 @@ test_source_parse(void **state)
"# This is a test\n"
"\n"
"bola\n");
+ assert_string_equal(sb_trie_lookup(source, "DESCRIPTION"), "bola");
sb_trie_free(source);
}
@@ -65,7 +66,7 @@ test_source_parse_crlf(void **state)
sb_trie_t *source = blogc_source_parse(a, strlen(a), &err);
assert_null(err);
assert_non_null(source);
- assert_int_equal(sb_trie_size(source), 5);
+ assert_int_equal(sb_trie_size(source), 6);
assert_string_equal(sb_trie_lookup(source, "VAR1"), "asd asd");
assert_string_equal(sb_trie_lookup(source, "VAR2"), "123chunda");
assert_string_equal(sb_trie_lookup(source, "EXCERPT"),
@@ -78,6 +79,7 @@ test_source_parse_crlf(void **state)
"# This is a test\r\n"
"\r\n"
"bola\r\n");
+ assert_string_equal(sb_trie_lookup(source, "DESCRIPTION"), "bola");
sb_trie_free(source);
}
@@ -98,7 +100,7 @@ test_source_parse_with_spaces(void **state)
sb_trie_t *source = blogc_source_parse(a, strlen(a), &err);
assert_null(err);
assert_non_null(source);
- assert_int_equal(sb_trie_size(source), 5);
+ assert_int_equal(sb_trie_size(source), 6);
assert_string_equal(sb_trie_lookup(source, "VAR1"), "chunda");
assert_string_equal(sb_trie_lookup(source, "BOLA"), "guda");
assert_string_equal(sb_trie_lookup(source, "EXCERPT"),
@@ -111,6 +113,7 @@ test_source_parse_with_spaces(void **state)
"# This is a test\n"
"\n"
"bola\n");
+ assert_string_equal(sb_trie_lookup(source, "DESCRIPTION"), "bola");
sb_trie_free(source);
}
@@ -134,7 +137,7 @@ test_source_parse_with_excerpt(void **state)
sb_trie_t *source = blogc_source_parse(a, strlen(a), &err);
assert_null(err);
assert_non_null(source);
- assert_int_equal(sb_trie_size(source), 5);
+ assert_int_equal(sb_trie_size(source), 6);
assert_string_equal(sb_trie_lookup(source, "VAR1"), "asd asd");
assert_string_equal(sb_trie_lookup(source, "VAR2"), "123chunda");
assert_string_equal(sb_trie_lookup(source, "EXCERPT"),
@@ -154,6 +157,40 @@ test_source_parse_with_excerpt(void **state)
"\n"
"guda\n"
"yay");
+ assert_string_equal(sb_trie_lookup(source, "DESCRIPTION"), "bola");
+ sb_trie_free(source);
+}
+
+
+static void
+test_source_parse_with_description(void **state)
+{
+ const char *a =
+ "VAR1: asd asd\n"
+ "VAR2: 123chunda\n"
+ "DESCRIPTION: huehuehuebrbr\n"
+ "----------\n"
+ "# This is a test\n"
+ "\n"
+ "bola\n";
+ sb_error_t *err = NULL;
+ sb_trie_t *source = blogc_source_parse(a, strlen(a), &err);
+ assert_null(err);
+ assert_non_null(source);
+ assert_int_equal(sb_trie_size(source), 6);
+ assert_string_equal(sb_trie_lookup(source, "VAR1"), "asd asd");
+ assert_string_equal(sb_trie_lookup(source, "VAR2"), "123chunda");
+ assert_string_equal(sb_trie_lookup(source, "EXCERPT"),
+ "<h1 id=\"this-is-a-test\">This is a test</h1>\n"
+ "<p>bola</p>\n");
+ assert_string_equal(sb_trie_lookup(source, "CONTENT"),
+ "<h1 id=\"this-is-a-test\">This is a test</h1>\n"
+ "<p>bola</p>\n");
+ assert_string_equal(sb_trie_lookup(source, "RAW_CONTENT"),
+ "# This is a test\n"
+ "\n"
+ "bola\n");
+ assert_string_equal(sb_trie_lookup(source, "DESCRIPTION"), "huehuehuebrbr");
sb_trie_free(source);
}
@@ -484,6 +521,7 @@ main(void)
unit_test(test_source_parse_crlf),
unit_test(test_source_parse_with_spaces),
unit_test(test_source_parse_with_excerpt),
+ unit_test(test_source_parse_with_description),
unit_test(test_source_parse_config_empty),
unit_test(test_source_parse_config_invalid_key),
unit_test(test_source_parse_config_no_key),