forked from google/rpmpack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sense_test.go
81 lines (76 loc) · 1.54 KB
/
sense_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
package rpmpack
import (
"testing"
)
func TestNewRelation(t *testing.T) {
testCases := []struct {
input, output string
errExpected bool
}{
{
input: "python >= 3.7",
output: "python>=3.7",
},
{
input: "python",
output: "python",
},
{
input: "python=2",
output: "python=2",
},
{
input: "python >=3.5",
output: "python>=3.5",
},
{
input: "python >< 3.5",
output: "",
errExpected: true,
},
{
input: "python <> 3.5",
output: "",
errExpected: true,
},
{
input: "python == 3.5",
output: "",
errExpected: true,
},
{
input: "python =< 3.5",
output: "",
errExpected: true,
},
{
input: "python => 3.5",
output: "",
errExpected: true,
},
}
for _, tc := range testCases {
testCase := tc
t.Run(testCase.input, func(tt *testing.T) {
relation, err := NewRelation(testCase.input)
switch {
case testCase.errExpected && err == nil:
tt.Errorf("%s should have returned an error", testCase.input)
return
case !testCase.errExpected && err != nil:
tt.Errorf("%s should not have returned an error: %v", testCase.input, err)
return
case testCase.errExpected && err != nil:
return
}
if relation == nil {
tt.Errorf("%s should not have returned a nil relation", testCase.input)
return
}
val := relation.String()
if !testCase.errExpected && val != testCase.output {
tt.Errorf("%s should have returned %s not %s", testCase.input, testCase.output, val)
}
})
}
}