2022-10-17 10:51:59 +00:00
|
|
|
package validator
|
|
|
|
|
|
|
|
// Test constants.
|
|
|
|
const (
|
|
|
|
testInvalid = "invalid"
|
|
|
|
testJWTSecret = "a_secret"
|
|
|
|
testLDAPBaseDN = "base_dn"
|
|
|
|
testLDAPPassword = "password"
|
|
|
|
testLDAPURL = "ldap://ldap"
|
|
|
|
testLDAPUser = "user"
|
|
|
|
testEncryptionKey = "a_not_so_secure_encryption_key"
|
|
|
|
)
|
2022-10-21 08:41:33 +00:00
|
|
|
|
|
|
|
const (
|
2023-01-12 10:57:44 +00:00
|
|
|
exampleDotCom = "example.com"
|
2022-10-21 08:41:33 +00:00
|
|
|
)
|