Add nil-check to Intersect
authorbep <bjorn.erik.pedersen@gmail.com>
Wed, 8 Oct 2014 17:56:00 +0000 (19:56 +0200)
committerspf13 <steve.francia@gmail.com>
Wed, 15 Oct 2014 16:31:22 +0000 (12:31 -0400)
The Intersect template-method would fail if one or both of the lists were nil (post vs page; post has tags, page has not).

This commit adds a nil-check and returns an empty result if any of the inputs are nil.

See #537

hugolib/template.go
hugolib/template_test.go

index 06aa594c1e467f1952c59a537e74b78294dac0b9..664bb5214de64641cdd55911c341180870fb2fac 100644 (file)
@@ -80,6 +80,11 @@ func compareGetFloat(a interface{}, b interface{}) (float64, float64) {
 }
 
 func Intersect(l1, l2 interface{}) (interface{}, error) {
+
+       if l1 == nil || l2 == nil {
+               return make([]interface{}, 0), nil
+       }
+
        l1v := reflect.ValueOf(l1)
        l2v := reflect.ValueOf(l2)
 
index 57c132f967c3939af244e97753c88a41c960956f..eb0a42707ab7df39b420158eb688b18cea10a977 100644 (file)
@@ -144,6 +144,73 @@ func TestFirst(t *testing.T) {
        }
 }
 
+func TestIn(t *testing.T) {
+       for i, this := range []struct {
+               v1     interface{}
+               v2     interface{}
+               expect bool
+       }{
+               {[]string{"a", "b", "c"}, "b", true},
+               {[]string{"a", "b", "c"}, "d", false},
+               {[]string{"a", "12", "c"}, 12, false},
+               {[]int{1, 2, 4}, 2, true},
+               {[]int{1, 2, 4}, 3, false},
+               {[]float64{1.23, 2.45, 4.67}, 1.23, true},
+               {[]float64{1.234567, 2.45, 4.67}, 1.234568, false},
+               {"this substring should be found", "substring", true},
+               {"this substring should not be found", "subseastring", false},
+       } {
+               result := In(this.v1, this.v2)
+
+               if result != this.expect {
+                       t.Errorf("[%d] Got %v but expected %v", i, result, this.expect)
+               }
+       }
+}
+
+func TestIntersect(t *testing.T) {
+       for i, this := range []struct {
+               sequence1 interface{}
+               sequence2 interface{}
+               expect    interface{}
+       }{
+               {[]string{"a", "b", "c"}, []string{"a", "b"}, []string{"a", "b"}},
+               {[]string{"a", "b"}, []string{"a", "b", "c"}, []string{"a", "b"}},
+               {[]string{"a", "b", "c"}, []string{"d", "e"}, []string{}},
+               {[]string{}, []string{}, []string{}},
+               {[]string{"a", "b"}, nil, make([]interface{}, 0)},
+               {nil, []string{"a", "b"}, make([]interface{}, 0)},
+               {nil, nil, make([]interface{}, 0)},
+               {[]string{"1", "2"}, []int{1, 2}, []string{}},
+               {[]int{1, 2}, []string{"1", "2"}, []int{}},
+               {[]int{1, 2, 4}, []int{2, 4}, []int{2, 4}},
+               {[]int{2, 4}, []int{1, 2, 4}, []int{2, 4}},
+               {[]int{1, 2, 4}, []int{3, 6}, []int{}},
+               {[]float64{2.2, 4.4}, []float64{1.1, 2.2, 4.4}, []float64{2.2, 4.4}},
+       } {
+               results, err := Intersect(this.sequence1, this.sequence2)
+               if err != nil {
+                       t.Errorf("[%d] failed: %s", i, err)
+                       continue
+               }
+               if !reflect.DeepEqual(results, this.expect) {
+                       t.Errorf("[%d] Got %v but expected %v", i, results, this.expect)
+               }
+       }
+
+       _, err1 := Intersect("not an array or slice", []string{"a"})
+
+       if err1 == nil {
+               t.Error("Excpected error for non array as first arg")
+       }
+
+       _, err2 := Intersect([]string{"a"}, "not an array or slice")
+
+       if err2 == nil {
+               t.Error("Excpected error for non array as second arg")
+       }
+}
+
 func TestWhere(t *testing.T) {
        type X struct {
                A, B string