tpl: Send actual values to in from intersect
authorCameron Moore <moorereason@gmail.com>
Sun, 13 Mar 2016 21:39:03 +0000 (16:39 -0500)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Thu, 17 Mar 2016 19:09:43 +0000 (20:09 +0100)
The `intersect` function uses `in` to avoid adding duplicates to the
resulting set.  We were passing `reflect.Value` items when we should
have been using `Value.Interface()` to send the actual data structure.
This fixes that.

See #1952

tpl/template_funcs.go
tpl/template_funcs_test.go

index b4a737fae9b9f322b50e807946f5431da94c7d11..b7d0095204b5b881332b2f73ab4fa4d4c08e9c4b 100644 (file)
@@ -330,20 +330,20 @@ func intersect(l1, l2 interface{}) (interface{}, error) {
                                        l2vv := l2v.Index(j)
                                        switch l1vv.Kind() {
                                        case reflect.String:
-                                               if l1vv.Type() == l2vv.Type() && l1vv.String() == l2vv.String() && !in(r, l2vv) {
+                                               if l1vv.Type() == l2vv.Type() && l1vv.String() == l2vv.String() && !in(r.Interface(), l2vv.Interface()) {
                                                        r = reflect.Append(r, l2vv)
                                                }
                                        case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
                                                switch l2vv.Kind() {
                                                case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
-                                                       if l1vv.Int() == l2vv.Int() && !in(r, l2vv) {
+                                                       if l1vv.Int() == l2vv.Int() && !in(r.Interface(), l2vv.Interface()) {
                                                                r = reflect.Append(r, l2vv)
                                                        }
                                                }
                                        case reflect.Float32, reflect.Float64:
                                                switch l2vv.Kind() {
                                                case reflect.Float32, reflect.Float64:
-                                                       if l1vv.Float() == l2vv.Float() && !in(r, l2vv) {
+                                                       if l1vv.Float() == l2vv.Float() && !in(r.Interface(), l2vv.Interface()) {
                                                                r = reflect.Append(r, l2vv)
                                                        }
                                                }
index 28b18c927885ca8e6e7ed85ec0ef0800bc405c11..a6a284bbf6708f9962ec78141e84a0be2e23322f 100644 (file)
@@ -776,7 +776,7 @@ func TestIntersect(t *testing.T) {
                sequence2 interface{}
                expect    interface{}
        }{
-               {[]string{"a", "b", "c"}, []string{"a", "b"}, []string{"a", "b"}},
+               {[]string{"a", "b", "c", "c"}, []string{"a", "b", "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{}},