-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
version_test.go
146 lines (118 loc) · 2.39 KB
/
version_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
package buildver
import (
"testing"
)
// func TestClipZeroes(t *testing.T) {
// a, _ := New("1.2.3.0")
// b, _ := New("1.0.0.0")
// c, _ := New("1.2.0.1")
// t.Logf("%#v %#v %#v", a, b, c)
// t.Fail()
// }
func TestLess(t *testing.T) {
a, _ := New("1.2.3.0")
b, _ := New("1.0.0.0")
if !b.Less(a) {
t.Error("1.0.0.0 < 1.2.3.0")
}
if a.Less(b) {
t.Error("1.0.0.0 < 1.2.3.0")
}
c, _ := New("1.0")
d, _ := New("0.9")
if !d.Less(c) {
t.Error("0.9 < 1.0")
}
if c.Less(d) {
t.Error("0.9 < 1.0")
}
}
func TestLessWithEquals(t *testing.T) {
a, _ := New("1.2")
b, _ := New("1.2")
if a.Less(b) {
t.Error("1.2 = 1.2")
}
}
func TestVsInvalid(t *testing.T) {
a, _ := New("dog")
b, _ := New("4.1.10")
if !a.Less(b) {
t.Error("dog < 4.1.0")
}
}
func TestMore(t *testing.T) {
a, _ := New("4.1.10")
b, _ := New("4.1.10.5")
if !a.Less(b) {
t.Error("4.1.10 < 4.1.10.5")
}
}
func TestEquals(t *testing.T) {
a, _ := New("4.1.10.5")
b, _ := New("4.1.10.5")
if !a.Equals(b) || !b.Equals(a) {
t.Error("4.1.10.5 = 4.1.10.5")
}
c, _ := New("1.0.0.0.0")
d, _ := New("1")
if !c.Equals(d) || !d.Equals(c) {
t.Error("1.0.0.0.0 = 1")
}
e, _ := New("1.2")
f, _ := New("1")
if e.Equals(f) {
t.Error("1.2 ≠ 1")
}
g, _ := New("2.5")
h, _ := New("2.4")
if g.Equals(h) {
t.Error("2.5 ≠ 2.4")
}
}
func TestFromInts(t *testing.T) {
a, _ := New("1.2.3.0")
b := FromInts(1, 2, 3, 0)
if !a.Equals(b) {
t.Error(`New("1.2.3.0") != FromInts(1, 2, 3, 0)`)
}
}
// func TestContains(t *testing.T) {
// a := FromInts(1, 2, 3)
// b := FromInts(1, 2)
// c := FromInts(1)
// empty := FromInts()
// bad := FromInts(1, 9)
// if !a.Contains(b) {
// t.Error(a.String(), "should contain", b.String())
// }
// if !a.Contains(c) {
// t.Error(a.String(), "should contain", c.String())
// }
// if a.Contains(empty) {
// t.Error(a.String(), "should not contain an empty version")
// }
// if a.Contains(bad) {
// t.Error(a.String(), "should not contain", bad.String())
// }
// }
func TestString(t *testing.T) {
a, _ := New("dog")
if str := a.String(); str != "0" {
t.Error(str, "≠", "0")
}
b, _ := New("4.1.10")
if str := b.String(); str != "4.1.10" {
t.Error(str, "≠", "4.1.10")
}
}
func TestExtraLetters(t *testing.T) {
a, err := New("1.2a")
if err != nil {
t.Error("err should be nil but is", err)
}
b, _ := New("1.2")
if a.Less(b) {
t.Error("1.2a = 1.2")
}
}