aboutsummaryrefslogtreecommitdiffstats
path: root/tests/check_source_parser.c
diff options
context:
space:
mode:
authorRafael G. Martins <rafael@rafaelmartins.eng.br>2016-09-03 19:57:54 +0200
committerRafael G. Martins <rafael@rafaelmartins.eng.br>2016-09-03 20:28:55 +0200
commit74ca21a41bcb5a49d19e65c9ba88f1f864cb7095 (patch)
tree4774587e47abc0ff20453abbf714b63c36697f26 /tests/check_source_parser.c
parent30ae5fd4f65f48009e6956e42ccc2c9d9ad80901 (diff)
downloadblogc-74ca21a41bcb5a49d19e65c9ba88f1f864cb7095.tar.gz
blogc-74ca21a41bcb5a49d19e65c9ba88f1f864cb7095.tar.bz2
blogc-74ca21a41bcb5a49d19e65c9ba88f1f864cb7095.zip
*: big code reorganization.
- source and tests are now splitted by target - utils lib is now called common still pending move error.c from blogc to common
Diffstat (limited to 'tests/check_source_parser.c')
-rw-r--r--tests/check_source_parser.c542
1 files changed, 0 insertions, 542 deletions
diff --git a/tests/check_source_parser.c b/tests/check_source_parser.c
deleted file mode 100644
index bbd9ec6..0000000
--- a/tests/check_source_parser.c
+++ /dev/null
@@ -1,542 +0,0 @@
-/*
- * blogc: A blog compiler.
- * Copyright (C) 2015-2016 Rafael G. Martins <rafael@rafaelmartins.eng.br>
- *
- * This program can be distributed under the terms of the BSD License.
- * See the file LICENSE.
- */
-
-#include <stdarg.h>
-#include <stddef.h>
-#include <setjmp.h>
-#include <cmocka.h>
-#include <string.h>
-#include "../src/source-parser.h"
-#include "../src/error.h"
-#include "../src/utils.h"
-
-
-static void
-test_source_parse(void **state)
-{
- const char *a =
- "VAR1: asd asd\n"
- "VAR2: 123chunda\n"
- "----------\n"
- "# This is a test\n"
- "\n"
- "bola\n";
- blogc_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"), "bola");
- sb_trie_free(source);
-}
-
-
-static void
-test_source_parse_crlf(void **state)
-{
- const char *a =
- "VAR1: asd asd\r\n"
- "VAR2: 123chunda\r\n"
- "----------\r\n"
- "# This is a test\r\n"
- "\r\n"
- "bola\r\n";
- blogc_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>\r\n"
- "<p>bola</p>\r\n");
- assert_string_equal(sb_trie_lookup(source, "CONTENT"),
- "<h1 id=\"this-is-a-test\">This is a test</h1>\r\n"
- "<p>bola</p>\r\n");
- assert_string_equal(sb_trie_lookup(source, "RAW_CONTENT"),
- "# This is a test\r\n"
- "\r\n"
- "bola\r\n");
- assert_string_equal(sb_trie_lookup(source, "DESCRIPTION"), "bola");
- sb_trie_free(source);
-}
-
-
-static void
-test_source_parse_with_spaces(void **state)
-{
- const char *a =
- "\n \n"
- "VAR1: chunda \t \n"
- "\n\n"
- "BOLA: guda\n"
- "----------\n"
- "# This is a test\n"
- "\n"
- "bola\n";
- blogc_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"), "chunda");
- assert_string_equal(sb_trie_lookup(source, "BOLA"), "guda");
- 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"), "bola");
- sb_trie_free(source);
-}
-
-
-static void
-test_source_parse_with_excerpt(void **state)
-{
- const char *a =
- "VAR1: asd asd\n"
- "VAR2: 123chunda\n"
- "----------\n"
- "# This is a test\n"
- "\n"
- "bola\n"
- "\n"
- "...\n"
- "\n"
- "guda\n"
- "yay";
- blogc_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"
- "<p>guda\n"
- "yay</p>\n");
- assert_string_equal(sb_trie_lookup(source, "RAW_CONTENT"),
- "# This is a test\n"
- "\n"
- "bola\n"
- "\n"
- "...\n"
- "\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";
- blogc_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);
-}
-
-
-static void
-test_source_parse_config_empty(void **state)
-{
- const char *a = "";
- blogc_error_t *err = NULL;
- sb_trie_t *source = blogc_source_parse(a, strlen(a), &err);
- assert_null(source);
- assert_non_null(err);
- assert_int_equal(err->type, BLOGC_ERROR_SOURCE_PARSER);
- assert_string_equal(err->msg, "Your source file is empty.");
- blogc_error_free(err);
- sb_trie_free(source);
-}
-
-
-static void
-test_source_parse_config_invalid_key(void **state)
-{
- const char *a = "bola: guda";
- blogc_error_t *err = NULL;
- sb_trie_t *source = blogc_source_parse(a, strlen(a), &err);
- assert_non_null(err);
- assert_int_equal(err->type, BLOGC_ERROR_SOURCE_PARSER);
- assert_string_equal(err->msg,
- "Can't find a configuration key or the content separator.\n"
- "Error occurred near line 1, position 1: bola: guda");
- blogc_error_free(err);
- sb_trie_free(source);
-}
-
-
-static void
-test_source_parse_config_no_key(void **state)
-{
- const char *a = "BOLa";
- blogc_error_t *err = NULL;
- sb_trie_t *source = blogc_source_parse(a, strlen(a), &err);
- assert_non_null(err);
- assert_int_equal(err->type, BLOGC_ERROR_SOURCE_PARSER);
- assert_string_equal(err->msg,
- "Invalid configuration key.\n"
- "Error occurred near line 1, position 4: BOLa");
- blogc_error_free(err);
- sb_trie_free(source);
-}
-
-
-static void
-test_source_parse_config_no_key2(void **state)
-{
- const char *a = "BOLA";
- blogc_error_t *err = NULL;
- sb_trie_t *source = blogc_source_parse(a, strlen(a), &err);
- assert_non_null(err);
- assert_int_equal(err->type, BLOGC_ERROR_SOURCE_PARSER);
- assert_string_equal(err->msg,
- "Your last configuration key is missing ':' and the value\n"
- "Error occurred near line 1, position 5: BOLA");
- blogc_error_free(err);
- sb_trie_free(source);
-}
-
-
-static void
-test_source_parse_config_no_value(void **state)
-{
- const char *a = "BOLA:\r\n";
- blogc_error_t *err = NULL;
- sb_trie_t *source = blogc_source_parse(a, strlen(a), &err);
- assert_null(source);
- assert_non_null(err);
- assert_int_equal(err->type, BLOGC_ERROR_SOURCE_PARSER);
- assert_string_equal(err->msg,
- "Configuration value not provided for 'BOLA'.\n"
- "Error occurred near line 1, position 6: BOLA:");
- blogc_error_free(err);
- sb_trie_free(source);
-}
-
-
-static void
-test_source_parse_config_no_value2(void **state)
-{
- const char *a = "BOLA:";
- blogc_error_t *err = NULL;
- sb_trie_t *source = blogc_source_parse(a, strlen(a), &err);
- assert_null(source);
- assert_non_null(err);
- assert_int_equal(err->type, BLOGC_ERROR_SOURCE_PARSER);
- assert_string_equal(err->msg,
- "Configuration value not provided for 'BOLA'.\n"
- "Error occurred near line 1, position 6: BOLA:");
- blogc_error_free(err);
- sb_trie_free(source);
-}
-
-
-static void
-test_source_parse_config_reserved_name(void **state)
-{
- const char *a = "FILENAME: asd\r\n";
- blogc_error_t *err = NULL;
- sb_trie_t *source = blogc_source_parse(a, strlen(a), &err);
- assert_null(source);
- assert_non_null(err);
- assert_int_equal(err->type, BLOGC_ERROR_SOURCE_PARSER);
- assert_string_equal(err->msg,
- "'FILENAME' variable is forbidden in source files. It will be set "
- "for you by the compiler.");
- blogc_error_free(err);
- sb_trie_free(source);
-}
-
-
-static void
-test_source_parse_config_reserved_name2(void **state)
-{
- const char *a = "CONTENT: asd\r\n";
- blogc_error_t *err = NULL;
- sb_trie_t *source = blogc_source_parse(a, strlen(a), &err);
- assert_null(source);
- assert_non_null(err);
- assert_int_equal(err->type, BLOGC_ERROR_SOURCE_PARSER);
- assert_string_equal(err->msg,
- "'CONTENT' variable is forbidden in source files. It will be set "
- "for you by the compiler.");
- blogc_error_free(err);
- sb_trie_free(source);
-}
-
-
-static void
-test_source_parse_config_reserved_name3(void **state)
-{
- const char *a = "DATE_FORMATTED: asd\r\n";
- blogc_error_t *err = NULL;
- sb_trie_t *source = blogc_source_parse(a, strlen(a), &err);
- assert_null(source);
- assert_non_null(err);
- assert_int_equal(err->type, BLOGC_ERROR_SOURCE_PARSER);
- assert_string_equal(err->msg,
- "'DATE_FORMATTED' variable is forbidden in source files. It will be set "
- "for you by the compiler.");
- blogc_error_free(err);
- sb_trie_free(source);
-}
-
-
-static void
-test_source_parse_config_reserved_name4(void **state)
-{
- const char *a = "DATE_FIRST_FORMATTED: asd\r\n";
- blogc_error_t *err = NULL;
- sb_trie_t *source = blogc_source_parse(a, strlen(a), &err);
- assert_null(source);
- assert_non_null(err);
- assert_int_equal(err->type, BLOGC_ERROR_SOURCE_PARSER);
- assert_string_equal(err->msg,
- "'DATE_FIRST_FORMATTED' variable is forbidden in source files. It will be set "
- "for you by the compiler.");
- blogc_error_free(err);
- sb_trie_free(source);
-}
-
-
-static void
-test_source_parse_config_reserved_name5(void **state)
-{
- const char *a = "DATE_LAST_FORMATTED: asd\r\n";
- blogc_error_t *err = NULL;
- sb_trie_t *source = blogc_source_parse(a, strlen(a), &err);
- assert_null(source);
- assert_non_null(err);
- assert_int_equal(err->type, BLOGC_ERROR_SOURCE_PARSER);
- assert_string_equal(err->msg,
- "'DATE_LAST_FORMATTED' variable is forbidden in source files. It will be set "
- "for you by the compiler.");
- blogc_error_free(err);
- sb_trie_free(source);
-}
-
-
-static void
-test_source_parse_config_reserved_name6(void **state)
-{
- const char *a = "PAGE_FIRST: asd\r\n";
- blogc_error_t *err = NULL;
- sb_trie_t *source = blogc_source_parse(a, strlen(a), &err);
- assert_null(source);
- assert_non_null(err);
- assert_int_equal(err->type, BLOGC_ERROR_SOURCE_PARSER);
- assert_string_equal(err->msg,
- "'PAGE_FIRST' variable is forbidden in source files. It will be set "
- "for you by the compiler.");
- blogc_error_free(err);
- sb_trie_free(source);
-}
-
-
-static void
-test_source_parse_config_reserved_name7(void **state)
-{
- const char *a = "PAGE_PREVIOUS: asd\r\n";
- blogc_error_t *err = NULL;
- sb_trie_t *source = blogc_source_parse(a, strlen(a), &err);
- assert_null(source);
- assert_non_null(err);
- assert_int_equal(err->type, BLOGC_ERROR_SOURCE_PARSER);
- assert_string_equal(err->msg,
- "'PAGE_PREVIOUS' variable is forbidden in source files. It will be set "
- "for you by the compiler.");
- blogc_error_free(err);
- sb_trie_free(source);
-}
-
-
-static void
-test_source_parse_config_reserved_name8(void **state)
-{
- const char *a = "PAGE_CURRENT: asd\r\n";
- blogc_error_t *err = NULL;
- sb_trie_t *source = blogc_source_parse(a, strlen(a), &err);
- assert_null(source);
- assert_non_null(err);
- assert_int_equal(err->type, BLOGC_ERROR_SOURCE_PARSER);
- assert_string_equal(err->msg,
- "'PAGE_CURRENT' variable is forbidden in source files. It will be set "
- "for you by the compiler.");
- blogc_error_free(err);
- sb_trie_free(source);
-}
-
-
-static void
-test_source_parse_config_reserved_name9(void **state)
-{
- const char *a = "PAGE_NEXT: asd\r\n";
- blogc_error_t *err = NULL;
- sb_trie_t *source = blogc_source_parse(a, strlen(a), &err);
- assert_null(source);
- assert_non_null(err);
- assert_int_equal(err->type, BLOGC_ERROR_SOURCE_PARSER);
- assert_string_equal(err->msg,
- "'PAGE_NEXT' variable is forbidden in source files. It will be set "
- "for you by the compiler.");
- blogc_error_free(err);
- sb_trie_free(source);
-}
-
-
-static void
-test_source_parse_config_reserved_name10(void **state)
-{
- const char *a = "PAGE_LAST: asd\r\n";
- blogc_error_t *err = NULL;
- sb_trie_t *source = blogc_source_parse(a, strlen(a), &err);
- assert_null(source);
- assert_non_null(err);
- assert_int_equal(err->type, BLOGC_ERROR_SOURCE_PARSER);
- assert_string_equal(err->msg,
- "'PAGE_LAST' variable is forbidden in source files. It will be set "
- "for you by the compiler.");
- blogc_error_free(err);
- sb_trie_free(source);
-}
-
-
-static void
-test_source_parse_config_reserved_name11(void **state)
-{
- const char *a = "BLOGC_VERSION: 1.0\r\n";
- blogc_error_t *err = NULL;
- sb_trie_t *source = blogc_source_parse(a, strlen(a), &err);
- assert_null(source);
- assert_non_null(err);
- assert_int_equal(err->type, BLOGC_ERROR_SOURCE_PARSER);
- assert_string_equal(err->msg,
- "'BLOGC_VERSION' variable is forbidden in source files. It will be set "
- "for you by the compiler.");
- blogc_error_free(err);
- sb_trie_free(source);
-}
-
-
-static void
-test_source_parse_config_value_no_line_ending(void **state)
-{
- const char *a = "BOLA: asd";
- blogc_error_t *err = NULL;
- sb_trie_t *source = blogc_source_parse(a, strlen(a), &err);
- assert_null(source);
- assert_non_null(err);
- assert_int_equal(err->type, BLOGC_ERROR_SOURCE_PARSER);
- assert_string_equal(err->msg,
- "No line ending after the configuration value for 'BOLA'.\n"
- "Error occurred near line 1, position 10: BOLA: asd");
- blogc_error_free(err);
- sb_trie_free(source);
-}
-
-
-static void
-test_source_parse_invalid_separator(void **state)
-{
- const char *a = "BOLA: asd\n---#";
- blogc_error_t *err = NULL;
- sb_trie_t *source = blogc_source_parse(a, strlen(a), &err);
- assert_null(source);
- assert_non_null(err);
- assert_int_equal(err->type, BLOGC_ERROR_SOURCE_PARSER);
- assert_string_equal(err->msg,
- "Invalid content separator. Must be more than one '-' characters.\n"
- "Error occurred near line 2, position 4: ---#");
- blogc_error_free(err);
- sb_trie_free(source);
-}
-
-
-int
-main(void)
-{
- const UnitTest tests[] = {
- unit_test(test_source_parse),
- 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),
- unit_test(test_source_parse_config_no_key2),
- unit_test(test_source_parse_config_no_value),
- unit_test(test_source_parse_config_no_value2),
- unit_test(test_source_parse_config_reserved_name),
- unit_test(test_source_parse_config_reserved_name2),
- unit_test(test_source_parse_config_reserved_name3),
- unit_test(test_source_parse_config_reserved_name4),
- unit_test(test_source_parse_config_reserved_name5),
- unit_test(test_source_parse_config_reserved_name6),
- unit_test(test_source_parse_config_reserved_name7),
- unit_test(test_source_parse_config_reserved_name8),
- unit_test(test_source_parse_config_reserved_name9),
- unit_test(test_source_parse_config_reserved_name10),
- unit_test(test_source_parse_config_reserved_name11),
- unit_test(test_source_parse_config_value_no_line_ending),
- unit_test(test_source_parse_invalid_separator),
- };
- return run_tests(tests);
-}