diff --git a/core/config.go b/core/config.go index 9f89266..14922f8 100644 --- a/core/config.go +++ b/core/config.go @@ -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(`/+$`) ) diff --git a/core/validator_test.go b/core/validator_test.go index 11def19..76f3db4 100644 --- a/core/validator_test.go +++ b/core/validator_test.go @@ -54,10 +54,22 @@ func (s *ValidatorSuite) Test_ValidationFails() { } func (s *ValidatorSuite) Test_ValidationSuccess() { - conn := Connection{ - Key: "key", - URL: "https://test.retailcrm.pro", + 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: domain, + } + err := s.engine.Struct(conn) + assert.NoError(s.T(), err, s.getError(err)) } - err := s.engine.Struct(conn) - assert.NoError(s.T(), err, s.getError(err)) }