-
Notifications
You must be signed in to change notification settings - Fork 1
/
pw_test.go
159 lines (124 loc) · 3.19 KB
/
pw_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
package pw
import (
"strings"
"testing"
)
func contains(chars string, password string) bool {
for _, char := range strings.Split(chars, "") {
if strings.Contains(password, char) {
return true
}
}
return false
}
// containsAll checks if password contains all chars in the charset
func containsAll(password, charset string) bool {
for _, char := range strings.Split(charset, "") {
if !strings.Contains(password, char) {
return false
}
}
return true
}
func TestDefaultNewPassword(t *testing.T) {
l := 100
p := NewPassword(l)
if len(p) != l {
t.Errorf("expected password of length %v, got %v", l, len(p))
}
if !contains(SpecialChars, p) {
t.Errorf("should contain special characters")
}
if !contains(UpperChars, p) {
t.Errorf("should contain upper characters")
}
if !contains(LowerChars, p) {
t.Errorf("should contain lower characters")
}
if !contains(NumberChars, p) {
t.Errorf("should contain number characters")
}
}
func TestUpperCaseOnlyNewPassword(t *testing.T) {
l := 100
p := NewPassword(l, WithUpperCase())
if len(p) != l {
t.Errorf("expected password of length %v, got %v", l, len(p))
}
if !contains(p, UpperChars) {
t.Errorf("should contain upper characters")
}
if contains(p, SpecialChars) {
t.Errorf("should not contain special characters")
}
if contains(p, LowerChars) {
t.Errorf("should not contain lower characters")
}
if contains(p, NumberChars) {
t.Errorf("should not contain number characters")
}
}
func TestLowerCaseOnlyNewPassword(t *testing.T) {
l := 100
p := NewPassword(l, WithLowerCase())
if len(p) != l {
t.Errorf("expected password of length %v, got %v", l, len(p))
}
if !contains(p, LowerChars) {
t.Errorf("should contain lower characters")
}
if contains(p, SpecialChars) {
t.Errorf("should not contain special characters")
}
if contains(p, UpperChars) {
t.Errorf("should not contain upper characters")
}
if contains(p, NumberChars) {
t.Errorf("should not contain number characters")
}
}
func TestNumberOnlyPassword(t *testing.T) {
l := 100
p := NewPassword(l, WithNumbers())
if len(p) != l {
t.Errorf("expected password of length %v, got %v", l, len(p))
}
if !contains(p, NumberChars) {
t.Errorf("should contain number characters")
}
if contains(p, SpecialChars) {
t.Errorf("should not contain special characters")
}
if contains(p, LowerChars) {
t.Errorf("should not contain lower characters")
}
if contains(p, UpperChars) {
t.Errorf("should not contain upper characters")
}
}
func TestSpecialCharOnlyPassword(t *testing.T) {
l := 100
p := NewPassword(l, WithSpecial())
if len(p) != l {
t.Errorf("expected password of length %v, got %v", l, len(p))
}
if !contains(p, SpecialChars) {
t.Errorf("should contain special characters")
}
if contains(p, NumberChars) {
t.Errorf("should not contain number characters")
}
if contains(p, LowerChars) {
t.Errorf("should not contain lower characters")
}
if contains(p, UpperChars) {
t.Errorf("should not contain upper characters")
}
}
func TestDistribution(t *testing.T) {
const charset = "12"
pass := randomFromChars(100, charset)
if !containsAll(pass, charset) {
t.Errorf("should contain all the chars from charset %q\n", charset)
}
}