41 lines
871 B
Go
41 lines
871 B
Go
package credsutil
|
|
|
|
import (
|
|
"strings"
|
|
"testing"
|
|
)
|
|
|
|
func TestRandomAlphaNumeric(t *testing.T) {
|
|
s, err := RandomAlphaNumeric(10, true)
|
|
if err != nil {
|
|
t.Fatalf("Unexpected error: %s", err)
|
|
}
|
|
if len(s) != 10 {
|
|
t.Fatalf("Unexpected length of string, expected 10, got string: %s", s)
|
|
}
|
|
|
|
s, err = RandomAlphaNumeric(20, true)
|
|
if err != nil {
|
|
t.Fatalf("Unexpected error: %s", err)
|
|
}
|
|
if len(s) != 20 {
|
|
t.Fatalf("Unexpected length of string, expected 20, got string: %s", s)
|
|
}
|
|
|
|
if !strings.Contains(s, reqStr) {
|
|
t.Fatalf("Expected %s to contain %s", s, reqStr)
|
|
}
|
|
|
|
s, err = RandomAlphaNumeric(20, false)
|
|
if err != nil {
|
|
t.Fatalf("Unexpected error: %s", err)
|
|
}
|
|
if len(s) != 20 {
|
|
t.Fatalf("Unexpected length of string, expected 20, got string: %s", s)
|
|
}
|
|
|
|
if strings.Contains(s, reqStr) {
|
|
t.Fatalf("Expected %s not to contain %s", s, reqStr)
|
|
}
|
|
}
|