Add command validation on update (#7742)

Этот коммит содержится в:
Joram Wilander
2017-10-30 13:14:17 -04:00
коммит произвёл Chris
родитель 3cbacb6858
Коммит 443a880fbd
2 изменённых файлов: 10 добавлений и 0 удалений

Просмотреть файл

@@ -138,6 +138,10 @@ func (s SqlCommandStore) Update(cmd *model.Command) store.StoreChannel {
return store.Do(func(result *store.StoreResult) {
cmd.UpdateAt = model.GetMillis()
if result.Err = cmd.IsValid(); result.Err != nil {
return
}
if _, err := s.GetMaster().Update(cmd); err != nil {
result.Err = model.NewAppError("SqlCommandStore.Update", "store.sql_command.save.update.app_error", nil, "id="+cmd.Id+", "+err.Error(), http.StatusInternalServerError)
} else {

Просмотреть файл

@@ -221,6 +221,12 @@ func testCommandStoreUpdate(t *testing.T, ss store.Store) {
if r2 := <-ss.Command().Update(o1); r2.Err != nil {
t.Fatal(r2.Err)
}
o1.URL = "junk"
if r2 := <-ss.Command().Update(o1); r2.Err == nil {
t.Fatal("should have failed - bad URL")
}
}
func testCommandCount(t *testing.T, ss store.Store) {