-
Notifications
You must be signed in to change notification settings - Fork 0
/
users_test.go
320 lines (311 loc) · 6.43 KB
/
users_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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
package main
import (
"reflect"
"sort"
"testing"
)
func TestUser_sorting(t *testing.T) {
tests := []struct {
name string
users Users
wantFirstUserURL string
wantLastUserURL string
}{
{
"same url",
Users{
&User{URL: "[email protected]:foo/bar"},
&User{URL: "[email protected]:foo/bar"},
},
"[email protected]:foo/bar",
"[email protected]:foo/bar",
},
{
"different url",
Users{
&User{URL: "[email protected]:*"},
&User{URL: "[email protected]:foo/bar"},
&User{URL: "[email protected]:foo/*"},
},
"[email protected]:foo/bar",
"[email protected]:*",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
users := tt.users
sort.Sort(users)
first := users[0]
last := users[len(users)-1]
if !reflect.DeepEqual(first.URL, tt.wantFirstUserURL) {
t.Errorf("sorting first user URL is %v, want %v", first.URL, tt.wantFirstUserURL)
}
if !reflect.DeepEqual(last.URL, tt.wantLastUserURL) {
t.Errorf("sorting last user URL is %v, want %v", last.URL, tt.wantLastUserURL)
}
})
}
}
func TestUser_Hash(t *testing.T) {
type fields struct {
URL string
Name string
Email string
SigningKey string
}
tests := []struct {
name string
fields fields
want string
right bool
}{
{
"same field same hash",
fields{Name: "Mike Wazowski"},
(&User{Name: "Mike Wazowski"}).Hash(),
true,
},
{
"different field other hash",
fields{Name: "Mike Wazowski"},
(&User{Name: "James Phil. Sullivan"}).Hash(),
false,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
u := &User{
URL: tt.fields.URL,
Name: tt.fields.Name,
Email: tt.fields.Email,
SigningKey: tt.fields.SigningKey,
}
if got := u.Hash(); (got != tt.want) == tt.right {
t.Errorf("Hash() = %v, want %v", got, tt.want)
}
})
}
}
func TestUsers_FindByURL(t *testing.T) {
type args struct {
url string
}
tests := []struct {
name string
us Users
args args
want *User
}{
{
"completely match",
Users{
&User{URL: "[email protected]:tsuty/git-user.git"},
},
args{"[email protected]:tsuty/git-user.git"},
&User{URL: "[email protected]:tsuty/git-user.git"},
},
{
"wild card match",
Users{
&User{URL: "[email protected]:tsuty/*"},
},
args{"[email protected]:tsuty/git-user.git"},
&User{URL: "[email protected]:tsuty/*"},
},
{
"wild card but completely match",
Users{
&User{URL: "[email protected]:tsuty/git-user.git", Name: "Completely"},
&User{URL: "[email protected]:tsuty/*", Name: "Wild"},
},
args{"[email protected]:tsuty/git-user.git"},
&User{URL: "[email protected]:tsuty/git-user.git", Name: "Completely"},
},
{
"not found",
Users{
&User{URL: "[email protected]:tsuty/git-user.git", Name: "Completely"},
&User{URL: "[email protected]:tsuty/*", Name: "Wild"},
},
args{"[email protected]:fooo/git-user.git"},
nil,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := tt.us.TakeByURL(tt.args.url); !reflect.DeepEqual(got, tt.want) {
t.Errorf("TakeByURL() = %v, want %v", got, tt.want)
}
})
}
}
func TestUsers_Set(t *testing.T) {
type args struct {
url string
name string
email string
signingkey string
}
tests := []struct {
name string
us Users
args args
want *User
len int
}{
{
"append user",
Users{},
args{
url: "[email protected]:tsuty/git-user.git",
name: "tsuty",
email: "[email protected]",
},
&User{
Name: "tsuty",
Email: "[email protected]",
URL: "[email protected]:tsuty/git-user.git",
},
1,
},
{
"update user",
Users{
&User{
Name: "tsuty",
Email: "[email protected]",
URL: "[email protected]:tsuty/git-user.git",
},
},
args{
url: "[email protected]:tsuty/git-user.git",
name: "tsuty",
email: "[email protected]",
},
&User{
Name: "tsuty",
Email: "[email protected]",
URL: "[email protected]:tsuty/git-user.git",
},
1,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := tt.us.Set(tt.args.url, tt.args.name, tt.args.email, tt.args.signingkey); !reflect.DeepEqual(got, tt.want) {
t.Errorf("Set() = %v, want %v", got, tt.want)
}
if got := len(tt.us); got != tt.len {
t.Errorf("len(Users) = %v, want %v", got, tt.len)
}
})
}
}
func TestUsers_TakeByHash(t *testing.T) {
exampleUser := &User{
Name: "tsuty",
Email: "[email protected]",
URL: "[email protected]:tsuty/git-user.git",
}
exampleHash := exampleUser.Hash()
type args struct {
hash string
}
tests := []struct {
name string
us Users
args args
want *User
}{
{
"match",
Users{
exampleUser,
&User{
Name: "Mike Wazowski",
Email: "[email protected]",
URL: "[email protected]:monsters/inc.git",
},
},
args{hash: exampleHash},
exampleUser,
},
{
"no match",
Users{
exampleUser,
&User{
Name: "Mike Wazowski",
Email: "[email protected]",
URL: "[email protected]:monsters/inc.git",
},
},
args{hash: "abcedfg"},
nil,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := tt.us.TakeByHash(tt.args.hash); !reflect.DeepEqual(got, tt.want) {
t.Errorf("TakeByHash() = %v, want %v", got, tt.want)
}
})
}
}
func TestUsers_Delete(t *testing.T) {
exampleUser := &User{
Name: "tsuty",
Email: "[email protected]",
URL: "[email protected]:tsuty/git-user.git",
}
exampleHash := exampleUser.Hash()
type args struct {
hash string
}
tests := []struct {
name string
us Users
args args
want *User
wantLength int
}{
{
"match",
Users{
exampleUser,
&User{
Name: "Mike Wazowski",
Email: "[email protected]",
URL: "[email protected]:monsters/inc.git",
},
},
args{hash: exampleHash},
exampleUser,
1,
},
{
"no match",
Users{
exampleUser,
&User{
Name: "Mike Wazowski",
Email: "[email protected]",
URL: "[email protected]:monsters/inc.git",
},
},
args{hash: "abcedfg"},
nil,
2,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := tt.us.Delete(tt.args.hash); !reflect.DeepEqual(got, tt.want) {
t.Errorf("Delete() = %v, want %v", got, tt.want)
}
if got := len(tt.us); got != tt.wantLength {
t.Errorf("Len(Users) = %v, want %v", got, tt.want)
}
})
}
}