-
-
Notifications
You must be signed in to change notification settings - Fork 87
/
task_either_test.go
123 lines (94 loc) · 2.34 KB
/
task_either_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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
package mo
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestTaskEither(t *testing.T) {
is := assert.New(t)
taskEither := NewTaskEither(func() *Future[int] {
return NewFuture(func(resolve func(int), reject func(error)) {
resolve(42)
})
})
result := taskEither.Run().Result().MustGet()
is.Equal(42, result)
}
func TestTaskEitherOrElse(t *testing.T) {
is := assert.New(t)
taskEither1 := NewTaskEither(func() *Future[int] {
return NewFuture(func(resolve func(int), reject func(error)) {
resolve(42)
})
})
taskEither2 := NewTaskEither(func() *Future[int] {
return NewFuture(func(resolve func(int), reject func(error)) {
reject(assert.AnError)
})
})
result1 := taskEither1.OrElse(1234)
result2 := taskEither2.OrElse(1234)
is.Equal(42, result1)
is.Equal(1234, result2)
}
func TestTaskEitherMatch(t *testing.T) {
is := assert.New(t)
taskEither := NewTaskEither(func() *Future[int] {
return NewFuture(func(resolve func(int), reject func(error)) {
resolve(42)
})
})
mapped := taskEither.Match(
func(err error) Either[error, int] {
return Right[error, int](1234)
},
func(i int) Either[error, int] {
return Right[error, int](i)
},
)
v, ok := mapped.Right()
is.Equal(42, v)
is.True(ok)
}
func TestTaskEitherTryCatch(t *testing.T) {
is := assert.New(t)
taskEither := NewTaskEither(func() *Future[int] {
return NewFuture(func(resolve func(int), reject func(error)) {
resolve(42)
})
})
mapped := taskEither.TryCatch(
func(err error) Either[error, int] {
return Right[error, int](1234)
},
func(i int) Either[error, int] {
return Right[error, int](i)
},
)
v, ok := mapped.Right()
is.Equal(42, v)
is.True(ok)
}
func TestTaskEitherToTask(t *testing.T) {
is := assert.New(t)
taskEither := NewTaskEither(func() *Future[int] {
return NewFuture(func(resolve func(int), reject func(error)) {
reject(assert.AnError)
})
})
task := taskEither.ToTask(1234)
result := task.Run().Result().MustGet()
is.Equal(1234, result)
}
func TestTaskEitherToEither(t *testing.T) {
is := assert.New(t)
taskEither := NewTaskEither(func() *Future[int] {
return NewFuture(func(resolve func(int), reject func(error)) {
reject(assert.AnError)
})
})
either := taskEither.ToEither()
err, isError := either.Left()
is.True(isError)
is.NotNil(err)
is.Equal(assert.AnError, err)
}