зеркало из https://github.com/github/oauth2_proxy.git
Ignore spaces in authorized emails list
This commit is contained in:
Родитель
beebf4dff9
Коммит
dd4642813b
|
@ -53,7 +53,8 @@ func (um *UserMap) LoadAuthenticatedEmailsFile() {
|
|||
}
|
||||
updated := make(map[string]bool)
|
||||
for _, r := range records {
|
||||
updated[strings.ToLower(r[0])] = true
|
||||
address := strings.ToLower(strings.TrimSpace(r[0]))
|
||||
updated[address] = true
|
||||
}
|
||||
atomic.StorePointer(&um.m, unsafe.Pointer(&updated))
|
||||
}
|
||||
|
|
|
@ -147,3 +147,16 @@ func TestValidatorComparisonsAreCaseInsensitive(t *testing.T) {
|
|||
t.Error("validated domains are not lower-cased")
|
||||
}
|
||||
}
|
||||
|
||||
func TestValidatorIgnoreSpacesInAuthEmails(t *testing.T) {
|
||||
vt := NewValidatorTest(t)
|
||||
defer vt.TearDown()
|
||||
|
||||
vt.WriteEmails(t, []string{" foo.bar@example.com "})
|
||||
domains := []string(nil)
|
||||
validator := vt.NewValidator(domains, nil)
|
||||
|
||||
if !validator("foo.bar@example.com") {
|
||||
t.Error("email should validate")
|
||||
}
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче