added test for issue with custom type and null
This commit is contained in:
parent
925202e742
commit
867ea3e227
|
@ -134,13 +134,42 @@ func (s *SliceType) ToDB() ([]byte, error) {
|
|||
return json.Marshal(s)
|
||||
}
|
||||
|
||||
type Nullable struct {
|
||||
Data string
|
||||
}
|
||||
|
||||
func (s *Nullable) FromDB(data []byte) error {
|
||||
|
||||
if data == nil {
|
||||
return nil
|
||||
}
|
||||
|
||||
fmt.Println("--sd", data)
|
||||
|
||||
*s = Nullable{
|
||||
Data: string(data),
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
func (s *Nullable) ToDB() ([]byte, error) {
|
||||
if s == nil {
|
||||
return nil, nil
|
||||
}
|
||||
|
||||
return []byte(s.Data), nil
|
||||
}
|
||||
|
||||
type ConvStruct struct {
|
||||
Conv ConvString
|
||||
Conv2 *ConvString
|
||||
Cfg1 ConvConfig
|
||||
Cfg2 *ConvConfig `xorm:"TEXT"`
|
||||
Cfg3 core.Conversion `xorm:"BLOB"`
|
||||
Slice SliceType
|
||||
Conv ConvString
|
||||
Conv2 *ConvString
|
||||
Cfg1 ConvConfig
|
||||
Cfg2 *ConvConfig `xorm:"TEXT"`
|
||||
Cfg3 core.Conversion `xorm:"BLOB"`
|
||||
Slice SliceType
|
||||
Nullable1 *Nullable `xorm:"null"`
|
||||
Nullable2 *Nullable `xorm:"null"`
|
||||
}
|
||||
|
||||
func (c *ConvStruct) BeforeSet(name string, cell Cell) {
|
||||
|
@ -163,8 +192,10 @@ func TestConversion(t *testing.T) {
|
|||
c.Cfg2 = &ConvConfig{"xx", 2}
|
||||
c.Cfg3 = &ConvConfig{"zz", 3}
|
||||
c.Slice = []*ConvConfig{{"yy", 4}, {"ff", 5}}
|
||||
c.Nullable1 = &Nullable{Data: "test"}
|
||||
c.Nullable2 = nil
|
||||
|
||||
_, err := testEngine.Insert(c)
|
||||
_, err := testEngine.Nullable("nullable2").Insert(c)
|
||||
assert.NoError(t, err)
|
||||
|
||||
c1 := new(ConvStruct)
|
||||
|
@ -182,6 +213,9 @@ func TestConversion(t *testing.T) {
|
|||
assert.EqualValues(t, 2, len(c1.Slice))
|
||||
assert.EqualValues(t, *c.Slice[0], *c1.Slice[0])
|
||||
assert.EqualValues(t, *c.Slice[1], *c1.Slice[1])
|
||||
assert.NotNil(t, c1.Nullable1)
|
||||
assert.Equal(t, c1.Nullable1.Data, "test")
|
||||
assert.Nil(t, c1.Nullable2)
|
||||
}
|
||||
|
||||
type MyInt int
|
||||
|
|
Loading…
Reference in New Issue