extended domain validation (#24)

This commit is contained in:
Yura 2021-02-09 15:57:34 +03:00 committed by GitHub
parent d15ed7ffec
commit 6ae7bdc9a3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 18 additions and 6 deletions

View File

@ -17,7 +17,7 @@ var (
}
markdownSymbols = []string{"*", "_", "`", "["}
regCommandName = regexp.MustCompile(
`^https://?[\da-z.-]+\.(retailcrm\.(ru|pro|es)|ecomlogic\.com|simlachat\.(com|ru))/?$`)
`^https://?[\da-z.-]+\.(retailcrm\.(ru|pro|es)|ecomlogic\.com|simla(chat)?\.(com|ru))/?$`)
slashRegex = regexp.MustCompile(`/+$`)
)

View File

@ -54,10 +54,22 @@ func (s *ValidatorSuite) Test_ValidationFails() {
}
func (s *ValidatorSuite) Test_ValidationSuccess() {
domains := []string{
"https://asd.retailcrm.ru",
"https://test.retailcrm.pro",
"https://raisa.retailcrm.es",
"https://blabla.simla.com",
"https://blabla.simla.ru",
"https://blabla.simlachat.com",
"https://blabla.simlachat.ru",
}
for _, domain := range domains {
conn := Connection{
Key: "key",
URL: "https://test.retailcrm.pro",
URL: domain,
}
err := s.engine.Struct(conn)
assert.NoError(s.T(), err, s.getError(err))
}
}