-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenvironmentinfo_test.go
113 lines (105 loc) · 1.96 KB
/
environmentinfo_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
package buildinfo
import (
"testing"
"time"
"gotest.tools/v3/assert"
)
func TestEnvironmentInfoClone(t *testing.T) {
have := &EnvironmentInfo{
User: "1",
Host: "2",
Date: time.Unix(0, 0),
}
got := have.Clone()
got.User = "01"
got.Host = "02"
got.Date = time.Unix(3, 0)
assert.Assert(t, got.User != have.User)
assert.Assert(t, got.Host != have.Host)
assert.Assert(t, got.Date != have.Date)
}
func TestEnvironmentInfoEqual(t *testing.T) {
type testCase struct {
haveLeft, haveRight *EnvironmentInfo
want bool
}
testCases := map[string]testCase{
"nil": {
want: true,
},
// "default": {
// haveLeft: NewEnvironmentInfo(),
// haveRight: NewEnvironmentInfo(),
// want: true,
// },
"custom": {
haveLeft: &EnvironmentInfo{
User: "1",
Host: "2",
Date: time.Unix(0, 0),
},
haveRight: &EnvironmentInfo{
User: "1",
Host: "2",
Date: time.Unix(0, 0),
},
want: true,
},
"left nil": {
haveRight: &EnvironmentInfo{
User: "1",
Host: "2",
Date: time.Unix(0, 0),
},
},
"right nil": {
haveLeft: &EnvironmentInfo{
User: "1",
Host: "2",
Date: time.Unix(0, 0),
},
},
"user mismatch": {
haveLeft: &EnvironmentInfo{
User: "1",
Host: "2",
Date: time.Unix(0, 0),
},
haveRight: &EnvironmentInfo{
User: "0",
Host: "2",
Date: time.Unix(0, 0),
},
},
"host mismatch": {
haveLeft: &EnvironmentInfo{
User: "1",
Host: "2",
Date: time.Unix(0, 0),
},
haveRight: &EnvironmentInfo{
User: "1",
Host: "0",
Date: time.Unix(0, 0),
},
},
"date mismatch": {
haveLeft: &EnvironmentInfo{
User: "1",
Host: "2",
Date: time.Unix(0, 0),
},
haveRight: &EnvironmentInfo{
User: "1",
Host: "2",
Date: time.Unix(1, 0),
},
},
}
for ctx, tc := range testCases {
t.Run(ctx, func(t *testing.T) {
got := tc.haveLeft.Equal(tc.haveRight)
assert.Equal(t, got, tc.want)
})
}
}