-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain_test.go
131 lines (113 loc) · 2.62 KB
/
main_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
package main
import (
"fmt"
"testing"
)
func TestGeneratePassphrase(t *testing.T) {
profile := "guest"
passphrase := "secret"
site := Site{
Host: "google.com",
MinimumLength: 6,
MaximumLength: 18,
SpecialCharacters: " !@#$%^&*()_+-=<>,./|\\",
NumberOfSpecialCharacters: 2,
NumberOfDigits: 2,
NumberOfUpperCase: 1,
PseudoSalt: "",
}
i := 0
expected := "Ce\\41ae|dc001da138"
for i = 0; i < 2; i++ {
b := site.generatePassphrase(profile, passphrase, site.PseudoSalt)
actual := fmt.Sprintf("%s", string(b))
if actual != expected {
t.FailNow()
}
}
}
func TestContainsDigits(t *testing.T) {
expected := true
actual := containsDigits([]byte("blah0blah2"), 2)
if actual != expected {
t.FailNow()
}
expected = false
actual = containsDigits([]byte("blah0blah"), 2)
if actual != expected {
t.FailNow()
}
expected = true
actual = containsDigits([]byte("blah0blah12"), 2)
if actual != expected {
t.FailNow()
}
}
func TestContainsUppercase(t *testing.T) {
expected := true
actual := containsUppercase([]byte("Blah0Blah2"), 2)
if actual != expected {
t.FailNow()
}
expected = false
actual = containsUppercase([]byte("Blah0blah"), 2)
if actual != expected {
t.FailNow()
}
expected = true
actual = containsUppercase([]byte("Blah0BLaH12"), 2)
if actual != expected {
t.FailNow()
}
}
func TestContainsSpecialCharacters(t *testing.T) {
special := "~!@#$%^&*()_+-= []{};':\",./<>?\\|"
expected := true
actual := containsSpecialCharacters([]byte("Blah!Blah&"), special, 2)
if actual != expected {
t.FailNow()
}
expected = false
actual = containsSpecialCharacters([]byte("Blah!blah"), special, 2)
if actual != expected {
t.FailNow()
}
expected = true
actual = containsSpecialCharacters([]byte("Blah!BLa l."), special, 2)
if actual != expected {
t.FailNow()
}
special = " "
expected = true
actual = containsSpecialCharacters([]byte("Blah BLa l "), special, 2)
if actual != expected {
t.FailNow()
}
}
func TestLength(t *testing.T) {
expected := true
actual := validateLength([]byte("eightormore"), 8, -1)
if actual != expected {
t.FailNow()
}
expected = true
actual = validateLength([]byte("eighttoten"), 8, 10)
if actual != expected {
t.FailNow()
}
expected = false
actual = validateLength([]byte("eighttoten----"), 8, 10)
if actual != expected {
t.FailNow()
}
expected = true
actual = validateLength([]byte("maxof8--"), -1, 8)
if actual != expected {
t.FailNow()
}
expected = false
actual = validateLength([]byte("ei"), 8, -1)
if actual != expected {
t.FailNow()
}
}