13 lines
364 B
Go
13 lines
364 B
Go
package service
|
|
|
|
import "testing"
|
|
|
|
func TestValidatePasswordStrengthBoundaryRules(t *testing.T) {
|
|
t.Run("accepts boundary password with three character classes", func(t *testing.T) {
|
|
err := validatePasswordStrength("Abcd1234", defaultPasswordMinLen, false)
|
|
if err != nil {
|
|
t.Fatalf("expected 8-char password with three classes to pass: %v", err)
|
|
}
|
|
})
|
|
}
|