Add command validation on update (#7742)
Этот коммит содержится в:
коммит произвёл
Chris
родитель
3cbacb6858
Коммит
443a880fbd
@@ -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) {
|
||||
|
||||
Ссылка в новой задаче
Block a user