aboutsummaryrefslogtreecommitdiffstats
path: root/tests/check_template_parser.c
diff options
context:
space:
mode:
authorRafael G. Martins <rafael@rafaelmartins.eng.br>2015-05-17 16:18:58 -0300
committerRafael G. Martins <rafael@rafaelmartins.eng.br>2015-05-17 16:18:58 -0300
commitd7f5252a0d7c4c428bfbd560ce78b81073d3d6ec (patch)
tree8cf069f1e7ff1832b01b68c2c4b99cf5e6b00295 /tests/check_template_parser.c
parent365a0c8f2b46b2afa0c43d6a286fa07b86bd1520 (diff)
downloadblogc-d7f5252a0d7c4c428bfbd560ce78b81073d3d6ec.tar.gz
blogc-d7f5252a0d7c4c428bfbd560ce78b81073d3d6ec.tar.bz2
blogc-d7f5252a0d7c4c428bfbd560ce78b81073d3d6ec.zip
template-parser: minor fixes. tests
Diffstat (limited to 'tests/check_template_parser.c')
-rw-r--r--tests/check_template_parser.c38
1 files changed, 36 insertions, 2 deletions
diff --git a/tests/check_template_parser.c b/tests/check_template_parser.c
index 06161a7..8ce6e6d 100644
--- a/tests/check_template_parser.c
+++ b/tests/check_template_parser.c
@@ -61,7 +61,7 @@ test_template_parse(void **state)
"{% endblock %}\n"
"{% block listing %}{{ BOLA }}{% endblock %}\n"
"{% block listing_once %}asd{% endblock %}\n"
- "{% if BOLA == \"10\" %}aee{% endif %}";
+ "{% if BOLA == \"1\\\"0\" %}aee{% endif %}";
blogc_error_t *err = NULL;
b_slist_t *stmts = blogc_template_parse(a, strlen(a), &err);
assert_null(err);
@@ -106,7 +106,7 @@ test_template_parse(void **state)
blogc_assert_template_stmt(tmp->next->next->next->next->next->next->next->next->next,
"\n", BLOGC_TEMPLATE_CONTENT_STMT);
tmp = tmp->next->next->next->next->next->next->next->next->next->next;
- blogc_assert_template_if_stmt(tmp, "BOLA", "==", "10");
+ blogc_assert_template_if_stmt(tmp, "BOLA", "==", "1\\\"0");
blogc_assert_template_stmt(tmp->next, "aee", BLOGC_TEMPLATE_CONTENT_STMT);
blogc_assert_template_stmt(tmp->next->next, NULL,
BLOGC_TEMPLATE_ENDIF_STMT);
@@ -441,6 +441,38 @@ test_template_parse_invalid_if_operator(void **state)
static void
+test_template_parse_invalid_if_operand(void **state)
+{
+ const char *a = "{% block entry %}{% if BOLA == asd %}\n";
+ blogc_error_t *err = NULL;
+ b_slist_t *stmts = blogc_template_parse(a, strlen(a), &err);
+ assert_non_null(err);
+ assert_null(stmts);
+ assert_int_equal(err->type, BLOGC_ERROR_TEMPLATE_PARSER);
+ assert_string_equal(err->msg,
+ "Invalid 'if' operand. Must be double-quoted static string.\n"
+ "Error occurred near to 'asd %}'");
+ blogc_error_free(err);
+}
+
+
+static void
+test_template_parse_invalid_if_operand2(void **state)
+{
+ const char *a = "{% block entry %}{% if BOLA == \"asd %}\n";
+ blogc_error_t *err = NULL;
+ b_slist_t *stmts = blogc_template_parse(a, strlen(a), &err);
+ assert_non_null(err);
+ assert_null(stmts);
+ assert_int_equal(err->type, BLOGC_ERROR_TEMPLATE_PARSER);
+ assert_string_equal(err->msg,
+ "Found an open double-quoted string.\n"
+ "Error occurred near to '\"asd %}'");
+ blogc_error_free(err);
+}
+
+
+static void
test_template_parse_invalid_block_end(void **state)
{
const char *a = "{% block entry }}\n";
@@ -582,6 +614,8 @@ main(void)
unit_test(test_template_parse_invalid_ifdef_start),
unit_test(test_template_parse_invalid_ifdef_variable),
unit_test(test_template_parse_invalid_if_operator),
+ unit_test(test_template_parse_invalid_if_operand),
+ unit_test(test_template_parse_invalid_if_operand2),
unit_test(test_template_parse_invalid_block_end),
unit_test(test_template_parse_invalid_variable_name),
unit_test(test_template_parse_invalid_variable_name2),