-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcurry_test.go
78 lines (60 loc) · 1.27 KB
/
curry_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
package curry_test
import (
"curry"
"errors"
"testing"
)
type AnyStruct struct {}
func (s AnyStruct) Sum(a, b int) int {
return a + b
}
func crossMultiply(a, b, c float64) (float64, error) {
if a == 0 {
return 0, errors.New("can not divide by zero")
}
return (b * c) / a, nil
}
func TestFunc(t *testing.T) {
var a, b, c float64 = 100, 420, 10
cross, _ := curry.Func(crossMultiply)
t.Run("partial apply works", func(t *testing.T) {
partial, _ := cross(a)
partial, _ = partial(b)
_, out := partial(c)
if out == nil || len(out) != 2 {
t.Fail()
}
result := out[0].Float()
err := out[1]
if result != 42 || !err.IsNil() {
t.Fail()
}
})
t.Run("should be able to create new curried instances", func(t *testing.T) {
var a float64 = 0
partial, _ := cross(a)
_, out := partial(b, c)
if out == nil || len(out) != 2 {
t.Fail()
}
result := out[0].Float()
err := out[1].Interface().(error)
if result != 0 || err == nil || err.Error() != "can not divide by zero" {
t.Fail()
}
})
}
func TestMethod(t *testing.T) {
var a, b = 20, 22
s := AnyStruct{}
sum, _ := curry.Method(s, "Sum")
partial, _ := sum(a)
_, out := partial(b)
if out == nil || len(out) != 1 {
t.Fail()
}
result := out[0].Int()
if result != 42 {
t.Fail()
}
}