mirror of https://github.com/go-gorm/gorm.git
Fix DeletedAt marshal and unmarshal, close #3693
This commit is contained in:
parent
4009ec5816
commit
a8141b6cc9
|
@ -31,7 +31,7 @@ func (n DeletedAt) MarshalJSON() ([]byte, error) {
|
|||
|
||||
func (n *DeletedAt) UnmarshalJSON(b []byte) error {
|
||||
err := json.Unmarshal(b, &n.Time)
|
||||
if err == nil {
|
||||
if err == nil && !n.Time.IsZero() {
|
||||
n.Valid = true
|
||||
}
|
||||
return err
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
package tests_test
|
||||
|
||||
import (
|
||||
"encoding/json"
|
||||
"errors"
|
||||
"testing"
|
||||
|
||||
|
@ -42,3 +43,14 @@ func TestSoftDelete(t *testing.T) {
|
|||
t.Errorf("Can't find permanently deleted record")
|
||||
}
|
||||
}
|
||||
|
||||
func TestDeletedAtUnMarshal(t *testing.T) {
|
||||
expected := &gorm.Model{}
|
||||
b, _ := json.Marshal(expected)
|
||||
|
||||
result := &gorm.Model{}
|
||||
_ = json.Unmarshal(b, result)
|
||||
if result.DeletedAt != expected.DeletedAt {
|
||||
t.Errorf("Failed, result.DeletedAt: %v is not same as expected.DeletedAt: %v", result.DeletedAt, expected.DeletedAt)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue