-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpassword_validator_test.go
69 lines (58 loc) · 1.35 KB
/
password_validator_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
// Copyright 2021 Hyperscale. All rights reserved.
// Use of this source code is governed by a MIT
// license that can be found in the LICENSE file.
package validator
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestPasswordValidatorWithBadType(t *testing.T) {
v := NewPasswordValidator(Password{})
assert.EqualError(t, v.Validate(123), "invalid \"int\" type given. String expected")
}
func TestPasswordValidatorWithGoodPassword(t *testing.T) {
v := NewPasswordValidator(Password{
Min: 6,
Max: 12,
})
for _, password := range []string{
"Azerty@1",
"A-ef546gfd&",
} {
assert.Nil(t, v.Validate(password))
}
}
func TestPasswordValidatorWithBadPassword(t *testing.T) {
v := NewPasswordValidator(Password{
Min: 6,
Max: 12,
})
for _, item := range []struct {
password string
err string
}{
{
password: "bad",
err: "the password is less than 6 characters long",
},
{
password: "badfdsfsdffdd",
err: "the password is more than 12 characters long",
},
{
password: "Azerty@",
err: "the password must have at least one numeric character",
},
} {
assert.EqualError(t, v.Validate(item.password), item.err)
}
}
func BenchmarkPasswordValidator(b *testing.B) {
v := NewPasswordValidator(Password{
Min: 6,
Max: 12,
})
for i := 0; i < b.N; i++ {
v.Validate("A-ef546gfd&")
}
}