tpl: Update title to accept interface{} params
authorCameron Moore <moorereason@gmail.com>
Fri, 23 Dec 2016 04:01:00 +0000 (22:01 -0600)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Fri, 23 Dec 2016 08:51:03 +0000 (09:51 +0100)
Updates #2822

tpl/template_funcs.go
tpl/template_funcs_test.go

index aba536a3994cd1b8b377ad7db3349ceb19d77dfe..7516b46adc1204f69db0ca2bba6447ee89a093bb 100644 (file)
@@ -1457,6 +1457,17 @@ func lower(s interface{}) (string, error) {
        return strings.ToLower(ss), nil
 }
 
+// title returns a copy of the input s with all Unicode letters that begin words
+// mapped to their title case.
+func title(s interface{}) (string, error) {
+       ss, err := cast.ToStringE(s)
+       if err != nil {
+               return "", err
+       }
+
+       return strings.Title(ss), nil
+}
+
 // upper returns a copy of the input s with all Unicode letters mapped to their
 // upper case.
 func upper(s interface{}) (string, error) {
@@ -2158,7 +2169,7 @@ func initFuncMap() {
                "string":       func(v interface{}) (string, error) { return cast.ToStringE(v) },
                "sub":          func(a, b interface{}) (interface{}, error) { return helpers.DoArithmetic(a, b, '-') },
                "substr":       substr,
-               "title":        func(a string) string { return strings.Title(a) },
+               "title":        title,
                "time":         asTime,
                "trim":         trim,
                "upper":        upper,
index 0b583c306ebdc4c39ae01536a3f252d9c3cd2567..8e167cf819a3eca373409772118d51b0607b9685 100644 (file)
@@ -2022,6 +2022,29 @@ func TestLower(t *testing.T) {
        }
 }
 
+func TestTitle(t *testing.T) {
+       cases := []struct {
+               s     interface{}
+               want  string
+               isErr bool
+       }{
+               {"test", "Test", false},
+               {template.HTML("hypertext"), "Hypertext", false},
+               {[]byte("bytes"), "Bytes", false},
+       }
+
+       for i, c := range cases {
+               res, err := title(c.s)
+               if (err != nil) != c.isErr {
+                       t.Fatalf("[%d] unexpected isErr state: want %v, got %v, err = %v", i, c.want, (err != nil), err)
+               }
+
+               if res != c.want {
+                       t.Errorf("[%d] title failed: want %v, got %v", i, c.want, res)
+               }
+       }
+}
+
 func TestUpper(t *testing.T) {
        cases := []struct {
                s     interface{}