-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrandstring_test.go
More file actions
540 lines (438 loc) · 12.1 KB
/
randstring_test.go
File metadata and controls
540 lines (438 loc) · 12.1 KB
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
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
package randstring
import (
"strings"
"testing"
)
func TestRandStringValid(t *testing.T) {
// given
expectedLength := 8
r := New(expectedLength)
// when
str, err := r.Build()
// then
if err != nil {
t.Errorf("An error has been returned [%s]", err)
}
if len(str) != 8 {
t.Errorf("Expecting a string with length [%d], actual [%d]", expectedLength, len(str))
}
}
func TestRandStringValidNonASCII(t *testing.T) {
// given
chars := []rune("ÅÄÖ")
expectedLength := 8
r := New(expectedLength)
r.Capitals(true)
r.SetCapitalChars(chars)
r.Lowercase(false)
r.Digits(false)
r.Specials(false)
// when
str, err := r.Build()
// then
if err != nil {
t.Errorf("An error has been returned [%s]", err)
}
if (strings.Count(str, "") - 1) != 8 {
t.Errorf("Expecting a string with length [%d], actual [%d] string [%s]", expectedLength, (strings.Count(str, "") - 1), str)
}
}
func TestRandStringValidCapitals(t *testing.T) {
// given
expectedLength := 8
r := New(expectedLength)
// when
str, err := r.Build()
// then
if err != nil {
t.Errorf("An error has been returned [%s]", err)
}
if len(str) != 8 {
t.Errorf("Expecting a string with length [%d], actual [%d]", expectedLength, len(str))
}
if !strings.ContainsAny(str, string(r.CapitalChars)) {
t.Errorf("Expecting the string to contain at least one capital, actual string [%s]", str)
}
}
func TestRandStringValidDigits(t *testing.T) {
// given
expectedLength := 8
r := New(expectedLength)
// when
str, err := r.Build()
// then
if err != nil {
t.Errorf("An error has been returned [%s]", err)
}
if len(str) != 8 {
t.Errorf("Expecting a string with length [%d], actual [%d]", expectedLength, len(str))
}
if !strings.ContainsAny(str, string(r.DigitChars)) {
t.Errorf("Expecting the string to contain at least one digit, actual string [%s]", str)
}
}
func TestRandStringValidLowercase(t *testing.T) {
// given
expectedLength := 8
r := New(expectedLength)
// when
str, err := r.Build()
// then
if err != nil {
t.Errorf("An error has been returned [%s]", err)
}
if len(str) != 8 {
t.Errorf("Expecting a string with length [%d], actual [%d]", expectedLength, len(str))
}
if !strings.ContainsAny(str, string(r.LowercaseChars)) {
t.Errorf("Expecting the string to contain at least one lowercase, actual string [%s]", str)
}
}
func TestRandStringValidSpecialChars(t *testing.T) {
// given
expectedLength := 8
r := New(expectedLength)
// when
str, err := r.Build()
// then
if err != nil {
t.Errorf("An error has been returned [%s]", err)
}
if len(str) != 8 {
t.Errorf("Expecting a string with length [%d], actual [%d]", expectedLength, len(str))
}
if !strings.ContainsAny(str, string(r.SpecialChars)) {
t.Errorf("Expecting the string to contain at least one special character, actual string [%s]", str)
}
}
func TestRandStringValidNoCapitals(t *testing.T) {
// given
expectedLength := 8
r := New(expectedLength)
r.Capitals(false)
// when
str, err := r.Build()
// then
if err != nil {
t.Errorf("An error has been returned [%s]", err)
}
if len(str) != 8 {
t.Errorf("Expecting a string with length [%d], actual [%d]", expectedLength, len(str))
}
if strings.ContainsAny(str, string(r.CapitalChars)) {
t.Errorf("Expecting the string to contain no capitals, actual string [%s]", str)
}
}
func TestRandStringValidNoLowercase(t *testing.T) {
// given
expectedLength := 8
r := New(expectedLength)
r.Lowercase(false)
// when
str, err := r.Build()
// then
if err != nil {
t.Errorf("An error has been returned [%s]", err)
}
if len(str) != 8 {
t.Errorf("Expecting a string with length [%d], actual [%d]", expectedLength, len(str))
}
if strings.ContainsAny(str, string(r.LowercaseChars)) {
t.Errorf("Expecting the string to contain no lowercase characters, actual string [%s]", str)
}
}
func TestRandStringValidNoDigits(t *testing.T) {
// given
expectedLength := 8
r := New(expectedLength)
r.Digits(false)
// when
str, err := r.Build()
// then
if err != nil {
t.Errorf("An error has been returned [%s]", err)
}
if len(str) != 8 {
t.Errorf("Expecting a string with length [%d], actual [%d]", expectedLength, len(str))
}
if strings.ContainsAny(str, string(r.DigitChars)) {
t.Errorf("Expecting the string to contain no digit characters, actual string [%s]", str)
}
}
func TestRandStringValidNoSpecialCharacters(t *testing.T) {
// given
expectedLength := 8
r := New(expectedLength)
r.Specials(false)
// when
str, err := r.Build()
// then
if err != nil {
t.Errorf("An error has been returned [%s]", err)
}
if len(str) != 8 {
t.Errorf("Expecting a string with length [%d], actual [%d]", expectedLength, len(str))
}
if strings.ContainsAny(str, string(r.SpecialChars)) {
t.Errorf("Expecting the string to contain no special characters, actual string [%s]", str)
}
}
func TestRandStringValidOnlyCapitals(t *testing.T) {
// given
chars := []rune("ABCD")
expectedLength := 8
r := New(expectedLength)
r.Capitals(true)
r.SetCapitalChars(chars)
r.Lowercase(false)
r.Digits(false)
r.Specials(false)
// when
str, err := r.Build()
// then
if err != nil {
t.Errorf("An error has been returned [%s]", err)
}
if len(str) != 8 {
t.Errorf("Expecting a string with length [%d], actual [%d]", expectedLength, len(str))
}
if !strings.ContainsAny(str, string(r.CapitalChars)) {
t.Errorf("Expecting the string to contain only capital letter characters, actual string [%s]", str)
}
if strings.ContainsAny(str, string(r.LowercaseChars)) {
t.Errorf("Expecting the string to contain only capital letter characters, actual string [%s]", str)
}
if strings.ContainsAny(str, string(r.DigitChars)) {
t.Errorf("Expecting the string to contain only capital letter characters, actual string [%s]", str)
}
if strings.ContainsAny(str, string(r.SpecialChars)) {
t.Errorf("Expecting the string to contain only capital letter characters, actual string [%s]", str)
}
}
func TestRandStringValidOnlyLowercase(t *testing.T) {
// given
chars := []rune("abcd")
expectedLength := 8
r := New(expectedLength)
r.Capitals(false)
r.Lowercase(true)
r.SetLowercaseChars(chars)
r.Digits(false)
r.Specials(false)
// when
str, err := r.Build()
// then
if err != nil {
t.Errorf("An error has been returned [%s]", err)
}
if len(str) != 8 {
t.Errorf("Expecting a string with length [%d], actual [%d]", expectedLength, len(str))
}
if strings.ContainsAny(str, string(r.CapitalChars)) {
t.Errorf("Expecting the string to contain only lowercase characters, actual string [%s]", str)
}
if !strings.ContainsAny(str, string(r.LowercaseChars)) {
t.Errorf("Expecting the string to contain only lowercase characters, actual string [%s]", str)
}
if strings.ContainsAny(str, string(r.DigitChars)) {
t.Errorf("Expecting the string to contain only lowercase characters, actual string [%s]", str)
}
if strings.ContainsAny(str, string(r.SpecialChars)) {
t.Errorf("Expecting the string to contain only capital characters, actual string [%s]", str)
}
}
func TestRandStringValidOnlyDigits(t *testing.T) {
// given
expectedLength := 8
r := New(expectedLength)
r.Capitals(false)
r.Lowercase(false)
r.Digits(true)
r.SetDigitChars("1234")
r.Specials(false)
// when
str, err := r.Build()
// then
if err != nil {
t.Errorf("An error has been returned [%s]", err)
}
if len(str) != 8 {
t.Errorf("Expecting a string with length [%d], actual [%d]", expectedLength, len(str))
}
if strings.ContainsAny(str, string(r.CapitalChars)) {
t.Errorf("Expecting the string to contain only digit characters, actual string [%s]", str)
}
if strings.ContainsAny(str, string(r.LowercaseChars)) {
t.Errorf("Expecting the string to contain only digit characters, actual string [%s]", str)
}
if !strings.ContainsAny(str, string(r.DigitChars)) {
t.Errorf("Expecting the string to contain only digit characters, actual string [%s]", str)
}
if strings.ContainsAny(str, string(r.SpecialChars)) {
t.Errorf("Expecting the string to contain only digit characters, actual string [%s]", str)
}
}
func TestRandStringValidOnlySpecialCharacters(t *testing.T) {
// given
expectedLength := 8
r := New(expectedLength)
r.Capitals(false)
r.Lowercase(false)
r.Digits(false)
r.Specials(true)
r.SetSpecialChars("$%")
// when
str, err := r.Build()
// then
if err != nil {
t.Errorf("An error has been returned [%s]", err)
}
if len(str) != 8 {
t.Errorf("Expecting a string with length [%d], actual [%d]", expectedLength, len(str))
}
if strings.ContainsAny(str, string(r.CapitalChars)) {
t.Errorf("Expecting the string to contain only special characters, actual string [%s]", str)
}
if strings.ContainsAny(str, string(r.LowercaseChars)) {
t.Errorf("Expecting the string to contain only special characters, actual string [%s]", str)
}
if strings.ContainsAny(str, string(r.DigitChars)) {
t.Errorf("Expecting the string to contain only special characters, actual string [%s]", str)
}
if !strings.ContainsAny(str, string(r.SpecialChars)) {
t.Errorf("Expecting the string to contain only special characters, actual string [%s]", str)
}
}
func TestRandStringValidPrefix(t *testing.T) {
// given
prefix := []rune("Prefix-")
length := 8
r := New(length)
r.SetPrefix(prefix)
expectedLength := length + len(r.Prefix)
// when
str, err := r.Build()
// then
if err != nil {
t.Errorf("An error has been returned [%s]", err)
}
if len(str) != expectedLength {
t.Errorf("Expecting a string with length [%d], actual [%d]", expectedLength, len(str))
}
if !strings.Contains(str, string(r.Prefix)) {
t.Errorf("Expecting the string to contain the prefix [%s] , actual string [%s]", string(r.Prefix), str)
}
}
func TestRandStringValidPosfix(t *testing.T) {
// given
posfix := []rune("-Posfix")
length := 8
r := New(length)
r.SetPosfix(posfix)
expectedLength := length + len(r.Posfix)
// when
str, err := r.Build()
// then
if err != nil {
t.Errorf("An error has been returned [%s]", err)
}
if len(str) != expectedLength {
t.Errorf("Expecting a string with length [%d], actual [%d]", expectedLength, len(str))
}
if !strings.Contains(str, string(r.Posfix)) {
t.Errorf("Expecting the string to contain the posfix [%s] , actual string [%s]", string(r.Posfix), str)
}
}
func TestRandStringValidPrefixPosfix(t *testing.T) {
// given
length := 8
prefix := []rune("Prefix-")
posfix := []rune("-Posfix")
r := New(length)
r.SetPrefix(prefix)
r.SetPosfix(posfix)
expectedLength := len(r.Prefix) + length + len(r.Posfix)
// when
str, err := r.Build()
// then
if err != nil {
t.Errorf("An error has been returned [%s]", err)
}
if len(str) != expectedLength {
t.Errorf("Expecting a string with length [%d], actual [%d]", expectedLength, len(str))
}
if !strings.Contains(str, string(r.Prefix)) {
t.Errorf("Expecting the string to contain the prefix [%s] , actual string [%s]", string(r.Prefix), str)
}
if !strings.Contains(str, string(r.Posfix)) {
t.Errorf("Expecting the string to contain the posfix [%s] , actual string [%s]", string(r.Posfix), str)
}
}
func TestRandStringInvalidRestrictionLength(t *testing.T) {
// given
r := New(3)
// when
_, err := r.Build()
// then
if err == nil {
t.Errorf("Expecting an error")
}
}
func TestRandStringInvalidRestrictionNoCapitalChars(t *testing.T) {
// given
var emptyList []rune
r := RandomStr{
Length: 8,
CapitalsFlag: true,
CapitalChars: emptyList,
}
// when
_, err := r.Build()
// then
if err == nil {
t.Errorf("Expecting error")
}
}
func TestRandStringInvalidRestrictionNoLowercaseChars(t *testing.T) {
// given
var emptyList []rune
r := RandomStr{
Length: 8,
LowercaseFlag: true,
LowercaseChars: emptyList,
}
// when
_, err := r.Build()
// then
if err == nil {
t.Errorf("Expecting error")
}
}
func TestRandStringInvalidRestrictionNoDigitChars(t *testing.T) {
// given
r := RandomStr{
Length: 8,
DigitsFlag: true,
DigitChars: "",
}
// when
_, err := r.Build()
// then
if err == nil {
t.Errorf("Expecting error")
}
}
func TestRandStringInvalidRestrictionNoSpecialChars(t *testing.T) {
// given
r := RandomStr{
Length: 8,
SpecialsFlag: true,
SpecialChars: "",
}
// when
_, err := r.Build()
// then
if err == nil {
t.Errorf("Expecting error")
}
}