tpl: Consolidate and complete the Inflect tests
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sun, 7 Feb 2016 13:37:04 +0000 (14:37 +0100)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sun, 7 Feb 2016 13:37:04 +0000 (14:37 +0100)
tpl/template_funcs_test.go

index 447cf9569f73b5d2a45d8c510991dd0b4ca48e53..cac729457d7e59421f8b49b8288995a10a491f8c 100644 (file)
@@ -1533,32 +1533,28 @@ func TestChomp(t *testing.T) {
        }
 }
 
-func TestHumanize(t *testing.T) {
+func TestInflect(t *testing.T) {
        for i, this := range []struct {
-               in, expect interface{}
+               inflectFunc func(i interface{}) (string, error)
+               in          string
+               expected    string
        }{
-               {"MyCamelPost", "My camel post"},
-               {"myLowerCamelPost", "My lower camel post"},
-               {"my-dash-post", "My dash post"},
-               {"my_underscore_post", "My underscore post"},
-               {"posts/my-first-post", "Posts/my first post"},
-               {tstNoStringer{}, false},
+               {humanize, "MyCamel", "My camel"},
+               {pluralize, "cat", "cats"},
+               {singularize, "cats", "cat"},
        } {
 
-               result, err := humanize(this.in)
+               result, err := this.inflectFunc(this.in)
 
-               if b, ok := this.expect.(bool); ok && !b {
-                       if err == nil {
-                               t.Errorf("[%d] Humanize didn't return an expected error", i)
-                       }
-               } else {
-                       if err != nil {
-                               t.Errorf("[%d] failed: %s", i, err)
-                               continue
-                       }
-                       if result != this.expect {
-                               t.Errorf("[%d] Humanize got %v but expected %v", i, result, this.expect)
-                       }
+               if err != nil {
+                       t.Errorf("[%d] Unexpected Inflect error: %s", i, err)
+               } else if result != this.expected {
+                       t.Errorf("[%d] Inflect method error, got %v expected %v", i, result, this.expected)
+               }
+
+               _, err = this.inflectFunc(t)
+               if err == nil {
+                       t.Errorf("[%d] Expected Inflect error", i)
                }
        }
 }