forked from gomem/gomem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomparable_test.go
163 lines (150 loc) · 4.23 KB
/
comparable_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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
package object
import (
"errors"
"testing"
)
func TestComparableEq(t *testing.T) {
cases := []struct {
left Object
right Object
err error
want bool
}{
{Int64(1), Int64(1), nil, true},
{Int64(1), Int64(2), nil, false},
{nil, nil, nil, true},
{nil, Int64(1), nil, false},
{Int64(1), nil, nil, false},
{Int64(1).ToBoolean(), Int32(2).ToBoolean(), nil, true},
{Int64(0).ToBoolean(), Int32(0).ToBoolean(), nil, true},
{Int64(0).ToBoolean(), Int32(1).ToBoolean(), nil, false},
}
for _, c := range cases {
eq, err := Eq(c.left, c.right)
if err != c.err {
t.Errorf("wrong value for error:\ngot=%v\nwant=%v", err, c.err)
}
if got, want := eq, Boolean(c.want); got != want {
t.Errorf("\ngot=%v\nwant=%v", got, want)
}
}
}
func TestComparableNeq(t *testing.T) {
cases := []struct {
left Object
right Object
err error
want bool
}{
{Int64(1), Int64(1), nil, false},
{Int64(1), Int64(2), nil, true},
{nil, nil, nil, false},
{nil, Int64(1), nil, true},
{Int64(1), nil, nil, true},
}
for _, c := range cases {
eq, err := Neq(c.left, c.right)
if err != c.err {
t.Errorf("wrong value for error:\ngot=%v\nwant=%v", err, c.err)
}
if got, want := eq, Boolean(c.want); got != want {
t.Errorf("\ngot=%v\nwant=%v", got, want)
}
}
}
func TestComparableLess(t *testing.T) {
cases := []struct {
left Object
right Object
err error
want bool
}{
{Int64(1), Int64(1), nil, false},
{Int64(1), Int64(2), nil, true},
{Int64(2), Int64(1), nil, false},
{nil, nil, errors.New("less than not defined on nil"), false},
{nil, Int64(1), errors.New("less than not defined on nil"), false},
{Int64(1), nil, errors.New("less than not defined on nil"), false},
}
for _, c := range cases {
eq, err := Less(c.left, c.right)
if err != c.err && err.Error() != c.err.Error() {
t.Errorf("wrong value for error:\ngot=%v\nwant=%v", err, c.err)
}
if got, want := eq, Boolean(c.want); got != want {
t.Errorf("\ngot=%v\nwant=%v", got, want)
}
}
}
func TestComparableLessEq(t *testing.T) {
cases := []struct {
left Object
right Object
err error
want bool
}{
{Int64(1), Int64(1), nil, true},
{Int64(1), Int64(2), nil, true},
{Int64(2), Int64(1), nil, false},
{nil, nil, errors.New("less than or equal to not defined on nil"), false},
{nil, Int64(1), errors.New("less than or equal to not defined on nil"), false},
{Int64(1), nil, errors.New("less than or equal to not defined on nil"), false},
}
for _, c := range cases {
eq, err := LessEq(c.left, c.right)
if err != c.err && err.Error() != c.err.Error() {
t.Errorf("wrong value for error:\ngot=%v\nwant=%v", err, c.err)
}
if got, want := eq, Boolean(c.want); got != want {
t.Errorf("\ngot=%v\nwant=%v", got, want)
}
}
}
func TestComparableGreater(t *testing.T) {
cases := []struct {
left Object
right Object
err error
want bool
}{
{Int64(1), Int64(1), nil, false},
{Int64(1), Int64(2), nil, false},
{Int64(2), Int64(1), nil, true},
{nil, nil, errors.New("greater than not defined on nil"), false},
{nil, Int64(1), errors.New("greater than not defined on nil"), false},
{Int64(1), nil, errors.New("greater than not defined on nil"), false},
}
for _, c := range cases {
eq, err := Greater(c.left, c.right)
if err != c.err && err.Error() != c.err.Error() {
t.Errorf("wrong value for error:\ngot=%v\nwant=%v", err, c.err)
}
if got, want := eq, Boolean(c.want); got != want {
t.Errorf("\ngot=%v\nwant=%v", got, want)
}
}
}
func TestComparableGreaterEq(t *testing.T) {
cases := []struct {
left Object
right Object
err error
want bool
}{
{Int64(1), Int64(1), nil, true},
{Int64(1), Int64(2), nil, false},
{Int64(2), Int64(1), nil, true},
{nil, nil, errors.New("greater than or equal to not defined on nil"), false},
{nil, Int64(1), errors.New("greater than or equal to not defined on nil"), false},
{Int64(1), nil, errors.New("greater than or equal to not defined on nil"), false},
}
for _, c := range cases {
eq, err := GreaterEq(c.left, c.right)
if err != c.err && err.Error() != c.err.Error() {
t.Errorf("wrong value for error:\ngot=%v\nwant=%v", err, c.err)
}
if got, want := eq, Boolean(c.want); got != want {
t.Errorf("\ngot=%v\nwant=%v", got, want)
}
}
}