Bind more, more tests
This commit is contained in:
parent
d55a1c6bad
commit
44619dd1d4
@ -2,44 +2,21 @@ require "./spec_helper"
|
|||||||
include Shortcodes
|
include Shortcodes
|
||||||
|
|
||||||
describe "Shortcodes" do
|
describe "Shortcodes" do
|
||||||
# TODO: Write tests
|
it "should parse empty string" do
|
||||||
|
result = parse("")
|
||||||
it "works" do
|
result.shortcodes.size.should eq 0
|
||||||
input = "foo{{% bar %}}baz{{% /bar %}}qux"
|
result.errors.size.should eq 0
|
||||||
result = parse(input)
|
|
||||||
result.shortcodes.size.should eq 1
|
|
||||||
result.shortcodes[0].args.size.should eq 0
|
|
||||||
result.shortcodes[0].name.should eq "bar"
|
|
||||||
end
|
end
|
||||||
end
|
|
||||||
|
|
||||||
# Port tests below to spec
|
|
||||||
|
|
||||||
# #include <cgreen/cgreen.h>
|
|
||||||
# #include <bglibs/str.h>
|
|
||||||
# #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)
|
# Ensure(parse, simple_shortcode)
|
||||||
# {
|
# {
|
||||||
# char *input = "foobar {{% shortcode %}}blah";
|
# char *input = "foobar {{% shortcode %}}blah";
|
||||||
@ -241,3 +218,4 @@ end
|
|||||||
# // // No shortcodes
|
# // // No shortcodes
|
||||||
# // assert_that(result.sc[0].name.len, is_equal_to(0));
|
# // assert_that(result.sc[0].name.len, is_equal_to(0));
|
||||||
# // }
|
# // }
|
||||||
|
end
|
||||||
|
@ -39,18 +39,28 @@ module Shortcodes
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
struct Error
|
||||||
|
@position: UInt32
|
||||||
|
@code: UInt32
|
||||||
|
|
||||||
|
def initialize(@position, @code)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
struct Shortcode
|
struct Shortcode
|
||||||
property name : String = ""
|
property name : String = ""
|
||||||
property data : String = ""
|
property data : String = ""
|
||||||
property matching : Int32 = 0
|
property matching : Int32 = 0
|
||||||
property args : Array(Arg) = [] of Arg
|
property args : Array(Arg) = [] of Arg
|
||||||
|
property errors : Array(Error) = [] of Error
|
||||||
def initialize(@name, @data, @matching, @args)
|
property whole : String = ""
|
||||||
|
def initialize(@name, @data, @matching, @args, @whole)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
struct Result
|
struct Result
|
||||||
property shortcodes : Array(Shortcode) = [] of Shortcode
|
property shortcodes : Array(Shortcode) = [] of Shortcode
|
||||||
|
property errors : Array(Error) = [] of Error
|
||||||
end
|
end
|
||||||
|
|
||||||
def extract(c : LibShortcodes::Chunk, s : String)
|
def extract(c : LibShortcodes::Chunk, s : String)
|
||||||
@ -70,13 +80,36 @@ module Shortcodes
|
|||||||
extract(sc.argvals[j], input),
|
extract(sc.argvals[j], input),
|
||||||
)
|
)
|
||||||
end
|
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(
|
result.shortcodes << Shortcode.new(
|
||||||
extract(sc.name, input),
|
extract(sc.name, input),
|
||||||
extract(sc.data, input),
|
extract(sc.data, input),
|
||||||
sc.matching,
|
sc.matching,
|
||||||
args,
|
args,
|
||||||
|
extract(sc.whole, input),
|
||||||
)
|
)
|
||||||
end
|
end
|
||||||
result
|
result
|
||||||
end
|
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
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user