tpl: Accept limit as interface in findRE func
authorCameron Moore <moorereason@gmail.com>
Wed, 8 Feb 2017 16:40:11 +0000 (10:40 -0600)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Fri, 10 Feb 2017 13:02:28 +0000 (20:02 +0700)
Fixes #3018

tpl/template_funcs.go
tpl/template_funcs_test.go

index 5db5e54ac5a56472ce90c5adecfbe90fe34a0e32..01b975665b203c925ab5e900a6fe5b229b08be0c 100644 (file)
@@ -535,8 +535,8 @@ func first(limit interface{}, seq interface{}) (interface{}, error) {
 }
 
 // findRE returns a list of strings that match the regular expression. By default all matches
-// will be included. The number of matches can be limitted with an optional third parameter.
-func findRE(expr string, content interface{}, limit ...int) ([]string, error) {
+// will be included. The number of matches can be limited with an optional third parameter.
+func findRE(expr string, content interface{}, limit ...interface{}) ([]string, error) {
        re, err := reCache.Get(expr)
        if err != nil {
                return nil, err
@@ -546,11 +546,17 @@ func findRE(expr string, content interface{}, limit ...int) ([]string, error) {
        if err != nil {
                return nil, err
        }
-       if len(limit) > 0 {
-               return re.FindAllString(conv, limit[0]), nil
+
+       if len(limit) == 0 {
+               return re.FindAllString(conv, -1), nil
+       }
+
+       lim, err := cast.ToIntE(limit[0])
+       if err != nil {
+               return nil, err
        }
 
-       return re.FindAllString(conv, -1), nil
+       return re.FindAllString(conv, lim), nil
 }
 
 // last returns the last N items in a rangeable list.
index e5d0193a673969a773aca07f397cc343f39d8d7b..bbe31216b202b1620918d918694b47bf2fff0f4c 100644 (file)
@@ -121,7 +121,7 @@ div: {{div 6 3}}
 echoParam: {{ echoParam .Params "langCode" }}
 emojify: {{ "I :heart: Hugo" | emojify }}
 eq: {{ if eq .Section "blog" }}current{{ end }}
-findRE: {{ findRE "[G|g]o" "Hugo is a static side generator written in Go." 1 }}
+findRE: {{ findRE "[G|g]o" "Hugo is a static side generator written in Go." "1" }}
 hasPrefix 1: {{ hasPrefix "Hugo" "Hu" }}
 hasPrefix 2: {{ hasPrefix "Hugo" "Fu" }}
 htmlEscape 1: {{ htmlEscape "Cathal Garvey & The Sunshine Band <cathal@foo.bar>" | safeHTML}}
@@ -2233,29 +2233,24 @@ func TestFindRE(t *testing.T) {
        for i, this := range []struct {
                expr    string
                content interface{}
-               limit   int
+               limit   interface{}
                expect  []string
                ok      bool
        }{
                {"[G|g]o", "Hugo is a static site generator written in Go.", 2, []string{"go", "Go"}, true},
                {"[G|g]o", "Hugo is a static site generator written in Go.", -1, []string{"go", "Go"}, true},
                {"[G|g]o", "Hugo is a static site generator written in Go.", 1, []string{"go"}, true},
-               {"[G|g]o", "Hugo is a static site generator written in Go.", 0, []string(nil), true},
-               {"[G|go", "Hugo is a static site generator written in Go.", 0, []string(nil), false},
-               {"[G|g]o", t, 0, []string(nil), false},
+               {"[G|g]o", "Hugo is a static site generator written in Go.", "1", []string{"go"}, true},
+               {"[G|g]o", "Hugo is a static site generator written in Go.", nil, []string(nil), true},
+               {"[G|go", "Hugo is a static site generator written in Go.", nil, []string(nil), false},
+               {"[G|g]o", t, nil, []string(nil), false},
        } {
                var (
                        res []string
                        err error
                )
 
-               if this.limit >= 0 {
-                       res, err = findRE(this.expr, this.content, this.limit)
-
-               } else {
-                       res, err = findRE(this.expr, this.content)
-               }
-
+               res, err = findRE(this.expr, this.content, this.limit)
                if err != nil && this.ok {
                        t.Errorf("[%d] returned an unexpected error: %s", i, err)
                }