Make template comparison functions handle floats
authorVincent Batoufflet <vincent@batoufflet.info>
Sat, 10 May 2014 10:05:29 +0000 (12:05 +0200)
committerspf13 <steve.francia@gmail.com>
Sat, 10 May 2014 19:38:18 +0000 (15:38 -0400)
hugolib/template.go
hugolib/template_test.go

index 86cb4a5480fd07016ffc6892329256d2a0b62625..5cba59f31e55e262fd8b636f621468567f700d5e 100644 (file)
@@ -25,47 +25,51 @@ func Ne(x, y interface{}) bool {
 }
 
 func Ge(a, b interface{}) bool {
-       left, right := compareGetInt(a, b)
+       left, right := compareGetFloat(a, b)
        return left >= right
 }
 
 func Gt(a, b interface{}) bool {
-       left, right := compareGetInt(a, b)
+       left, right := compareGetFloat(a, b)
        return left > right
 }
 
 func Le(a, b interface{}) bool {
-       left, right := compareGetInt(a, b)
+       left, right := compareGetFloat(a, b)
        return left <= right
 }
 
 func Lt(a, b interface{}) bool {
-       left, right := compareGetInt(a, b)
+       left, right := compareGetFloat(a, b)
        return left < right
 }
 
-func compareGetInt(a interface{}, b interface{}) (int64, int64) {
-       var left, right int64
+func compareGetFloat(a interface{}, b interface{}) (float64, float64) {
+       var left, right float64
        av := reflect.ValueOf(a)
 
        switch av.Kind() {
        case reflect.Array, reflect.Chan, reflect.Map, reflect.Slice:
-               left = int64(av.Len())
+               left = float64(av.Len())
        case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
-               left = av.Int()
+               left = float64(av.Int())
+       case reflect.Float32, reflect.Float64:
+               left = av.Float()
        case reflect.String:
-               left, _ = strconv.ParseInt(av.String(), 10, 64)
+               left, _ = strconv.ParseFloat(av.String(), 64)
        }
 
        bv := reflect.ValueOf(b)
 
        switch bv.Kind() {
        case reflect.Array, reflect.Chan, reflect.Map, reflect.Slice:
-               right = int64(bv.Len())
+               right = float64(bv.Len())
        case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
-               right = bv.Int()
+               right = float64(bv.Int())
+       case reflect.Float32, reflect.Float64:
+               right = bv.Float()
        case reflect.String:
-               right, _ = strconv.ParseInt(bv.String(), 10, 64)
+               right, _ = strconv.ParseFloat(bv.String(), 64)
        }
 
        return left, right
index ffc417b4c09ad04bbec1046be1084cc9a1daf163..029e2a49f706cee009a12d1aeeada10d191e3f05 100644 (file)
@@ -16,6 +16,8 @@ func TestGt(t *testing.T) {
                {5, 5, false},
                {-2, 1, false},
                {2, -5, true},
+               {0.0, 1.23, false},
+               {1.23, 0.0, true},
                {"8", "5", true},
                {"5", "0001", true},
                {[]int{100, 99}, []int{1, 2, 3, 4}, false},