shortcode/tests.c

223 lines
7.5 KiB
C
Raw Normal View History

2023-07-10 15:51:21 +00:00
#include <cgreen/cgreen.h>
2023-07-12 19:22:54 +00:00
#include <bglibs/str.h>
2023-07-10 15:51:21 +00:00
#include "shortcodes.h"
Describe(parse);
BeforeEach(parse) {}
AfterEach(parse) {}
sc_result result;
2023-07-12 19:22:54 +00:00
str s;
2023-07-13 01:22:22 +00:00
void chunk_s(char *buffer, chunk c)
{
2023-07-12 19:22:54 +00:00
str_copyb(&s, buffer + c.start, c.len);
}
Ensure(parse, empty_string)
{
2023-07-12 19:09:17 +00:00
char *input = "";
2023-07-12 19:22:54 +00:00
result = parse(input);
// This means no shortcodes in it
assert_that(result.sc[0].name.len, is_equal_to(0));
2023-07-10 15:51:21 +00:00
}
2023-07-12 19:22:54 +00:00
Ensure(parse, simple_shortcode)
{
2023-07-12 20:10:55 +00:00
char *input = "foobar {{% shortcode %}}blah";
2023-07-12 19:22:54 +00:00
result = parse(input);
2023-07-12 19:49:46 +00:00
// Only 1 shortcode
assert_that(result.sc[1].name.len, is_equal_to(0));
2023-07-12 19:49:46 +00:00
// It's a simple one called shortcode, no args
chunk_s(input, result.sc[0].name);
2023-07-12 19:49:46 +00:00
assert_that(s.s, is_equal_to_string("shortcode"));
assert_that(result.sc[0].matching, is_equal_to(0));
assert_that(result.sc[0].argcount, is_equal_to(0));
2023-07-12 20:17:48 +00:00
// The whole shortcode is the whole thing
chunk_s(input, result.sc[0].whole);
2023-07-12 20:10:55 +00:00
assert_that(s.s, is_equal_to_string("{{% shortcode %}}"));
2023-07-12 19:49:46 +00:00
}
2023-07-12 22:40:25 +00:00
Ensure(parse, mismatched_brackets)
{
char *input = "foobar {{% shortcode >}}blah";
result = parse(input);
// No shortcodes
assert_that(result.sc[0].name.len, is_equal_to(0));
2023-07-12 22:40:25 +00:00
}
2023-07-12 23:33:37 +00:00
Ensure(parse, mismatched_brackets_inside_data_are_ok)
{
char *input = "foobar {{% sc %}} >}}blah {{% /sc %}} ";
result = parse(input);
// 1 shortcode
assert_that(result.sc[1].name.len, is_equal_to(0));
chunk_s(input, result.sc[0].whole);
2023-07-12 23:33:37 +00:00
assert_that(s.s, is_equal_to_string("{{% sc %}} >}}blah {{% /sc %}}"));
chunk_s(input, result.sc[0].data);
2023-07-12 23:33:37 +00:00
assert_that(s.s, is_equal_to_string(" >}}blah "));
}
Ensure(parse, mismatched_brackets_in_qval_are_ok)
{
char *input = "foobar {{% sc \">}}blah\" %}} {{% /sc %}}";
result = parse(input);
// 1 shortcode
assert_that(result.sc[1].name.len, is_equal_to(0));
chunk_s(input, result.sc[0].whole);
2023-07-12 23:33:37 +00:00
assert_that(s.s, is_equal_to_string("{{% sc \">}}blah\" %}} {{% /sc %}}"));
chunk_s(input, result.sc[0].argvals[0]);
2023-07-12 23:33:37 +00:00
assert_that(s.s, is_equal_to_string(">}}blah"));
}
2023-07-12 20:37:03 +00:00
Ensure(parse, inner_spaces_optional)
{
char *input = "foobar {{% shortcode%}}blah";
result = parse(input);
// Only 1 shortcode
assert_that(result.sc[1].name.len, is_equal_to(0));
2023-07-12 20:37:03 +00:00
// It's a simple one called shortcode, no args
chunk_s(input, result.sc[0].name);
2023-07-12 20:37:03 +00:00
assert_that(s.s, is_equal_to_string("shortcode"));
assert_that(result.sc[0].matching, is_equal_to(0));
assert_that(result.sc[0].argcount, is_equal_to(0));
2023-07-12 20:37:03 +00:00
// The whole shortcode is the whole thing
chunk_s(input, result.sc[0].whole);
2023-07-12 20:37:03 +00:00
assert_that(s.s, is_equal_to_string("{{% shortcode%}}"));
}
2023-07-12 21:03:05 +00:00
Ensure(parse, name_can_be_path)
{
char *input = "foobar {{% shortcode/foo/bar %}}blah";
result = parse(input);
// Only 1 shortcode
assert_that(result.sc[1].name.len, is_equal_to(0));
2023-07-12 21:03:05 +00:00
// It's a simple one called shortcode, no args
chunk_s(input, result.sc[0].name);
2023-07-12 21:03:05 +00:00
assert_that(s.s, is_equal_to_string("shortcode/foo/bar"));
assert_that(result.sc[0].matching, is_equal_to(0));
assert_that(result.sc[0].argcount, is_equal_to(0));
2023-07-12 21:03:05 +00:00
}
2023-07-12 20:37:03 +00:00
Ensure(parse, multiple_shortcodes)
{
char *input = "foobar {{% shortcode %}}blah {{<sc2 >}}blahblah";
result = parse(input);
// 2 shortcodes
assert_that(result.sc[2].name.len, is_equal_to(0));
2023-07-12 20:37:03 +00:00
// It's a simple one called shortcode, no args
chunk_s(input, result.sc[0].name);
2023-07-12 20:37:03 +00:00
assert_that(s.s, is_equal_to_string("shortcode"));
assert_that(result.sc[0].matching, is_equal_to(0));
assert_that(result.sc[0].argcount, is_equal_to(0));
2023-07-12 20:37:03 +00:00
// The whole shortcode is the whole thing
chunk_s(input, result.sc[0].whole);
2023-07-12 20:37:03 +00:00
assert_that(s.s, is_equal_to_string("{{% shortcode %}}"));
// It's a simple one called sc2, no args
chunk_s(input, result.sc[1].name);
2023-07-12 20:37:03 +00:00
assert_that(s.s, is_equal_to_string("sc2"));
assert_that(result.sc[1].matching, is_equal_to(0));
assert_that(result.sc[1].argcount, is_equal_to(0));
2023-07-12 20:37:03 +00:00
// The whole shortcode is the whole thing
chunk_s(input, result.sc[1].whole);
2023-07-12 20:37:03 +00:00
assert_that(s.s, is_equal_to_string("{{<sc2 >}}"));
}
2023-07-12 19:49:46 +00:00
Ensure(parse, matching_shortcode)
{
2023-07-12 20:17:48 +00:00
char *input = "blah {{% shortcode %}}foo bar{{% /shortcode %}} blah";
2023-07-12 19:49:46 +00:00
result = parse(input);
// Only 1 shortcode
assert_that(result.sc[1].name.len, is_equal_to(0));
2023-07-12 19:49:46 +00:00
// It's a matching one called shortcode, no args
chunk_s(input, result.sc[0].name);
2023-07-12 19:22:54 +00:00
assert_that(s.s, is_equal_to_string("shortcode"));
assert_that(result.sc[0].matching, is_equal_to(1));
assert_that(result.sc[0].argcount, is_equal_to(0));
2023-07-12 20:17:48 +00:00
// data is the stuff between the shortcode tags
chunk_s(input, result.sc[0].data);
2023-07-12 20:17:48 +00:00
assert_that(s.s, is_equal_to_string("foo bar"));
// The whole shortcode is the whole thing
chunk_s(input, result.sc[0].whole);
2023-07-12 20:17:48 +00:00
assert_that(s.s, is_equal_to_string("{{% shortcode %}}foo bar{{% /shortcode %}}"));
2023-07-12 19:22:54 +00:00
}
2023-07-10 15:51:21 +00:00
2023-07-12 21:01:46 +00:00
Ensure(parse, shortcode_args)
{
char *input = "foobar {{% shortcode foo \"bar\" 42 bat=v1 baz=\"v2\" %}}blah";
result = parse(input);
// Only 1 shortcode
assert_that(result.sc[1].name.len, is_equal_to(0));
2023-07-12 21:01:46 +00:00
// The whole shortcode is the whole thing
chunk_s(input, result.sc[0].whole);
2023-07-12 21:01:46 +00:00
assert_that(s.s, is_equal_to_string("{{% shortcode foo \"bar\" 42 bat=v1 baz=\"v2\" %}}"));
// Name is shortcode
chunk_s(input, result.sc[0].name);
2023-07-12 21:01:46 +00:00
assert_that(s.s, is_equal_to_string("shortcode"));
assert_that(result.sc[0].matching, is_equal_to(0));
2023-07-12 21:01:46 +00:00
// Has 5 args
assert_that(result.sc[0].argcount, is_equal_to(5));
2023-07-12 21:01:46 +00:00
// Arg1 is foo, no name
assert_that(result.sc[0].argnames[0].len, is_equal_to(0));
chunk_s(input, result.sc[0].argvals[0]);
2023-07-12 21:01:46 +00:00
assert_that(s.s, is_equal_to_string("foo"));
// Arg2 is bar, no name
assert_that(result.sc[0].argnames[1].len, is_equal_to(0));
chunk_s(input, result.sc[0].argvals[1]);
2023-07-12 21:01:46 +00:00
assert_that(s.s, is_equal_to_string("bar"));
// Arg3 is 42, no name
assert_that(result.sc[0].argnames[2].len, is_equal_to(0));
chunk_s(input, result.sc[0].argvals[2]);
2023-07-12 21:01:46 +00:00
assert_that(s.s, is_equal_to_string("42"));
// Arg4 is bat=v1
chunk_s(input, result.sc[0].argnames[3]);
2023-07-12 21:01:46 +00:00
assert_that(s.s, is_equal_to_string("bat"));
chunk_s(input, result.sc[0].argvals[3]);
2023-07-12 21:01:46 +00:00
assert_that(s.s, is_equal_to_string("v1"));
// Arg5 is baz=v2
chunk_s(input, result.sc[0].argnames[4]);
2023-07-12 21:01:46 +00:00
assert_that(s.s, is_equal_to_string("baz"));
chunk_s(input, result.sc[0].argvals[4]);
2023-07-12 21:01:46 +00:00
assert_that(s.s, is_equal_to_string("v2"));
}
2023-07-13 01:22:22 +00:00
// BUG?
// Ensure(parse, escaped_shortcode)
// {
// char *input = "foobar \\{{% shortcode %}}";
// result = parse(input);
// // No shortcodes
// assert_that(result.sc[0].name.len, is_equal_to(0));
// }
2023-07-12 23:33:37 +00:00
2023-07-13 01:22:22 +00:00
#ifdef MAIN
2023-07-12 19:22:54 +00:00
int main(int argc, char **argv)
{
str_init(&s);
2023-07-10 15:51:21 +00:00
TestSuite *suite = create_test_suite();
2023-07-12 19:09:17 +00:00
add_test_with_context(suite, parse, empty_string);
2023-07-12 19:22:54 +00:00
add_test_with_context(suite, parse, simple_shortcode);
2023-07-12 23:33:37 +00:00
add_test_with_context(suite, parse, mismatched_brackets);
add_test_with_context(suite, parse, mismatched_brackets_inside_data_are_ok);
add_test_with_context(suite, parse, mismatched_brackets_in_qval_are_ok);
2023-07-12 21:03:05 +00:00
add_test_with_context(suite, parse, name_can_be_path);
2023-07-12 20:37:03 +00:00
add_test_with_context(suite, parse, inner_spaces_optional);
add_test_with_context(suite, parse, multiple_shortcodes);
2023-07-12 19:49:46 +00:00
add_test_with_context(suite, parse, matching_shortcode);
2023-07-12 21:01:46 +00:00
add_test_with_context(suite, parse, shortcode_args);
2023-07-12 23:33:37 +00:00
// Bugs
// add_test_with_context(suite, parse, escaped_shortcode);
2023-07-10 15:51:21 +00:00
return run_test_suite(suite, create_text_reporter());
}
2023-07-13 01:22:22 +00:00
#endif