More tests. They pass individually and fail as a whole because of leaked state, probably.
This commit is contained in:
parent
910b7ce861
commit
19dcb7e6a4
@ -26,180 +26,105 @@ describe "Shortcodes" do
|
|||||||
result.errors[0].code.should eq ERR_MISMATCHED_CLOSING_TAG
|
result.errors[0].code.should eq ERR_MISMATCHED_CLOSING_TAG
|
||||||
input[result.errors[0].position, 8].should eq "{{% /foo"
|
input[result.errors[0].position, 8].should eq "{{% /foo"
|
||||||
end
|
end
|
||||||
# Ensure(parse, mismatched_tags)
|
|
||||||
# {
|
|
||||||
# char *input = "foobar {{% shortcode %}}blah{{% /foo %}}";
|
|
||||||
# result = parse(input);
|
|
||||||
# // One shortcode, one error
|
|
||||||
# assert_that(result.sccount, is_equal_to(1));
|
|
||||||
# assert_that(result.errcount, is_equal_to(1));
|
|
||||||
# assert_that(result.errors[0].code, is_equal_to(ERR_MISMATCHED_CLOSING_TAG));
|
|
||||||
# str_copyb(&s, input + result.errors[0].position, 8);
|
|
||||||
# assert_that(s.s, is_equal_to_string("{{% /foo"));
|
|
||||||
# }
|
|
||||||
|
|
||||||
# Ensure(parse, mismatched_brackets)
|
it "should report mismatched brackets" do
|
||||||
# {
|
input = "foobar {{% shortcode >}}blah"
|
||||||
# char *input = "foobar {{% shortcode >}}blah";
|
result = parse(input)
|
||||||
# result = parse(input);
|
result.shortcodes.size.should eq 0
|
||||||
# // No shortcodes, 1 error
|
result.errors.size.should eq 1
|
||||||
# assert_that(result.sccount, is_equal_to(0));
|
result.errors[0].code.should eq ERR_MISMATCHED_BRACKET
|
||||||
# assert_that(result.errcount, is_equal_to(1));
|
input[result.errors[0].position, 3].should eq ">}}"
|
||||||
# assert_that(result.errors[0].code, is_equal_to(ERR_MISMATCHED_BRACKET));
|
end
|
||||||
# str_copyb(&s, input + result.errors[0].position, 3);
|
|
||||||
# assert_that(s.s, is_equal_to_string(">}}"));
|
|
||||||
# }
|
|
||||||
|
|
||||||
# Ensure(parse, mismatched_brackets_inside_data_are_ok)
|
it "should accept mismatched brackets inside data are ok" do
|
||||||
# {
|
input = "foobar {{% sc %}} >}}blah {{% /sc %}} "
|
||||||
# char *input = "foobar {{% sc %}} >}}blah {{% /sc %}} ";
|
result = parse(input)
|
||||||
# result = parse(input);
|
result.shortcodes.size.should eq 1
|
||||||
# // 1 shortcode
|
result.errors.size.should eq 0
|
||||||
# assert_that(result.sccount, is_equal_to(1));
|
result.shortcodes[0].whole.should eq "{{% sc %}} >}}blah {{% /sc %}}"
|
||||||
# chunk_s(input, result.sc[0].whole);
|
result.shortcodes[0].data.should eq " >}}blah "
|
||||||
# assert_that(s.s, is_equal_to_string("{{% sc %}} >}}blah {{% /sc %}}"));
|
end
|
||||||
# chunk_s(input, result.sc[0].data);
|
|
||||||
# assert_that(s.s, is_equal_to_string(" >}}blah "));
|
|
||||||
# assert_that(result.errcount, is_equal_to(0));
|
|
||||||
# }
|
|
||||||
|
|
||||||
# Ensure(parse, mismatched_brackets_in_qval_are_ok)
|
it "should accept mismatched brackets in qvals" do
|
||||||
# {
|
input = "foobar {{% sc \">}}blah\" %}} {{% /sc %}}"
|
||||||
# char *input = "foobar {{% sc \">}}blah\" %}} {{% /sc %}}";
|
result = parse(input)
|
||||||
# result = parse(input);
|
result.shortcodes.size.should eq 1
|
||||||
# // 1 shortcode
|
result.errors.size.should eq 0
|
||||||
# assert_that(result.sccount, is_equal_to(1));
|
result.shortcodes[0].whole.should eq "{{% sc \">}}blah\" %}} {{% /sc %}}"
|
||||||
# chunk_s(input, result.sc[0].whole);
|
result.shortcodes[0].args.size.should eq 1
|
||||||
# assert_that(s.s, is_equal_to_string("{{% sc \">}}blah\" %}} {{% /sc %}}"));
|
result.shortcodes[0].args[0].@value.should eq ">}}blah"
|
||||||
# chunk_s(input, result.sc[0].argvals[0]);
|
end
|
||||||
# assert_that(s.s, is_equal_to_string(">}}blah"));
|
|
||||||
# assert_that(result.errcount, is_equal_to(0));
|
|
||||||
# }
|
|
||||||
|
|
||||||
# Ensure(parse, inner_spaces_optional)
|
it "should consider spaces in shortcodes optional" do
|
||||||
# {
|
input = "foobar {{% shortcode%}}blah"
|
||||||
# char *input = "foobar {{% shortcode%}}blah";
|
result = parse(input)
|
||||||
# result = parse(input);
|
result.shortcodes.size.should eq 1
|
||||||
# // Only 1 shortcode
|
result.errors.size.should eq 0
|
||||||
# assert_that(result.sccount, is_equal_to(1));
|
result.shortcodes[0].name.should eq "shortcode"
|
||||||
|
result.shortcodes[0].matching.should eq 0
|
||||||
|
result.shortcodes[0].args.size.should eq 0
|
||||||
|
result.shortcodes[0].whole.should eq "{{% shortcode%}}"
|
||||||
|
end
|
||||||
|
|
||||||
# // It's a simple one called shortcode, no args
|
it "should allow path-like names" do
|
||||||
# chunk_s(input, result.sc[0].name);
|
input = "foobar {{% shortcode/foo/bar %}}blah"
|
||||||
# assert_that(s.s, is_equal_to_string("shortcode"));
|
result = parse(input)
|
||||||
# assert_that(result.sc[0].matching, is_equal_to(0));
|
result.shortcodes.size.should eq 1
|
||||||
# assert_that(result.sc[0].argcount, is_equal_to(0));
|
result.errors.size.should eq 0
|
||||||
# // The whole shortcode is the whole thing
|
result.shortcodes[0].name.should eq "shortcode/foo/bar"
|
||||||
# chunk_s(input, result.sc[0].whole);
|
result.shortcodes[0].matching.should eq 0
|
||||||
# assert_that(s.s, is_equal_to_string("{{% shortcode%}}"));
|
result.shortcodes[0].args.size.should eq 0
|
||||||
# assert_that(result.errcount, is_equal_to(0));
|
result.shortcodes[0].whole.should eq "{{% shortcode/foo/bar %}}"
|
||||||
# }
|
end
|
||||||
|
|
||||||
# Ensure(parse, name_can_be_path)
|
it "should parse multiple shortcodes" do
|
||||||
# {
|
input = "foobar {{% shortcode %}}blah {{<sc2 >}}blahblah"
|
||||||
# char *input = "foobar {{% shortcode/foo/bar %}}blah";
|
result = parse(input)
|
||||||
# result = parse(input);
|
result.shortcodes.size.should eq 2
|
||||||
# // Only 1 shortcode
|
result.errors.size.should eq 0
|
||||||
# assert_that(result.sccount, is_equal_to(1));
|
result.shortcodes[0].name.should eq "shortcode"
|
||||||
|
result.shortcodes[0].matching.should eq 0
|
||||||
|
result.shortcodes[0].args.size.should eq 0
|
||||||
|
result.shortcodes[0].whole.should eq "{{% shortcode %}}"
|
||||||
|
result.shortcodes[1].name.should eq "sc2"
|
||||||
|
result.shortcodes[1].matching.should eq 0
|
||||||
|
result.shortcodes[1].args.size.should eq 0
|
||||||
|
result.shortcodes[1].whole.should eq "{{<sc2 >}}"
|
||||||
|
end
|
||||||
|
|
||||||
# // It's a simple one called shortcode, no args
|
it "should parse matching shortcodes" do
|
||||||
# chunk_s(input, result.sc[0].name);
|
input = "foobar {{% shortcode %}}blah {{% /shortcode %}} blah"
|
||||||
# assert_that(s.s, is_equal_to_string("shortcode/foo/bar"));
|
result = parse(input)
|
||||||
# assert_that(result.sc[0].matching, is_equal_to(0));
|
result.shortcodes.size.should eq 1
|
||||||
# assert_that(result.sc[0].argcount, is_equal_to(0));
|
result.errors.size.should eq 0
|
||||||
# assert_that(result.errcount, is_equal_to(0));
|
result.shortcodes[0].name.should eq "shortcode"
|
||||||
# }
|
result.shortcodes[0].matching.should eq 1
|
||||||
|
result.shortcodes[0].args.size.should eq 0
|
||||||
|
result.shortcodes[0].whole.should eq "{{% shortcode %}}blah {{% /shortcode %}}"
|
||||||
|
result.shortcodes[0].data.should eq "blah "
|
||||||
|
end
|
||||||
|
|
||||||
# Ensure(parse, multiple_shortcodes)
|
it "should parse shortcode args" do
|
||||||
# {
|
input = "foobar {{% shortcode foo \"bar\" 42 bat=v1 baz=\"v2\" %}}blah"
|
||||||
# char *input = "foobar {{% shortcode %}}blah {{<sc2 >}}blahblah";
|
result = parse(input)
|
||||||
# result = parse(input);
|
result.shortcodes.size.should eq 1
|
||||||
# // 2 shortcodes
|
result.errors.size.should eq 0
|
||||||
# assert_that(result.sccount, is_equal_to(2));
|
result.shortcodes[0].name.should eq "shortcode"
|
||||||
|
result.shortcodes[0].matching.should eq 0
|
||||||
|
result.shortcodes[0].args.size.should eq 5
|
||||||
|
result.shortcodes[0].args[0].name.should eq ""
|
||||||
|
result.shortcodes[0].args[0].value.should eq "foo"
|
||||||
|
result.shortcodes[0].args[1].name.should eq ""
|
||||||
|
result.shortcodes[0].args[1].value.should eq "bar"
|
||||||
|
result.shortcodes[0].args[2].name.should eq ""
|
||||||
|
result.shortcodes[0].args[2].value.should eq "42"
|
||||||
|
result.shortcodes[0].args[3].name.should eq "bat"
|
||||||
|
result.shortcodes[0].args[3].value.should eq "v1"
|
||||||
|
result.shortcodes[0].args[4].name.should eq "baz"
|
||||||
|
result.shortcodes[0].args[4].value.should eq "v2"
|
||||||
|
result.shortcodes[0].whole.should eq "{{% shortcode foo \"bar\" 42 bat=v1 baz=\"v2\" %}}"
|
||||||
|
end
|
||||||
|
|
||||||
# // It's a simple one called shortcode, no args
|
|
||||||
# chunk_s(input, result.sc[0].name);
|
|
||||||
# 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));
|
|
||||||
# // The whole shortcode is the whole thing
|
|
||||||
# chunk_s(input, result.sc[0].whole);
|
|
||||||
# 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);
|
|
||||||
# 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));
|
|
||||||
# // The whole shortcode is the whole thing
|
|
||||||
# chunk_s(input, result.sc[1].whole);
|
|
||||||
# assert_that(s.s, is_equal_to_string("{{<sc2 >}}"));
|
|
||||||
# assert_that(result.errcount, is_equal_to(0));
|
|
||||||
# }
|
|
||||||
|
|
||||||
# Ensure(parse, matching_shortcode)
|
|
||||||
# {
|
|
||||||
# char *input = "blah {{% shortcode %}}foo bar{{% /shortcode %}} blah";
|
|
||||||
# result = parse(input);
|
|
||||||
|
|
||||||
# // Only 1 shortcode
|
|
||||||
# assert_that(result.sccount, is_equal_to(1));
|
|
||||||
|
|
||||||
# // It's a matching one called shortcode, no args
|
|
||||||
# chunk_s(input, result.sc[0].name);
|
|
||||||
# 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));
|
|
||||||
# // data is the stuff between the shortcode tags
|
|
||||||
# chunk_s(input, result.sc[0].data);
|
|
||||||
# assert_that(s.s, is_equal_to_string("foo bar"));
|
|
||||||
# // The whole shortcode is the whole thing
|
|
||||||
# chunk_s(input, result.sc[0].whole);
|
|
||||||
# assert_that(s.s, is_equal_to_string("{{% shortcode %}}foo bar{{% /shortcode %}}"));
|
|
||||||
# assert_that(result.errcount, is_equal_to(0));
|
|
||||||
# }
|
|
||||||
|
|
||||||
# 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.sccount, is_equal_to(1));
|
|
||||||
|
|
||||||
# // The whole shortcode is the whole thing
|
|
||||||
# chunk_s(input, result.sc[0].whole);
|
|
||||||
# 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);
|
|
||||||
# assert_that(s.s, is_equal_to_string("shortcode"));
|
|
||||||
# assert_that(result.sc[0].matching, is_equal_to(0));
|
|
||||||
|
|
||||||
# // Has 5 args
|
|
||||||
# assert_that(result.sc[0].argcount, is_equal_to(5));
|
|
||||||
|
|
||||||
# // 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]);
|
|
||||||
# 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]);
|
|
||||||
# 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]);
|
|
||||||
# assert_that(s.s, is_equal_to_string("42"));
|
|
||||||
# // Arg4 is bat=v1
|
|
||||||
# chunk_s(input, result.sc[0].argnames[3]);
|
|
||||||
# assert_that(s.s, is_equal_to_string("bat"));
|
|
||||||
# chunk_s(input, result.sc[0].argvals[3]);
|
|
||||||
# assert_that(s.s, is_equal_to_string("v1"));
|
|
||||||
# // Arg5 is baz=v2
|
|
||||||
# chunk_s(input, result.sc[0].argnames[4]);
|
|
||||||
# assert_that(s.s, is_equal_to_string("baz"));
|
|
||||||
# chunk_s(input, result.sc[0].argvals[4]);
|
|
||||||
# assert_that(s.s, is_equal_to_string("v2"));
|
|
||||||
# assert_that(result.errcount, is_equal_to(0));
|
|
||||||
# }
|
|
||||||
|
|
||||||
# // BUG?
|
# // BUG?
|
||||||
# // Ensure(parse, escaped_shortcode)
|
# // Ensure(parse, escaped_shortcode)
|
||||||
|
Loading…
Reference in New Issue
Block a user