From 44619dd1d48c7d1c8fd40cf525629926170236d6 Mon Sep 17 00:00:00 2001 From: Roberto Alsina Date: Fri, 14 Jul 2023 16:23:55 -0300 Subject: [PATCH] Bind more, more tests --- spec/shortcodes_spec.cr | 50 ++++++++++++----------------------------- src/shortcodes.cr | 39 +++++++++++++++++++++++++++++--- 2 files changed, 50 insertions(+), 39 deletions(-) diff --git a/spec/shortcodes_spec.cr b/spec/shortcodes_spec.cr index 7c485ee..d3d859e 100644 --- a/spec/shortcodes_spec.cr +++ b/spec/shortcodes_spec.cr @@ -2,44 +2,21 @@ require "./spec_helper" include Shortcodes describe "Shortcodes" do - # TODO: Write tests - - it "works" do - input = "foo{{% bar %}}baz{{% /bar %}}qux" - result = parse(input) - result.shortcodes.size.should eq 1 - result.shortcodes[0].args.size.should eq 0 - result.shortcodes[0].name.should eq "bar" + it "should parse empty string" do + result = parse("") + result.shortcodes.size.should eq 0 + result.errors.size.should eq 0 end -end - -# Port tests below to spec - -# #include -# #include -# #include "shortcodes.h" - -# Describe(parse); -# BeforeEach(parse) {} -# AfterEach(parse) {} - -# sc_result result; -# str s; - -# void chunk_s(char *buffer, chunk c) -# { -# str_copyb(&s, buffer + c.start, c.len); -# } - -# Ensure(parse, empty_string) -# { -# char *input = ""; -# result = parse(input); -# // This means no shortcodes in it -# assert_that(result.sccount, is_equal_to(0)); -# assert_that(result.errcount, is_equal_to(0)); -# } + it "should parse simeple shortcode" do + result = parse("foobar {{% shortcode %}}blah") + result.shortcodes.size.should eq 1 + result.errors.size.should eq 0 + 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 # Ensure(parse, simple_shortcode) # { # char *input = "foobar {{% shortcode %}}blah"; @@ -241,3 +218,4 @@ end # // // No shortcodes # // assert_that(result.sc[0].name.len, is_equal_to(0)); # // } +end diff --git a/src/shortcodes.cr b/src/shortcodes.cr index d542e69..26931a7 100644 --- a/src/shortcodes.cr +++ b/src/shortcodes.cr @@ -30,7 +30,7 @@ lib LibShortcodes fun parse(input : Pointer(LibC::Char), len : UInt32) : ScResult end -module Shortcodes +module Shortcodes struct Arg property name : String = "" property value : String = "" @@ -39,18 +39,28 @@ module Shortcodes end end + struct Error + @position: UInt32 + @code: UInt32 + + def initialize(@position, @code) + end + end + struct Shortcode property name : String = "" property data : String = "" property matching : Int32 = 0 property args : Array(Arg) = [] of Arg - - def initialize(@name, @data, @matching, @args) + property errors : Array(Error) = [] of Error + property whole : String = "" + def initialize(@name, @data, @matching, @args, @whole) end end struct Result property shortcodes : Array(Shortcode) = [] of Shortcode + property errors : Array(Error) = [] of Error end def extract(c : LibShortcodes::Chunk, s : String) @@ -70,13 +80,36 @@ module Shortcodes extract(sc.argvals[j], input), ) end + + errors = [] of Error + (0...r.errcount).each do |k| + errors << Error.new( + r.errors[k].position, + r.errors[k].code, + ) + end + result.shortcodes << Shortcode.new( extract(sc.name, input), extract(sc.data, input), sc.matching, args, + extract(sc.whole, input), ) end result end + + + #### Error codes + # + # You are closing the wrong shortcode. + # Example: + # {{% foo %}} {{% /bar %}} + ERR_MISMATCHED_CLOSING_TAG = 1 + + # You are using mismatched brackets. + # Example: + # {{% foo >}} + ERR_MISMATCHED_BRACKET = 2 end