2021-01-16 16:16:26 +03:00
|
|
|
package json_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"strings"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/goccy/go-json"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestCoverFloat32(t *testing.T) {
|
|
|
|
type structFloat32 struct {
|
|
|
|
A float32 `json:"a"`
|
|
|
|
}
|
2021-01-19 14:41:14 +03:00
|
|
|
type structFloat32OmitEmpty struct {
|
|
|
|
A float32 `json:"a,omitempty"`
|
|
|
|
}
|
|
|
|
type structFloat32String struct {
|
|
|
|
A float32 `json:"a,string"`
|
|
|
|
}
|
|
|
|
|
2021-01-16 16:16:26 +03:00
|
|
|
type structFloat32Ptr struct {
|
|
|
|
A *float32 `json:"a"`
|
|
|
|
}
|
2021-01-19 14:41:14 +03:00
|
|
|
type structFloat32PtrOmitEmpty struct {
|
|
|
|
A *float32 `json:"a,omitempty"`
|
|
|
|
}
|
|
|
|
type structFloat32PtrString struct {
|
|
|
|
A *float32 `json:"a,string"`
|
|
|
|
}
|
2021-01-16 16:16:26 +03:00
|
|
|
|
|
|
|
tests := []struct {
|
|
|
|
name string
|
|
|
|
expected string
|
|
|
|
indentExpected string
|
|
|
|
data interface{}
|
|
|
|
}{
|
2021-01-19 14:41:14 +03:00
|
|
|
// HeadFloat32Zero
|
2021-01-16 16:16:26 +03:00
|
|
|
{
|
|
|
|
name: "HeadFloat32Zero",
|
|
|
|
expected: `{"a":0}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"a": 0
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
A float32 `json:"a"`
|
|
|
|
}{},
|
|
|
|
},
|
2021-01-19 14:41:14 +03:00
|
|
|
{
|
|
|
|
name: "HeadFloat32ZeroOmitEmpty",
|
|
|
|
expected: `{}`,
|
|
|
|
indentExpected: `
|
|
|
|
{}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
A float32 `json:"a,omitempty"`
|
|
|
|
}{},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "HeadFloat32ZeroString",
|
|
|
|
expected: `{"a":"0"}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"a": "0"
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
A float32 `json:"a,string"`
|
|
|
|
}{},
|
|
|
|
},
|
|
|
|
|
|
|
|
// HeadFloat32
|
2021-01-16 16:16:26 +03:00
|
|
|
{
|
|
|
|
name: "HeadFloat32",
|
|
|
|
expected: `{"a":1}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"a": 1
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
A float32 `json:"a"`
|
|
|
|
}{A: 1},
|
|
|
|
},
|
2021-01-19 14:41:14 +03:00
|
|
|
{
|
|
|
|
name: "HeadFloat32OmitEmpty",
|
|
|
|
expected: `{"a":1}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"a": 1
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
A float32 `json:"a,omitempty"`
|
|
|
|
}{A: 1},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "HeadFloat32String",
|
|
|
|
expected: `{"a":"1"}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"a": "1"
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
A float32 `json:"a,string"`
|
|
|
|
}{A: 1},
|
|
|
|
},
|
|
|
|
|
|
|
|
// HeadFloat32Ptr
|
2021-01-16 16:16:26 +03:00
|
|
|
{
|
|
|
|
name: "HeadFloat32Ptr",
|
|
|
|
expected: `{"a":1}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"a": 1
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
A *float32 `json:"a"`
|
|
|
|
}{A: float32ptr(1)},
|
|
|
|
},
|
2021-01-19 14:41:14 +03:00
|
|
|
{
|
|
|
|
name: "HeadFloat32PtrOmitEmpty",
|
|
|
|
expected: `{"a":1}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"a": 1
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
A *float32 `json:"a,omitempty"`
|
|
|
|
}{A: float32ptr(1)},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "HeadFloat32PtrString",
|
|
|
|
expected: `{"a":"1"}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"a": "1"
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
A *float32 `json:"a,string"`
|
|
|
|
}{A: float32ptr(1)},
|
|
|
|
},
|
|
|
|
|
|
|
|
// HeadFloat32PtrNil
|
2021-01-16 16:16:26 +03:00
|
|
|
{
|
|
|
|
name: "HeadFloat32PtrNil",
|
|
|
|
expected: `{"a":null}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"a": null
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
A *float32 `json:"a"`
|
|
|
|
}{A: nil},
|
|
|
|
},
|
2021-01-19 14:41:14 +03:00
|
|
|
{
|
|
|
|
name: "HeadFloat32PtrNilOmitEmpty",
|
|
|
|
expected: `{}`,
|
|
|
|
indentExpected: `
|
|
|
|
{}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
A *float32 `json:"a,omitempty"`
|
|
|
|
}{A: nil},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "HeadFloat32PtrNilString",
|
|
|
|
expected: `{"a":null}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"a": null
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
A *float32 `json:"a,string"`
|
|
|
|
}{A: nil},
|
|
|
|
},
|
|
|
|
|
|
|
|
// PtrHeadFloat32Zero
|
2021-01-16 16:16:26 +03:00
|
|
|
{
|
|
|
|
name: "PtrHeadFloat32Zero",
|
|
|
|
expected: `{"a":0}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"a": 0
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: &struct {
|
|
|
|
A float32 `json:"a"`
|
|
|
|
}{},
|
|
|
|
},
|
2021-01-19 14:41:14 +03:00
|
|
|
{
|
|
|
|
name: "PtrHeadFloat32ZeroOmitEmpty",
|
|
|
|
expected: `{}`,
|
|
|
|
indentExpected: `
|
|
|
|
{}
|
|
|
|
`,
|
|
|
|
data: &struct {
|
|
|
|
A float32 `json:"a,omitempty"`
|
|
|
|
}{},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "PtrHeadFloat32ZeroString",
|
|
|
|
expected: `{"a":"0"}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"a": "0"
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: &struct {
|
|
|
|
A float32 `json:"a,string"`
|
|
|
|
}{},
|
|
|
|
},
|
|
|
|
|
|
|
|
// PtrHeadFloat32
|
2021-01-16 16:16:26 +03:00
|
|
|
{
|
|
|
|
name: "PtrHeadFloat32",
|
|
|
|
expected: `{"a":1}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"a": 1
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: &struct {
|
|
|
|
A float32 `json:"a"`
|
|
|
|
}{A: 1},
|
|
|
|
},
|
2021-01-19 14:41:14 +03:00
|
|
|
{
|
|
|
|
name: "PtrHeadFloat32OmitEmpty",
|
|
|
|
expected: `{"a":1}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"a": 1
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: &struct {
|
|
|
|
A float32 `json:"a,omitempty"`
|
|
|
|
}{A: 1},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "PtrHeadFloat32String",
|
|
|
|
expected: `{"a":"1"}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"a": "1"
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: &struct {
|
|
|
|
A float32 `json:"a,string"`
|
|
|
|
}{A: 1},
|
|
|
|
},
|
|
|
|
|
|
|
|
// PtrHeadFloat32Ptr
|
2021-01-16 16:16:26 +03:00
|
|
|
{
|
|
|
|
name: "PtrHeadFloat32Ptr",
|
|
|
|
expected: `{"a":1}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"a": 1
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: &struct {
|
|
|
|
A *float32 `json:"a"`
|
|
|
|
}{A: float32ptr(1)},
|
|
|
|
},
|
2021-01-19 14:41:14 +03:00
|
|
|
{
|
|
|
|
name: "PtrHeadFloat32PtrOmitEmpty",
|
|
|
|
expected: `{"a":1}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"a": 1
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: &struct {
|
|
|
|
A *float32 `json:"a,omitempty"`
|
|
|
|
}{A: float32ptr(1)},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "PtrHeadFloat32PtrString",
|
|
|
|
expected: `{"a":"1"}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"a": "1"
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: &struct {
|
|
|
|
A *float32 `json:"a,string"`
|
|
|
|
}{A: float32ptr(1)},
|
|
|
|
},
|
|
|
|
|
|
|
|
// PtrHeadFloat32PtrNil
|
2021-01-16 16:16:26 +03:00
|
|
|
{
|
|
|
|
name: "PtrHeadFloat32PtrNil",
|
|
|
|
expected: `{"a":null}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"a": null
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: &struct {
|
|
|
|
A *float32 `json:"a"`
|
|
|
|
}{A: nil},
|
|
|
|
},
|
2021-01-19 14:41:14 +03:00
|
|
|
{
|
|
|
|
name: "PtrHeadFloat32PtrNilOmitEmpty",
|
|
|
|
expected: `{}`,
|
|
|
|
indentExpected: `
|
|
|
|
{}
|
|
|
|
`,
|
|
|
|
data: &struct {
|
|
|
|
A *float32 `json:"a,omitempty"`
|
|
|
|
}{A: nil},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "PtrHeadFloat32PtrNilString",
|
|
|
|
expected: `{"a":null}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"a": null
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: &struct {
|
|
|
|
A *float32 `json:"a,string"`
|
|
|
|
}{A: nil},
|
|
|
|
},
|
|
|
|
|
|
|
|
// PtrHeadFloat32Nil
|
2021-01-16 16:16:26 +03:00
|
|
|
{
|
|
|
|
name: "PtrHeadFloat32Nil",
|
|
|
|
expected: `null`,
|
|
|
|
indentExpected: `
|
|
|
|
null
|
|
|
|
`,
|
|
|
|
data: (*struct {
|
|
|
|
A *float32 `json:"a"`
|
|
|
|
})(nil),
|
|
|
|
},
|
2021-01-19 14:41:14 +03:00
|
|
|
{
|
|
|
|
name: "PtrHeadFloat32NilOmitEmpty",
|
|
|
|
expected: `null`,
|
|
|
|
indentExpected: `
|
|
|
|
null
|
|
|
|
`,
|
|
|
|
data: (*struct {
|
|
|
|
A *float32 `json:"a,omitempty"`
|
|
|
|
})(nil),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "PtrHeadFloat32NilString",
|
|
|
|
expected: `null`,
|
|
|
|
indentExpected: `
|
|
|
|
null
|
|
|
|
`,
|
|
|
|
data: (*struct {
|
|
|
|
A *float32 `json:"a,string"`
|
|
|
|
})(nil),
|
|
|
|
},
|
|
|
|
|
|
|
|
// HeadFloat32ZeroMultiFields
|
2021-01-16 16:16:26 +03:00
|
|
|
{
|
|
|
|
name: "HeadFloat32ZeroMultiFields",
|
|
|
|
expected: `{"a":0,"b":0}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"a": 0,
|
|
|
|
"b": 0
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
A float32 `json:"a"`
|
|
|
|
B float32 `json:"b"`
|
|
|
|
}{},
|
|
|
|
},
|
2021-01-19 14:41:14 +03:00
|
|
|
{
|
|
|
|
name: "HeadFloat32ZeroMultiFieldsOmitEmpty",
|
|
|
|
expected: `{}`,
|
|
|
|
indentExpected: `
|
|
|
|
{}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
A float32 `json:"a,omitempty"`
|
|
|
|
B float32 `json:"b,omitempty"`
|
|
|
|
}{},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "HeadFloat32ZeroMultiFields",
|
|
|
|
expected: `{"a":"0","b":"0"}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"a": "0",
|
|
|
|
"b": "0"
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
A float32 `json:"a,string"`
|
|
|
|
B float32 `json:"b,string"`
|
|
|
|
}{},
|
|
|
|
},
|
|
|
|
|
|
|
|
// HeadFloat32MultiFields
|
2021-01-16 16:16:26 +03:00
|
|
|
{
|
|
|
|
name: "HeadFloat32MultiFields",
|
|
|
|
expected: `{"a":1,"b":2}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"a": 1,
|
|
|
|
"b": 2
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
A float32 `json:"a"`
|
|
|
|
B float32 `json:"b"`
|
|
|
|
}{A: 1, B: 2},
|
|
|
|
},
|
|
|
|
{
|
2021-01-19 14:41:14 +03:00
|
|
|
name: "HeadFloat32MultiFieldsOmitEmpty",
|
2021-01-16 16:16:26 +03:00
|
|
|
expected: `{"a":1,"b":2}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"a": 1,
|
|
|
|
"b": 2
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
2021-01-19 14:41:14 +03:00
|
|
|
A float32 `json:"a,omitempty"`
|
|
|
|
B float32 `json:"b,omitempty"`
|
|
|
|
}{A: 1, B: 2},
|
2021-01-16 16:16:26 +03:00
|
|
|
},
|
|
|
|
{
|
2021-01-19 14:41:14 +03:00
|
|
|
name: "HeadFloat32MultiFieldsString",
|
|
|
|
expected: `{"a":"1","b":"2"}`,
|
2021-01-16 16:16:26 +03:00
|
|
|
indentExpected: `
|
|
|
|
{
|
2021-01-19 14:41:14 +03:00
|
|
|
"a": "1",
|
|
|
|
"b": "2"
|
2021-01-16 16:16:26 +03:00
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
2021-01-19 14:41:14 +03:00
|
|
|
A float32 `json:"a,string"`
|
|
|
|
B float32 `json:"b,string"`
|
|
|
|
}{A: 1, B: 2},
|
2021-01-16 16:16:26 +03:00
|
|
|
},
|
2021-01-19 14:41:14 +03:00
|
|
|
|
|
|
|
// HeadFloat32PtrMultiFields
|
2021-01-16 16:16:26 +03:00
|
|
|
{
|
2021-01-19 14:41:14 +03:00
|
|
|
name: "HeadFloat32PtrMultiFields",
|
|
|
|
expected: `{"a":1,"b":2}`,
|
2021-01-16 16:16:26 +03:00
|
|
|
indentExpected: `
|
|
|
|
{
|
2021-01-19 14:41:14 +03:00
|
|
|
"a": 1,
|
|
|
|
"b": 2
|
2021-01-16 16:16:26 +03:00
|
|
|
}
|
|
|
|
`,
|
2021-01-19 14:41:14 +03:00
|
|
|
data: struct {
|
|
|
|
A *float32 `json:"a"`
|
|
|
|
B *float32 `json:"b"`
|
|
|
|
}{A: float32ptr(1), B: float32ptr(2)},
|
2021-01-16 16:16:26 +03:00
|
|
|
},
|
|
|
|
{
|
2021-01-19 14:41:14 +03:00
|
|
|
name: "HeadFloat32PtrMultiFieldsOmitEmpty",
|
2021-01-16 16:16:26 +03:00
|
|
|
expected: `{"a":1,"b":2}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"a": 1,
|
|
|
|
"b": 2
|
|
|
|
}
|
|
|
|
`,
|
2021-01-19 14:41:14 +03:00
|
|
|
data: struct {
|
|
|
|
A *float32 `json:"a,omitempty"`
|
|
|
|
B *float32 `json:"b,omitempty"`
|
|
|
|
}{A: float32ptr(1), B: float32ptr(2)},
|
2021-01-16 16:16:26 +03:00
|
|
|
},
|
|
|
|
{
|
2021-01-19 14:41:14 +03:00
|
|
|
name: "HeadFloat32PtrMultiFieldsString",
|
|
|
|
expected: `{"a":"1","b":"2"}`,
|
2021-01-16 16:16:26 +03:00
|
|
|
indentExpected: `
|
|
|
|
{
|
2021-01-19 14:41:14 +03:00
|
|
|
"a": "1",
|
|
|
|
"b": "2"
|
2021-01-16 16:16:26 +03:00
|
|
|
}
|
|
|
|
`,
|
2021-01-19 14:41:14 +03:00
|
|
|
data: struct {
|
|
|
|
A *float32 `json:"a,string"`
|
|
|
|
B *float32 `json:"b,string"`
|
2021-01-16 16:16:26 +03:00
|
|
|
}{A: float32ptr(1), B: float32ptr(2)},
|
|
|
|
},
|
2021-01-19 14:41:14 +03:00
|
|
|
|
|
|
|
// HeadFloat32PtrNilMultiFields
|
2021-01-16 16:16:26 +03:00
|
|
|
{
|
2021-01-19 14:41:14 +03:00
|
|
|
name: "HeadFloat32PtrNilMultiFields",
|
2021-01-16 16:16:26 +03:00
|
|
|
expected: `{"a":null,"b":null}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"a": null,
|
|
|
|
"b": null
|
|
|
|
}
|
|
|
|
`,
|
2021-01-19 14:41:14 +03:00
|
|
|
data: struct {
|
2021-01-16 16:16:26 +03:00
|
|
|
A *float32 `json:"a"`
|
|
|
|
B *float32 `json:"b"`
|
|
|
|
}{A: nil, B: nil},
|
|
|
|
},
|
|
|
|
{
|
2021-01-19 14:41:14 +03:00
|
|
|
name: "HeadFloat32PtrNilMultiFieldsOmitEmpty",
|
|
|
|
expected: `{}`,
|
2021-01-16 16:16:26 +03:00
|
|
|
indentExpected: `
|
2021-01-19 14:41:14 +03:00
|
|
|
{}
|
2021-01-16 16:16:26 +03:00
|
|
|
`,
|
2021-01-19 14:41:14 +03:00
|
|
|
data: struct {
|
|
|
|
A *float32 `json:"a,omitempty"`
|
|
|
|
B *float32 `json:"b,omitempty"`
|
|
|
|
}{A: nil, B: nil},
|
2021-01-16 16:16:26 +03:00
|
|
|
},
|
|
|
|
{
|
2021-01-19 14:41:14 +03:00
|
|
|
name: "HeadFloat32PtrNilMultiFieldsString",
|
|
|
|
expected: `{"a":null,"b":null}`,
|
2021-01-16 16:16:26 +03:00
|
|
|
indentExpected: `
|
|
|
|
{
|
2021-01-19 14:41:14 +03:00
|
|
|
"a": null,
|
|
|
|
"b": null
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
A *float32 `json:"a,string"`
|
|
|
|
B *float32 `json:"b,string"`
|
|
|
|
}{A: nil, B: nil},
|
|
|
|
},
|
|
|
|
|
|
|
|
// PtrHeadFloat32ZeroMultiFields
|
|
|
|
{
|
|
|
|
name: "PtrHeadFloat32ZeroMultiFields",
|
|
|
|
expected: `{"a":0,"b":0}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"a": 0,
|
|
|
|
"b": 0
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: &struct {
|
|
|
|
A float32 `json:"a"`
|
|
|
|
B float32 `json:"b"`
|
|
|
|
}{},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "PtrHeadFloat32ZeroMultiFieldsOmitEmpty",
|
|
|
|
expected: `{}`,
|
|
|
|
indentExpected: `
|
|
|
|
{}
|
|
|
|
`,
|
|
|
|
data: &struct {
|
|
|
|
A float32 `json:"a,omitempty"`
|
|
|
|
B float32 `json:"b,omitempty"`
|
|
|
|
}{},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "PtrHeadFloat32ZeroMultiFieldsString",
|
|
|
|
expected: `{"a":"0","b":"0"}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"a": "0",
|
|
|
|
"b": "0"
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: &struct {
|
|
|
|
A float32 `json:"a,string"`
|
|
|
|
B float32 `json:"b,string"`
|
|
|
|
}{},
|
|
|
|
},
|
|
|
|
|
|
|
|
// PtrHeadFloat32MultiFields
|
|
|
|
{
|
|
|
|
name: "PtrHeadFloat32MultiFields",
|
|
|
|
expected: `{"a":1,"b":2}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"a": 1,
|
|
|
|
"b": 2
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: &struct {
|
|
|
|
A float32 `json:"a"`
|
|
|
|
B float32 `json:"b"`
|
|
|
|
}{A: 1, B: 2},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "PtrHeadFloat32MultiFieldsOmitEmpty",
|
|
|
|
expected: `{"a":1,"b":2}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"a": 1,
|
|
|
|
"b": 2
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: &struct {
|
|
|
|
A float32 `json:"a,omitempty"`
|
|
|
|
B float32 `json:"b,omitempty"`
|
|
|
|
}{A: 1, B: 2},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "PtrHeadFloat32MultiFieldsString",
|
|
|
|
expected: `{"a":"1","b":"2"}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"a": "1",
|
|
|
|
"b": "2"
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: &struct {
|
|
|
|
A float32 `json:"a,string"`
|
|
|
|
B float32 `json:"b,string"`
|
|
|
|
}{A: 1, B: 2},
|
|
|
|
},
|
|
|
|
|
|
|
|
// PtrHeadFloat32PtrMultiFields
|
|
|
|
{
|
|
|
|
name: "PtrHeadFloat32PtrMultiFields",
|
|
|
|
expected: `{"a":1,"b":2}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"a": 1,
|
|
|
|
"b": 2
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: &struct {
|
|
|
|
A *float32 `json:"a"`
|
|
|
|
B *float32 `json:"b"`
|
|
|
|
}{A: float32ptr(1), B: float32ptr(2)},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "PtrHeadFloat32PtrMultiFieldsOmitEmpty",
|
|
|
|
expected: `{"a":1,"b":2}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"a": 1,
|
|
|
|
"b": 2
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: &struct {
|
|
|
|
A *float32 `json:"a,omitempty"`
|
|
|
|
B *float32 `json:"b,omitempty"`
|
|
|
|
}{A: float32ptr(1), B: float32ptr(2)},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "PtrHeadFloat32PtrMultiFieldsString",
|
|
|
|
expected: `{"a":"1","b":"2"}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"a": "1",
|
|
|
|
"b": "2"
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: &struct {
|
|
|
|
A *float32 `json:"a,string"`
|
|
|
|
B *float32 `json:"b,string"`
|
|
|
|
}{A: float32ptr(1), B: float32ptr(2)},
|
|
|
|
},
|
|
|
|
|
|
|
|
// PtrHeadFloat32PtrNilMultiFields
|
|
|
|
{
|
|
|
|
name: "PtrHeadFloat32PtrNilMultiFields",
|
|
|
|
expected: `{"a":null,"b":null}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"a": null,
|
|
|
|
"b": null
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: &struct {
|
|
|
|
A *float32 `json:"a"`
|
|
|
|
B *float32 `json:"b"`
|
|
|
|
}{A: nil, B: nil},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "PtrHeadFloat32PtrNilMultiFieldsOmitEmpty",
|
|
|
|
expected: `{}`,
|
|
|
|
indentExpected: `
|
|
|
|
{}
|
|
|
|
`,
|
|
|
|
data: &struct {
|
|
|
|
A *float32 `json:"a,omitempty"`
|
|
|
|
B *float32 `json:"b,omitempty"`
|
|
|
|
}{A: nil, B: nil},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "PtrHeadFloat32PtrNilMultiFieldsString",
|
|
|
|
expected: `{"a":null,"b":null}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"a": null,
|
|
|
|
"b": null
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: &struct {
|
|
|
|
A *float32 `json:"a,string"`
|
|
|
|
B *float32 `json:"b,string"`
|
|
|
|
}{A: nil, B: nil},
|
|
|
|
},
|
|
|
|
|
|
|
|
// PtrHeadFloat32NilMultiFields
|
|
|
|
{
|
|
|
|
name: "PtrHeadFloat32NilMultiFields",
|
|
|
|
expected: `null`,
|
|
|
|
indentExpected: `
|
|
|
|
null
|
|
|
|
`,
|
|
|
|
data: (*struct {
|
|
|
|
A *float32 `json:"a"`
|
|
|
|
B *float32 `json:"b"`
|
|
|
|
})(nil),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "PtrHeadFloat32NilMultiFieldsOmitEmpty",
|
|
|
|
expected: `null`,
|
|
|
|
indentExpected: `
|
|
|
|
null
|
|
|
|
`,
|
|
|
|
data: (*struct {
|
|
|
|
A *float32 `json:"a,omitempty"`
|
|
|
|
B *float32 `json:"b,omitempty"`
|
|
|
|
})(nil),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "PtrHeadFloat32NilMultiFieldsString",
|
|
|
|
expected: `null`,
|
|
|
|
indentExpected: `
|
|
|
|
null
|
|
|
|
`,
|
|
|
|
data: (*struct {
|
|
|
|
A *float32 `json:"a,string"`
|
|
|
|
B *float32 `json:"b,string"`
|
|
|
|
})(nil),
|
|
|
|
},
|
|
|
|
|
|
|
|
// HeadFloat32ZeroNotRoot
|
|
|
|
{
|
|
|
|
name: "HeadFloat32ZeroNotRoot",
|
|
|
|
expected: `{"A":{"a":0}}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"A": {
|
|
|
|
"a": 0
|
|
|
|
}
|
|
|
|
}
|
2021-01-16 16:16:26 +03:00
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
A struct {
|
|
|
|
A float32 `json:"a"`
|
|
|
|
}
|
|
|
|
}{},
|
|
|
|
},
|
2021-01-19 14:41:14 +03:00
|
|
|
{
|
|
|
|
name: "HeadFloat32ZeroNotRootOmitEmpty",
|
|
|
|
expected: `{"A":{}}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"A": {}
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
A struct {
|
|
|
|
A float32 `json:"a,omitempty"`
|
|
|
|
}
|
|
|
|
}{},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "HeadFloat32ZeroNotRootString",
|
|
|
|
expected: `{"A":{"a":"0"}}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"A": {
|
|
|
|
"a": "0"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
A struct {
|
|
|
|
A float32 `json:"a,string"`
|
|
|
|
}
|
|
|
|
}{},
|
|
|
|
},
|
|
|
|
|
|
|
|
// HeadFloat32NotRoot
|
2021-01-16 16:16:26 +03:00
|
|
|
{
|
|
|
|
name: "HeadFloat32NotRoot",
|
|
|
|
expected: `{"A":{"a":1}}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"A": {
|
|
|
|
"a": 1
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
A struct {
|
|
|
|
A float32 `json:"a"`
|
|
|
|
}
|
|
|
|
}{A: struct {
|
|
|
|
A float32 `json:"a"`
|
|
|
|
}{A: 1}},
|
|
|
|
},
|
|
|
|
{
|
2021-01-19 14:41:14 +03:00
|
|
|
name: "HeadFloat32NotRootOmitEmpty",
|
2021-01-16 16:16:26 +03:00
|
|
|
expected: `{"A":{"a":1}}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"A": {
|
|
|
|
"a": 1
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
A struct {
|
2021-01-19 14:41:14 +03:00
|
|
|
A float32 `json:"a,omitempty"`
|
2021-01-16 16:16:26 +03:00
|
|
|
}
|
|
|
|
}{A: struct {
|
2021-01-19 14:41:14 +03:00
|
|
|
A float32 `json:"a,omitempty"`
|
|
|
|
}{A: 1}},
|
2021-01-16 16:16:26 +03:00
|
|
|
},
|
|
|
|
{
|
2021-01-19 14:41:14 +03:00
|
|
|
name: "HeadFloat32NotRootString",
|
|
|
|
expected: `{"A":{"a":"1"}}`,
|
2021-01-16 16:16:26 +03:00
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"A": {
|
2021-01-19 14:41:14 +03:00
|
|
|
"a": "1"
|
2021-01-16 16:16:26 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
A struct {
|
2021-01-19 14:41:14 +03:00
|
|
|
A float32 `json:"a,string"`
|
2021-01-16 16:16:26 +03:00
|
|
|
}
|
2021-01-19 14:41:14 +03:00
|
|
|
}{A: struct {
|
|
|
|
A float32 `json:"a,string"`
|
|
|
|
}{A: 1}},
|
2021-01-16 16:16:26 +03:00
|
|
|
},
|
2021-01-19 14:41:14 +03:00
|
|
|
|
|
|
|
// HeadFloat32PtrNotRoot
|
2021-01-16 16:16:26 +03:00
|
|
|
{
|
2021-01-19 14:41:14 +03:00
|
|
|
name: "HeadFloat32PtrNotRoot",
|
|
|
|
expected: `{"A":{"a":1}}`,
|
2021-01-16 16:16:26 +03:00
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"A": {
|
2021-01-19 14:41:14 +03:00
|
|
|
"a": 1
|
2021-01-16 16:16:26 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
2021-01-19 14:41:14 +03:00
|
|
|
A struct {
|
|
|
|
A *float32 `json:"a"`
|
2021-01-16 16:16:26 +03:00
|
|
|
}
|
2021-01-19 14:41:14 +03:00
|
|
|
}{A: struct {
|
|
|
|
A *float32 `json:"a"`
|
|
|
|
}{float32ptr(1)}},
|
2021-01-16 16:16:26 +03:00
|
|
|
},
|
|
|
|
{
|
2021-01-19 14:41:14 +03:00
|
|
|
name: "HeadFloat32PtrNotRootOmitEmpty",
|
2021-01-16 16:16:26 +03:00
|
|
|
expected: `{"A":{"a":1}}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"A": {
|
|
|
|
"a": 1
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
2021-01-19 14:41:14 +03:00
|
|
|
A struct {
|
|
|
|
A *float32 `json:"a,omitempty"`
|
2021-01-16 16:16:26 +03:00
|
|
|
}
|
2021-01-19 14:41:14 +03:00
|
|
|
}{A: struct {
|
|
|
|
A *float32 `json:"a,omitempty"`
|
|
|
|
}{float32ptr(1)}},
|
2021-01-16 16:16:26 +03:00
|
|
|
},
|
|
|
|
{
|
2021-01-19 14:41:14 +03:00
|
|
|
name: "HeadFloat32PtrNotRootString",
|
|
|
|
expected: `{"A":{"a":"1"}}`,
|
2021-01-16 16:16:26 +03:00
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"A": {
|
2021-01-19 14:41:14 +03:00
|
|
|
"a": "1"
|
2021-01-16 16:16:26 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
2021-01-19 14:41:14 +03:00
|
|
|
A struct {
|
|
|
|
A *float32 `json:"a,string"`
|
2021-01-16 16:16:26 +03:00
|
|
|
}
|
2021-01-19 14:41:14 +03:00
|
|
|
}{A: struct {
|
|
|
|
A *float32 `json:"a,string"`
|
|
|
|
}{float32ptr(1)}},
|
2021-01-16 16:16:26 +03:00
|
|
|
},
|
2021-01-19 14:41:14 +03:00
|
|
|
|
|
|
|
// HeadFloat32PtrNilNotRoot
|
2021-01-16 16:16:26 +03:00
|
|
|
{
|
2021-01-19 14:41:14 +03:00
|
|
|
name: "HeadFloat32PtrNilNotRoot",
|
2021-01-16 16:16:26 +03:00
|
|
|
expected: `{"A":{"a":null}}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"A": {
|
|
|
|
"a": null
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`,
|
2021-01-19 14:41:14 +03:00
|
|
|
data: struct {
|
|
|
|
A struct {
|
|
|
|
A *float32 `json:"a"`
|
|
|
|
}
|
|
|
|
}{},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "HeadFloat32PtrNilNotRootOmitEmpty",
|
|
|
|
expected: `{"A":{}}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"A": {}
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
A struct {
|
|
|
|
A *float32 `json:"a,omitempty"`
|
|
|
|
}
|
|
|
|
}{},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "HeadFloat32PtrNilNotRootString",
|
|
|
|
expected: `{"A":{"a":null}}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"A": {
|
|
|
|
"a": null
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
A struct {
|
|
|
|
A *float32 `json:"a,string"`
|
|
|
|
}
|
|
|
|
}{},
|
|
|
|
},
|
|
|
|
|
|
|
|
// PtrHeadFloat32ZeroNotRoot
|
|
|
|
{
|
|
|
|
name: "PtrHeadFloat32ZeroNotRoot",
|
|
|
|
expected: `{"A":{"a":0}}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"A": {
|
|
|
|
"a": 0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
A *struct {
|
|
|
|
A float32 `json:"a"`
|
|
|
|
}
|
|
|
|
}{A: new(struct {
|
|
|
|
A float32 `json:"a"`
|
|
|
|
})},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "PtrHeadFloat32ZeroNotRootOmitEmpty",
|
|
|
|
expected: `{"A":{}}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"A": {}
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
A *struct {
|
|
|
|
A float32 `json:"a,omitempty"`
|
|
|
|
}
|
|
|
|
}{A: new(struct {
|
|
|
|
A float32 `json:"a,omitempty"`
|
|
|
|
})},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "PtrHeadFloat32ZeroNotRootString",
|
|
|
|
expected: `{"A":{"a":"0"}}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"A": {
|
|
|
|
"a": "0"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
A *struct {
|
|
|
|
A float32 `json:"a,string"`
|
|
|
|
}
|
|
|
|
}{A: new(struct {
|
|
|
|
A float32 `json:"a,string"`
|
|
|
|
})},
|
|
|
|
},
|
|
|
|
|
|
|
|
// PtrHeadFloat32NotRoot
|
|
|
|
{
|
|
|
|
name: "PtrHeadFloat32NotRoot",
|
|
|
|
expected: `{"A":{"a":1}}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"A": {
|
|
|
|
"a": 1
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
A *struct {
|
|
|
|
A float32 `json:"a"`
|
|
|
|
}
|
|
|
|
}{A: &(struct {
|
|
|
|
A float32 `json:"a"`
|
|
|
|
}{A: 1})},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "PtrHeadFloat32NotRootOmitEmpty",
|
|
|
|
expected: `{"A":{"a":1}}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"A": {
|
|
|
|
"a": 1
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
A *struct {
|
|
|
|
A float32 `json:"a,omitempty"`
|
|
|
|
}
|
|
|
|
}{A: &(struct {
|
|
|
|
A float32 `json:"a,omitempty"`
|
|
|
|
}{A: 1})},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "PtrHeadFloat32NotRootString",
|
|
|
|
expected: `{"A":{"a":"1"}}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"A": {
|
|
|
|
"a": "1"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
A *struct {
|
|
|
|
A float32 `json:"a,string"`
|
|
|
|
}
|
|
|
|
}{A: &(struct {
|
|
|
|
A float32 `json:"a,string"`
|
|
|
|
}{A: 1})},
|
|
|
|
},
|
|
|
|
|
|
|
|
// PtrHeadFloat32PtrNotRoot
|
|
|
|
{
|
|
|
|
name: "PtrHeadFloat32PtrNotRoot",
|
|
|
|
expected: `{"A":{"a":1}}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"A": {
|
|
|
|
"a": 1
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
A *struct {
|
|
|
|
A *float32 `json:"a"`
|
|
|
|
}
|
|
|
|
}{A: &(struct {
|
|
|
|
A *float32 `json:"a"`
|
|
|
|
}{A: float32ptr(1)})},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "PtrHeadFloat32PtrNotRootOmitEmpty",
|
|
|
|
expected: `{"A":{"a":1}}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"A": {
|
|
|
|
"a": 1
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
A *struct {
|
|
|
|
A *float32 `json:"a,omitempty"`
|
|
|
|
}
|
|
|
|
}{A: &(struct {
|
|
|
|
A *float32 `json:"a,omitempty"`
|
|
|
|
}{A: float32ptr(1)})},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "PtrHeadFloat32PtrNotRootString",
|
|
|
|
expected: `{"A":{"a":"1"}}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"A": {
|
|
|
|
"a": "1"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
A *struct {
|
|
|
|
A *float32 `json:"a,string"`
|
|
|
|
}
|
|
|
|
}{A: &(struct {
|
|
|
|
A *float32 `json:"a,string"`
|
|
|
|
}{A: float32ptr(1)})},
|
|
|
|
},
|
|
|
|
|
|
|
|
// PtrHeadFloat32PtrNilNotRoot
|
|
|
|
{
|
|
|
|
name: "PtrHeadFloat32PtrNilNotRoot",
|
|
|
|
expected: `{"A":{"a":null}}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"A": {
|
|
|
|
"a": null
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
A *struct {
|
|
|
|
A *float32 `json:"a"`
|
|
|
|
}
|
|
|
|
}{A: &(struct {
|
|
|
|
A *float32 `json:"a"`
|
|
|
|
}{A: nil})},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "PtrHeadFloat32PtrNilNotRootOmitEmpty",
|
|
|
|
expected: `{"A":{}}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"A": {}
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
A *struct {
|
|
|
|
A *float32 `json:"a,omitempty"`
|
|
|
|
}
|
|
|
|
}{A: &(struct {
|
|
|
|
A *float32 `json:"a,omitempty"`
|
|
|
|
}{A: nil})},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "PtrHeadFloat32PtrNilNotRootString",
|
|
|
|
expected: `{"A":{"a":null}}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"A": {
|
|
|
|
"a": null
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
A *struct {
|
|
|
|
A *float32 `json:"a,string"`
|
|
|
|
}
|
|
|
|
}{A: &(struct {
|
|
|
|
A *float32 `json:"a,string"`
|
|
|
|
}{A: nil})},
|
|
|
|
},
|
|
|
|
|
|
|
|
// PtrHeadFloat32NilNotRoot
|
|
|
|
{
|
|
|
|
name: "PtrHeadFloat32NilNotRoot",
|
|
|
|
expected: `{"A":null}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"A": null
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
A *struct {
|
|
|
|
A *float32 `json:"a"`
|
|
|
|
}
|
|
|
|
}{A: nil},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "PtrHeadFloat32NilNotRootOmitEmpty",
|
|
|
|
expected: `{}`,
|
|
|
|
indentExpected: `
|
|
|
|
{}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
A *struct {
|
|
|
|
A *float32 `json:"a,omitempty"`
|
|
|
|
} `json:",omitempty"`
|
|
|
|
}{A: nil},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "PtrHeadFloat32NilNotRootString",
|
|
|
|
expected: `{"A":null}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"A": null
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
A *struct {
|
|
|
|
A *float32 `json:"a,string"`
|
|
|
|
} `json:",string"`
|
|
|
|
}{A: nil},
|
|
|
|
},
|
|
|
|
|
|
|
|
// HeadFloat32ZeroMultiFieldsNotRoot
|
|
|
|
{
|
|
|
|
name: "HeadFloat32ZeroMultiFieldsNotRoot",
|
|
|
|
expected: `{"A":{"a":0},"B":{"b":0}}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"A": {
|
|
|
|
"a": 0
|
|
|
|
},
|
|
|
|
"B": {
|
|
|
|
"b": 0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
A struct {
|
|
|
|
A float32 `json:"a"`
|
|
|
|
}
|
|
|
|
B struct {
|
|
|
|
B float32 `json:"b"`
|
|
|
|
}
|
|
|
|
}{},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "HeadFloat32ZeroMultiFieldsNotRootOmitEmpty",
|
|
|
|
expected: `{"A":{},"B":{}}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"A": {},
|
|
|
|
"B": {}
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
A struct {
|
|
|
|
A float32 `json:"a,omitempty"`
|
|
|
|
}
|
|
|
|
B struct {
|
|
|
|
B float32 `json:"b,omitempty"`
|
|
|
|
}
|
|
|
|
}{},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "HeadFloat32ZeroMultiFieldsNotRootString",
|
|
|
|
expected: `{"A":{"a":"0"},"B":{"b":"0"}}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"A": {
|
|
|
|
"a": "0"
|
|
|
|
},
|
|
|
|
"B": {
|
|
|
|
"b": "0"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
A struct {
|
|
|
|
A float32 `json:"a,string"`
|
|
|
|
}
|
|
|
|
B struct {
|
|
|
|
B float32 `json:"b,string"`
|
|
|
|
}
|
|
|
|
}{},
|
|
|
|
},
|
|
|
|
|
|
|
|
// HeadFloat32MultiFieldsNotRoot
|
|
|
|
{
|
|
|
|
name: "HeadFloat32MultiFieldsNotRoot",
|
|
|
|
expected: `{"A":{"a":1},"B":{"b":2}}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"A": {
|
|
|
|
"a": 1
|
|
|
|
},
|
|
|
|
"B": {
|
|
|
|
"b": 2
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
A struct {
|
|
|
|
A float32 `json:"a"`
|
|
|
|
}
|
|
|
|
B struct {
|
|
|
|
B float32 `json:"b"`
|
|
|
|
}
|
|
|
|
}{A: struct {
|
|
|
|
A float32 `json:"a"`
|
|
|
|
}{A: 1}, B: struct {
|
|
|
|
B float32 `json:"b"`
|
|
|
|
}{B: 2}},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "HeadFloat32MultiFieldsNotRootOmitEmpty",
|
|
|
|
expected: `{"A":{"a":1},"B":{"b":2}}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"A": {
|
|
|
|
"a": 1
|
|
|
|
},
|
|
|
|
"B": {
|
|
|
|
"b": 2
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
A struct {
|
|
|
|
A float32 `json:"a,omitempty"`
|
|
|
|
}
|
|
|
|
B struct {
|
|
|
|
B float32 `json:"b,omitempty"`
|
|
|
|
}
|
|
|
|
}{A: struct {
|
|
|
|
A float32 `json:"a,omitempty"`
|
|
|
|
}{A: 1}, B: struct {
|
|
|
|
B float32 `json:"b,omitempty"`
|
|
|
|
}{B: 2}},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "HeadFloat32MultiFieldsNotRootString",
|
|
|
|
expected: `{"A":{"a":"1"},"B":{"b":"2"}}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"A": {
|
|
|
|
"a": "1"
|
|
|
|
},
|
|
|
|
"B": {
|
|
|
|
"b": "2"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
A struct {
|
|
|
|
A float32 `json:"a,string"`
|
|
|
|
}
|
|
|
|
B struct {
|
|
|
|
B float32 `json:"b,string"`
|
|
|
|
}
|
|
|
|
}{A: struct {
|
|
|
|
A float32 `json:"a,string"`
|
|
|
|
}{A: 1}, B: struct {
|
|
|
|
B float32 `json:"b,string"`
|
|
|
|
}{B: 2}},
|
|
|
|
},
|
|
|
|
|
|
|
|
// HeadFloat32PtrMultiFieldsNotRoot
|
|
|
|
{
|
|
|
|
name: "HeadFloat32PtrMultiFieldsNotRoot",
|
|
|
|
expected: `{"A":{"a":1},"B":{"b":2}}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"A": {
|
|
|
|
"a": 1
|
|
|
|
},
|
|
|
|
"B": {
|
|
|
|
"b": 2
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
A struct {
|
|
|
|
A *float32 `json:"a"`
|
|
|
|
}
|
|
|
|
B struct {
|
|
|
|
B *float32 `json:"b"`
|
|
|
|
}
|
|
|
|
}{A: struct {
|
|
|
|
A *float32 `json:"a"`
|
|
|
|
}{A: float32ptr(1)}, B: struct {
|
|
|
|
B *float32 `json:"b"`
|
|
|
|
}{B: float32ptr(2)}},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "HeadFloat32PtrMultiFieldsNotRootOmitEmpty",
|
|
|
|
expected: `{"A":{"a":1},"B":{"b":2}}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"A": {
|
|
|
|
"a": 1
|
|
|
|
},
|
|
|
|
"B": {
|
|
|
|
"b": 2
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
A struct {
|
|
|
|
A *float32 `json:"a,omitempty"`
|
|
|
|
}
|
|
|
|
B struct {
|
|
|
|
B *float32 `json:"b,omitempty"`
|
|
|
|
}
|
|
|
|
}{A: struct {
|
|
|
|
A *float32 `json:"a,omitempty"`
|
|
|
|
}{A: float32ptr(1)}, B: struct {
|
|
|
|
B *float32 `json:"b,omitempty"`
|
|
|
|
}{B: float32ptr(2)}},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "HeadFloat32PtrMultiFieldsNotRootString",
|
|
|
|
expected: `{"A":{"a":"1"},"B":{"b":"2"}}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"A": {
|
|
|
|
"a": "1"
|
|
|
|
},
|
|
|
|
"B": {
|
|
|
|
"b": "2"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
A struct {
|
|
|
|
A *float32 `json:"a,string"`
|
|
|
|
}
|
|
|
|
B struct {
|
|
|
|
B *float32 `json:"b,string"`
|
|
|
|
}
|
|
|
|
}{A: struct {
|
|
|
|
A *float32 `json:"a,string"`
|
|
|
|
}{A: float32ptr(1)}, B: struct {
|
|
|
|
B *float32 `json:"b,string"`
|
|
|
|
}{B: float32ptr(2)}},
|
|
|
|
},
|
|
|
|
|
|
|
|
// HeadFloat32PtrNilMultiFieldsNotRoot
|
|
|
|
{
|
|
|
|
name: "HeadFloat32PtrNilMultiFieldsNotRoot",
|
|
|
|
expected: `{"A":{"a":null},"B":{"b":null}}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"A": {
|
|
|
|
"a": null
|
|
|
|
},
|
|
|
|
"B": {
|
|
|
|
"b": null
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
A struct {
|
|
|
|
A *float32 `json:"a"`
|
|
|
|
}
|
|
|
|
B struct {
|
|
|
|
B *float32 `json:"b"`
|
|
|
|
}
|
|
|
|
}{A: struct {
|
|
|
|
A *float32 `json:"a"`
|
|
|
|
}{A: nil}, B: struct {
|
|
|
|
B *float32 `json:"b"`
|
|
|
|
}{B: nil}},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "HeadFloat32PtrNilMultiFieldsNotRootOmitEmpty",
|
|
|
|
expected: `{"A":{},"B":{}}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"A": {},
|
|
|
|
"B": {}
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
A struct {
|
|
|
|
A *float32 `json:"a,omitempty"`
|
|
|
|
}
|
|
|
|
B struct {
|
|
|
|
B *float32 `json:"b,omitempty"`
|
|
|
|
}
|
|
|
|
}{A: struct {
|
|
|
|
A *float32 `json:"a,omitempty"`
|
|
|
|
}{A: nil}, B: struct {
|
|
|
|
B *float32 `json:"b,omitempty"`
|
|
|
|
}{B: nil}},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "HeadFloat32PtrNilMultiFieldsNotRootString",
|
|
|
|
expected: `{"A":{"a":null},"B":{"b":null}}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"A": {
|
|
|
|
"a": null
|
|
|
|
},
|
|
|
|
"B": {
|
|
|
|
"b": null
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
A struct {
|
|
|
|
A *float32 `json:"a,string"`
|
|
|
|
}
|
|
|
|
B struct {
|
|
|
|
B *float32 `json:"b,string"`
|
|
|
|
}
|
|
|
|
}{A: struct {
|
|
|
|
A *float32 `json:"a,string"`
|
|
|
|
}{A: nil}, B: struct {
|
|
|
|
B *float32 `json:"b,string"`
|
|
|
|
}{B: nil}},
|
|
|
|
},
|
|
|
|
|
|
|
|
// PtrHeadFloat32ZeroMultiFieldsNotRoot
|
|
|
|
{
|
|
|
|
name: "PtrHeadFloat32ZeroMultiFieldsNotRoot",
|
|
|
|
expected: `{"A":{"a":0},"B":{"b":0}}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"A": {
|
|
|
|
"a": 0
|
|
|
|
},
|
|
|
|
"B": {
|
|
|
|
"b": 0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: &struct {
|
|
|
|
A struct {
|
|
|
|
A float32 `json:"a"`
|
2021-01-16 16:16:26 +03:00
|
|
|
}
|
2021-01-19 14:41:14 +03:00
|
|
|
B struct {
|
|
|
|
B float32 `json:"b"`
|
|
|
|
}
|
|
|
|
}{},
|
2021-01-16 16:16:26 +03:00
|
|
|
},
|
|
|
|
{
|
2021-01-19 14:41:14 +03:00
|
|
|
name: "PtrHeadFloat32ZeroMultiFieldsNotRootOmitEmpty",
|
|
|
|
expected: `{"A":{},"B":{}}`,
|
2021-01-16 16:16:26 +03:00
|
|
|
indentExpected: `
|
|
|
|
{
|
2021-01-19 14:41:14 +03:00
|
|
|
"A": {},
|
|
|
|
"B": {}
|
2021-01-16 16:16:26 +03:00
|
|
|
}
|
|
|
|
`,
|
2021-01-19 14:41:14 +03:00
|
|
|
data: &struct {
|
|
|
|
A struct {
|
|
|
|
A float32 `json:"a,omitempty"`
|
2021-01-16 16:16:26 +03:00
|
|
|
}
|
2021-01-19 14:41:14 +03:00
|
|
|
B struct {
|
|
|
|
B float32 `json:"b,omitempty"`
|
|
|
|
}
|
|
|
|
}{},
|
2021-01-16 16:16:26 +03:00
|
|
|
},
|
|
|
|
{
|
2021-01-19 14:41:14 +03:00
|
|
|
name: "PtrHeadFloat32ZeroMultiFieldsNotRootString",
|
|
|
|
expected: `{"A":{"a":"0"},"B":{"b":"0"}}`,
|
2021-01-16 16:16:26 +03:00
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"A": {
|
2021-01-19 14:41:14 +03:00
|
|
|
"a": "0"
|
2021-01-16 16:16:26 +03:00
|
|
|
},
|
|
|
|
"B": {
|
2021-01-19 14:41:14 +03:00
|
|
|
"b": "0"
|
2021-01-16 16:16:26 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
`,
|
2021-01-19 14:41:14 +03:00
|
|
|
data: &struct {
|
2021-01-16 16:16:26 +03:00
|
|
|
A struct {
|
2021-01-19 14:41:14 +03:00
|
|
|
A float32 `json:"a,string"`
|
2021-01-16 16:16:26 +03:00
|
|
|
}
|
|
|
|
B struct {
|
2021-01-19 14:41:14 +03:00
|
|
|
B float32 `json:"b,string"`
|
2021-01-16 16:16:26 +03:00
|
|
|
}
|
|
|
|
}{},
|
|
|
|
},
|
2021-01-19 14:41:14 +03:00
|
|
|
|
|
|
|
// PtrHeadFloat32MultiFieldsNotRoot
|
2021-01-16 16:16:26 +03:00
|
|
|
{
|
2021-01-19 14:41:14 +03:00
|
|
|
name: "PtrHeadFloat32MultiFieldsNotRoot",
|
2021-01-16 16:16:26 +03:00
|
|
|
expected: `{"A":{"a":1},"B":{"b":2}}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"A": {
|
|
|
|
"a": 1
|
|
|
|
},
|
|
|
|
"B": {
|
|
|
|
"b": 2
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`,
|
2021-01-19 14:41:14 +03:00
|
|
|
data: &struct {
|
2021-01-16 16:16:26 +03:00
|
|
|
A struct {
|
|
|
|
A float32 `json:"a"`
|
|
|
|
}
|
|
|
|
B struct {
|
|
|
|
B float32 `json:"b"`
|
|
|
|
}
|
|
|
|
}{A: struct {
|
|
|
|
A float32 `json:"a"`
|
|
|
|
}{A: 1}, B: struct {
|
|
|
|
B float32 `json:"b"`
|
|
|
|
}{B: 2}},
|
|
|
|
},
|
|
|
|
{
|
2021-01-19 14:41:14 +03:00
|
|
|
name: "PtrHeadFloat32MultiFieldsNotRootOmitEmpty",
|
2021-01-16 16:16:26 +03:00
|
|
|
expected: `{"A":{"a":1},"B":{"b":2}}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"A": {
|
|
|
|
"a": 1
|
|
|
|
},
|
|
|
|
"B": {
|
|
|
|
"b": 2
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`,
|
2021-01-19 14:41:14 +03:00
|
|
|
data: &struct {
|
2021-01-16 16:16:26 +03:00
|
|
|
A struct {
|
2021-01-19 14:41:14 +03:00
|
|
|
A float32 `json:"a,omitempty"`
|
2021-01-16 16:16:26 +03:00
|
|
|
}
|
|
|
|
B struct {
|
2021-01-19 14:41:14 +03:00
|
|
|
B float32 `json:"b,omitempty"`
|
2021-01-16 16:16:26 +03:00
|
|
|
}
|
|
|
|
}{A: struct {
|
2021-01-19 14:41:14 +03:00
|
|
|
A float32 `json:"a,omitempty"`
|
|
|
|
}{A: 1}, B: struct {
|
|
|
|
B float32 `json:"b,omitempty"`
|
|
|
|
}{B: 2}},
|
2021-01-16 16:16:26 +03:00
|
|
|
},
|
|
|
|
{
|
2021-01-19 14:41:14 +03:00
|
|
|
name: "PtrHeadFloat32MultiFieldsNotRootString",
|
|
|
|
expected: `{"A":{"a":"1"},"B":{"b":"2"}}`,
|
2021-01-16 16:16:26 +03:00
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"A": {
|
2021-01-19 14:41:14 +03:00
|
|
|
"a": "1"
|
2021-01-16 16:16:26 +03:00
|
|
|
},
|
|
|
|
"B": {
|
2021-01-19 14:41:14 +03:00
|
|
|
"b": "2"
|
2021-01-16 16:16:26 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
`,
|
2021-01-19 14:41:14 +03:00
|
|
|
data: &struct {
|
2021-01-16 16:16:26 +03:00
|
|
|
A struct {
|
2021-01-19 14:41:14 +03:00
|
|
|
A float32 `json:"a,string"`
|
2021-01-16 16:16:26 +03:00
|
|
|
}
|
|
|
|
B struct {
|
2021-01-19 14:41:14 +03:00
|
|
|
B float32 `json:"b,string"`
|
2021-01-16 16:16:26 +03:00
|
|
|
}
|
|
|
|
}{A: struct {
|
2021-01-19 14:41:14 +03:00
|
|
|
A float32 `json:"a,string"`
|
|
|
|
}{A: 1}, B: struct {
|
|
|
|
B float32 `json:"b,string"`
|
|
|
|
}{B: 2}},
|
2021-01-16 16:16:26 +03:00
|
|
|
},
|
2021-01-19 14:41:14 +03:00
|
|
|
|
|
|
|
// PtrHeadFloat32PtrMultiFieldsNotRoot
|
2021-01-16 16:16:26 +03:00
|
|
|
{
|
2021-01-19 14:41:14 +03:00
|
|
|
name: "PtrHeadFloat32PtrMultiFieldsNotRoot",
|
|
|
|
expected: `{"A":{"a":1},"B":{"b":2}}`,
|
2021-01-16 16:16:26 +03:00
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"A": {
|
2021-01-19 14:41:14 +03:00
|
|
|
"a": 1
|
2021-01-16 16:16:26 +03:00
|
|
|
},
|
|
|
|
"B": {
|
2021-01-19 14:41:14 +03:00
|
|
|
"b": 2
|
2021-01-16 16:16:26 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: &struct {
|
2021-01-19 14:41:14 +03:00
|
|
|
A *struct {
|
|
|
|
A *float32 `json:"a"`
|
2021-01-16 16:16:26 +03:00
|
|
|
}
|
2021-01-19 14:41:14 +03:00
|
|
|
B *struct {
|
|
|
|
B *float32 `json:"b"`
|
2021-01-16 16:16:26 +03:00
|
|
|
}
|
2021-01-19 14:41:14 +03:00
|
|
|
}{A: &(struct {
|
|
|
|
A *float32 `json:"a"`
|
|
|
|
}{A: float32ptr(1)}), B: &(struct {
|
|
|
|
B *float32 `json:"b"`
|
|
|
|
}{B: float32ptr(2)})},
|
2021-01-16 16:16:26 +03:00
|
|
|
},
|
|
|
|
{
|
2021-01-19 14:41:14 +03:00
|
|
|
name: "PtrHeadFloat32PtrMultiFieldsNotRootOmitEmpty",
|
2021-01-16 16:16:26 +03:00
|
|
|
expected: `{"A":{"a":1},"B":{"b":2}}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"A": {
|
|
|
|
"a": 1
|
|
|
|
},
|
|
|
|
"B": {
|
|
|
|
"b": 2
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: &struct {
|
2021-01-19 14:41:14 +03:00
|
|
|
A *struct {
|
|
|
|
A *float32 `json:"a,omitempty"`
|
|
|
|
}
|
|
|
|
B *struct {
|
|
|
|
B *float32 `json:"b,omitempty"`
|
|
|
|
}
|
|
|
|
}{A: &(struct {
|
|
|
|
A *float32 `json:"a,omitempty"`
|
|
|
|
}{A: float32ptr(1)}), B: &(struct {
|
|
|
|
B *float32 `json:"b,omitempty"`
|
|
|
|
}{B: float32ptr(2)})},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "PtrHeadFloat32PtrMultiFieldsNotRootString",
|
|
|
|
expected: `{"A":{"a":"1"},"B":{"b":"2"}}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"A": {
|
|
|
|
"a": "1"
|
|
|
|
},
|
|
|
|
"B": {
|
|
|
|
"b": "2"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: &struct {
|
|
|
|
A *struct {
|
|
|
|
A *float32 `json:"a,string"`
|
|
|
|
}
|
|
|
|
B *struct {
|
|
|
|
B *float32 `json:"b,string"`
|
|
|
|
}
|
|
|
|
}{A: &(struct {
|
|
|
|
A *float32 `json:"a,string"`
|
|
|
|
}{A: float32ptr(1)}), B: &(struct {
|
|
|
|
B *float32 `json:"b,string"`
|
|
|
|
}{B: float32ptr(2)})},
|
|
|
|
},
|
|
|
|
|
|
|
|
// PtrHeadFloat32PtrNilMultiFieldsNotRoot
|
|
|
|
{
|
|
|
|
name: "PtrHeadFloat32PtrNilMultiFieldsNotRoot",
|
|
|
|
expected: `{"A":null,"B":null}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"A": null,
|
|
|
|
"B": null
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: &struct {
|
|
|
|
A *struct {
|
|
|
|
A *float32 `json:"a"`
|
|
|
|
}
|
|
|
|
B *struct {
|
|
|
|
B *float32 `json:"b"`
|
|
|
|
}
|
|
|
|
}{A: nil, B: nil},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "PtrHeadFloat32PtrNilMultiFieldsNotRootOmitEmpty",
|
|
|
|
expected: `{}`,
|
|
|
|
indentExpected: `
|
|
|
|
{}
|
|
|
|
`,
|
|
|
|
data: &struct {
|
|
|
|
A *struct {
|
|
|
|
A *float32 `json:"a,omitempty"`
|
|
|
|
} `json:",omitempty"`
|
|
|
|
B *struct {
|
|
|
|
B *float32 `json:"b,omitempty"`
|
|
|
|
} `json:",omitempty"`
|
|
|
|
}{A: nil, B: nil},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "PtrHeadFloat32PtrNilMultiFieldsNotRootString",
|
|
|
|
expected: `{"A":null,"B":null}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"A": null,
|
|
|
|
"B": null
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: &struct {
|
|
|
|
A *struct {
|
|
|
|
A *float32 `json:"a,string"`
|
|
|
|
} `json:",string"`
|
|
|
|
B *struct {
|
|
|
|
B *float32 `json:"b,string"`
|
|
|
|
} `json:",string"`
|
|
|
|
}{A: nil, B: nil},
|
|
|
|
},
|
|
|
|
|
|
|
|
// PtrHeadFloat32NilMultiFieldsNotRoot
|
|
|
|
{
|
|
|
|
name: "PtrHeadFloat32NilMultiFieldsNotRoot",
|
|
|
|
expected: `null`,
|
|
|
|
indentExpected: `
|
|
|
|
null
|
|
|
|
`,
|
|
|
|
data: (*struct {
|
|
|
|
A *struct {
|
|
|
|
A *float32 `json:"a"`
|
|
|
|
}
|
|
|
|
B *struct {
|
|
|
|
B *float32 `json:"b"`
|
|
|
|
}
|
|
|
|
})(nil),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "PtrHeadFloat32NilMultiFieldsNotRootOmitEmpty",
|
|
|
|
expected: `null`,
|
|
|
|
indentExpected: `
|
|
|
|
null
|
|
|
|
`,
|
|
|
|
data: (*struct {
|
|
|
|
A *struct {
|
|
|
|
A *float32 `json:"a,omitempty"`
|
|
|
|
}
|
|
|
|
B *struct {
|
|
|
|
B *float32 `json:"b,omitempty"`
|
|
|
|
}
|
|
|
|
})(nil),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "PtrHeadFloat32NilMultiFieldsNotRootString",
|
|
|
|
expected: `null`,
|
|
|
|
indentExpected: `
|
|
|
|
null
|
|
|
|
`,
|
|
|
|
data: (*struct {
|
|
|
|
A *struct {
|
|
|
|
A *float32 `json:"a,string"`
|
|
|
|
}
|
|
|
|
B *struct {
|
|
|
|
B *float32 `json:"b,string"`
|
|
|
|
}
|
|
|
|
})(nil),
|
|
|
|
},
|
|
|
|
|
|
|
|
// PtrHeadFloat32DoubleMultiFieldsNotRoot
|
|
|
|
{
|
|
|
|
name: "PtrHeadFloat32DoubleMultiFieldsNotRoot",
|
|
|
|
expected: `{"A":{"a":1,"b":2},"B":{"a":3,"b":4}}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"A": {
|
|
|
|
"a": 1,
|
|
|
|
"b": 2
|
|
|
|
},
|
|
|
|
"B": {
|
|
|
|
"a": 3,
|
|
|
|
"b": 4
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: &struct {
|
|
|
|
A *struct {
|
2021-01-16 16:16:26 +03:00
|
|
|
A float32 `json:"a"`
|
2021-01-19 14:41:14 +03:00
|
|
|
B float32 `json:"b"`
|
2021-01-16 16:16:26 +03:00
|
|
|
}
|
2021-01-19 14:41:14 +03:00
|
|
|
B *struct {
|
|
|
|
A float32 `json:"a"`
|
2021-01-16 16:16:26 +03:00
|
|
|
B float32 `json:"b"`
|
|
|
|
}
|
2021-01-19 14:41:14 +03:00
|
|
|
}{A: &(struct {
|
2021-01-16 16:16:26 +03:00
|
|
|
A float32 `json:"a"`
|
|
|
|
B float32 `json:"b"`
|
2021-01-19 14:41:14 +03:00
|
|
|
}{A: 1, B: 2}), B: &(struct {
|
|
|
|
A float32 `json:"a"`
|
|
|
|
B float32 `json:"b"`
|
|
|
|
}{A: 3, B: 4})},
|
2021-01-16 16:16:26 +03:00
|
|
|
},
|
|
|
|
{
|
2021-01-19 14:41:14 +03:00
|
|
|
name: "PtrHeadFloat32DoubleMultiFieldsNotRootOmitEmpty",
|
|
|
|
expected: `{"A":{"a":1,"b":2},"B":{"a":3,"b":4}}`,
|
2021-01-16 16:16:26 +03:00
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"A": {
|
2021-01-19 14:41:14 +03:00
|
|
|
"a": 1,
|
|
|
|
"b": 2
|
|
|
|
},
|
|
|
|
"B": {
|
|
|
|
"a": 3,
|
|
|
|
"b": 4
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: &struct {
|
|
|
|
A *struct {
|
|
|
|
A float32 `json:"a,omitempty"`
|
|
|
|
B float32 `json:"b,omitempty"`
|
|
|
|
}
|
|
|
|
B *struct {
|
|
|
|
A float32 `json:"a,omitempty"`
|
|
|
|
B float32 `json:"b,omitempty"`
|
|
|
|
}
|
|
|
|
}{A: &(struct {
|
|
|
|
A float32 `json:"a,omitempty"`
|
|
|
|
B float32 `json:"b,omitempty"`
|
|
|
|
}{A: 1, B: 2}), B: &(struct {
|
|
|
|
A float32 `json:"a,omitempty"`
|
|
|
|
B float32 `json:"b,omitempty"`
|
|
|
|
}{A: 3, B: 4})},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "PtrHeadFloat32DoubleMultiFieldsNotRootString",
|
|
|
|
expected: `{"A":{"a":"1","b":"2"},"B":{"a":"3","b":"4"}}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"A": {
|
|
|
|
"a": "1",
|
|
|
|
"b": "2"
|
2021-01-16 16:16:26 +03:00
|
|
|
},
|
|
|
|
"B": {
|
2021-01-19 14:41:14 +03:00
|
|
|
"a": "3",
|
|
|
|
"b": "4"
|
2021-01-16 16:16:26 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: &struct {
|
|
|
|
A *struct {
|
2021-01-19 14:41:14 +03:00
|
|
|
A float32 `json:"a,string"`
|
|
|
|
B float32 `json:"b,string"`
|
2021-01-16 16:16:26 +03:00
|
|
|
}
|
|
|
|
B *struct {
|
2021-01-19 14:41:14 +03:00
|
|
|
A float32 `json:"a,string"`
|
|
|
|
B float32 `json:"b,string"`
|
2021-01-16 16:16:26 +03:00
|
|
|
}
|
|
|
|
}{A: &(struct {
|
2021-01-19 14:41:14 +03:00
|
|
|
A float32 `json:"a,string"`
|
|
|
|
B float32 `json:"b,string"`
|
|
|
|
}{A: 1, B: 2}), B: &(struct {
|
|
|
|
A float32 `json:"a,string"`
|
|
|
|
B float32 `json:"b,string"`
|
|
|
|
}{A: 3, B: 4})},
|
2021-01-16 16:16:26 +03:00
|
|
|
},
|
2021-01-19 14:41:14 +03:00
|
|
|
|
|
|
|
// PtrHeadFloat32NilDoubleMultiFieldsNotRoot
|
2021-01-16 16:16:26 +03:00
|
|
|
{
|
2021-01-19 14:41:14 +03:00
|
|
|
name: "PtrHeadFloat32NilDoubleMultiFieldsNotRoot",
|
2021-01-16 16:16:26 +03:00
|
|
|
expected: `{"A":null,"B":null}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"A": null,
|
|
|
|
"B": null
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: &struct {
|
|
|
|
A *struct {
|
2021-01-19 14:41:14 +03:00
|
|
|
A float32 `json:"a"`
|
|
|
|
B float32 `json:"b"`
|
2021-01-16 16:16:26 +03:00
|
|
|
}
|
|
|
|
B *struct {
|
2021-01-19 14:41:14 +03:00
|
|
|
A float32 `json:"a"`
|
|
|
|
B float32 `json:"b"`
|
2021-01-16 16:16:26 +03:00
|
|
|
}
|
|
|
|
}{A: nil, B: nil},
|
|
|
|
},
|
|
|
|
{
|
2021-01-19 14:41:14 +03:00
|
|
|
name: "PtrHeadFloat32NilDoubleMultiFieldsNotRootOmitEmpty",
|
|
|
|
expected: `{}`,
|
2021-01-16 16:16:26 +03:00
|
|
|
indentExpected: `
|
2021-01-19 14:41:14 +03:00
|
|
|
{}
|
2021-01-16 16:16:26 +03:00
|
|
|
`,
|
2021-01-19 14:41:14 +03:00
|
|
|
data: &struct {
|
2021-01-16 16:16:26 +03:00
|
|
|
A *struct {
|
2021-01-19 14:41:14 +03:00
|
|
|
A float32 `json:"a,omitempty"`
|
|
|
|
B float32 `json:"b,omitempty"`
|
|
|
|
} `json:",omitempty"`
|
2021-01-16 16:16:26 +03:00
|
|
|
B *struct {
|
2021-01-19 14:41:14 +03:00
|
|
|
A float32 `json:"a,omitempty"`
|
|
|
|
B float32 `json:"b,omitempty"`
|
|
|
|
} `json:",omitempty"`
|
|
|
|
}{A: nil, B: nil},
|
2021-01-16 16:16:26 +03:00
|
|
|
},
|
|
|
|
{
|
2021-01-19 14:41:14 +03:00
|
|
|
name: "PtrHeadFloat32NilDoubleMultiFieldsNotRootString",
|
|
|
|
expected: `{"A":null,"B":null}`,
|
2021-01-16 16:16:26 +03:00
|
|
|
indentExpected: `
|
|
|
|
{
|
2021-01-19 14:41:14 +03:00
|
|
|
"A": null,
|
|
|
|
"B": null
|
2021-01-16 16:16:26 +03:00
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: &struct {
|
|
|
|
A *struct {
|
2021-01-19 14:41:14 +03:00
|
|
|
A float32 `json:"a,string"`
|
|
|
|
B float32 `json:"b,string"`
|
2021-01-16 16:16:26 +03:00
|
|
|
}
|
|
|
|
B *struct {
|
2021-01-19 14:41:14 +03:00
|
|
|
A float32 `json:"a,string"`
|
|
|
|
B float32 `json:"b,string"`
|
2021-01-16 16:16:26 +03:00
|
|
|
}
|
2021-01-19 14:41:14 +03:00
|
|
|
}{A: nil, B: nil},
|
2021-01-16 16:16:26 +03:00
|
|
|
},
|
2021-01-19 14:41:14 +03:00
|
|
|
|
|
|
|
// PtrHeadFloat32NilDoubleMultiFieldsNotRoot
|
2021-01-16 16:16:26 +03:00
|
|
|
{
|
|
|
|
name: "PtrHeadFloat32NilDoubleMultiFieldsNotRoot",
|
2021-01-19 14:41:14 +03:00
|
|
|
expected: `null`,
|
2021-01-16 16:16:26 +03:00
|
|
|
indentExpected: `
|
2021-01-19 14:41:14 +03:00
|
|
|
null
|
2021-01-16 16:16:26 +03:00
|
|
|
`,
|
2021-01-19 14:41:14 +03:00
|
|
|
data: (*struct {
|
2021-01-16 16:16:26 +03:00
|
|
|
A *struct {
|
|
|
|
A float32 `json:"a"`
|
|
|
|
B float32 `json:"b"`
|
|
|
|
}
|
|
|
|
B *struct {
|
|
|
|
A float32 `json:"a"`
|
|
|
|
B float32 `json:"b"`
|
|
|
|
}
|
2021-01-19 14:41:14 +03:00
|
|
|
})(nil),
|
2021-01-16 16:16:26 +03:00
|
|
|
},
|
|
|
|
{
|
2021-01-19 14:41:14 +03:00
|
|
|
name: "PtrHeadFloat32NilDoubleMultiFieldsNotRootOmitEmpty",
|
2021-01-16 16:16:26 +03:00
|
|
|
expected: `null`,
|
|
|
|
indentExpected: `
|
|
|
|
null
|
|
|
|
`,
|
|
|
|
data: (*struct {
|
|
|
|
A *struct {
|
2021-01-19 14:41:14 +03:00
|
|
|
A float32 `json:"a,omitempty"`
|
|
|
|
B float32 `json:"b,omitempty"`
|
2021-01-16 16:16:26 +03:00
|
|
|
}
|
|
|
|
B *struct {
|
2021-01-19 14:41:14 +03:00
|
|
|
A float32 `json:"a,omitempty"`
|
|
|
|
B float32 `json:"b,omitempty"`
|
|
|
|
}
|
|
|
|
})(nil),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "PtrHeadFloat32NilDoubleMultiFieldsNotRootString",
|
|
|
|
expected: `null`,
|
|
|
|
indentExpected: `
|
|
|
|
null
|
|
|
|
`,
|
|
|
|
data: (*struct {
|
|
|
|
A *struct {
|
|
|
|
A float32 `json:"a,string"`
|
|
|
|
B float32 `json:"b,string"`
|
|
|
|
}
|
|
|
|
B *struct {
|
|
|
|
A float32 `json:"a,string"`
|
|
|
|
B float32 `json:"b,string"`
|
2021-01-16 16:16:26 +03:00
|
|
|
}
|
|
|
|
})(nil),
|
|
|
|
},
|
2021-01-19 14:41:14 +03:00
|
|
|
|
|
|
|
// PtrHeadFloat32PtrDoubleMultiFieldsNotRoot
|
2021-01-16 16:16:26 +03:00
|
|
|
{
|
|
|
|
name: "PtrHeadFloat32PtrDoubleMultiFieldsNotRoot",
|
|
|
|
expected: `{"A":{"a":1,"b":2},"B":{"a":3,"b":4}}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"A": {
|
|
|
|
"a": 1,
|
|
|
|
"b": 2
|
|
|
|
},
|
|
|
|
"B": {
|
|
|
|
"a": 3,
|
|
|
|
"b": 4
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: &struct {
|
|
|
|
A *struct {
|
|
|
|
A *float32 `json:"a"`
|
|
|
|
B *float32 `json:"b"`
|
|
|
|
}
|
|
|
|
B *struct {
|
|
|
|
A *float32 `json:"a"`
|
|
|
|
B *float32 `json:"b"`
|
|
|
|
}
|
|
|
|
}{A: &(struct {
|
|
|
|
A *float32 `json:"a"`
|
|
|
|
B *float32 `json:"b"`
|
|
|
|
}{A: float32ptr(1), B: float32ptr(2)}), B: &(struct {
|
|
|
|
A *float32 `json:"a"`
|
|
|
|
B *float32 `json:"b"`
|
|
|
|
}{A: float32ptr(3), B: float32ptr(4)})},
|
|
|
|
},
|
2021-01-19 14:41:14 +03:00
|
|
|
{
|
|
|
|
name: "PtrHeadFloat32PtrDoubleMultiFieldsNotRootOmitEmpty",
|
|
|
|
expected: `{"A":{"a":1,"b":2},"B":{"a":3,"b":4}}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"A": {
|
|
|
|
"a": 1,
|
|
|
|
"b": 2
|
|
|
|
},
|
|
|
|
"B": {
|
|
|
|
"a": 3,
|
|
|
|
"b": 4
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: &struct {
|
|
|
|
A *struct {
|
|
|
|
A *float32 `json:"a,omitempty"`
|
|
|
|
B *float32 `json:"b,omitempty"`
|
|
|
|
}
|
|
|
|
B *struct {
|
|
|
|
A *float32 `json:"a,omitempty"`
|
|
|
|
B *float32 `json:"b,omitempty"`
|
|
|
|
}
|
|
|
|
}{A: &(struct {
|
|
|
|
A *float32 `json:"a,omitempty"`
|
|
|
|
B *float32 `json:"b,omitempty"`
|
|
|
|
}{A: float32ptr(1), B: float32ptr(2)}), B: &(struct {
|
|
|
|
A *float32 `json:"a,omitempty"`
|
|
|
|
B *float32 `json:"b,omitempty"`
|
|
|
|
}{A: float32ptr(3), B: float32ptr(4)})},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "PtrHeadFloat32PtrDoubleMultiFieldsNotRootString",
|
|
|
|
expected: `{"A":{"a":"1","b":"2"},"B":{"a":"3","b":"4"}}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"A": {
|
|
|
|
"a": "1",
|
|
|
|
"b": "2"
|
|
|
|
},
|
|
|
|
"B": {
|
|
|
|
"a": "3",
|
|
|
|
"b": "4"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: &struct {
|
|
|
|
A *struct {
|
|
|
|
A *float32 `json:"a,string"`
|
|
|
|
B *float32 `json:"b,string"`
|
|
|
|
}
|
|
|
|
B *struct {
|
|
|
|
A *float32 `json:"a,string"`
|
|
|
|
B *float32 `json:"b,string"`
|
|
|
|
}
|
|
|
|
}{A: &(struct {
|
|
|
|
A *float32 `json:"a,string"`
|
|
|
|
B *float32 `json:"b,string"`
|
|
|
|
}{A: float32ptr(1), B: float32ptr(2)}), B: &(struct {
|
|
|
|
A *float32 `json:"a,string"`
|
|
|
|
B *float32 `json:"b,string"`
|
|
|
|
}{A: float32ptr(3), B: float32ptr(4)})},
|
|
|
|
},
|
|
|
|
|
|
|
|
// PtrHeadFloat32PtrNilDoubleMultiFieldsNotRoot
|
2021-01-16 16:16:26 +03:00
|
|
|
{
|
|
|
|
name: "PtrHeadFloat32PtrNilDoubleMultiFieldsNotRoot",
|
|
|
|
expected: `{"A":null,"B":null}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"A": null,
|
|
|
|
"B": null
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: &struct {
|
|
|
|
A *struct {
|
|
|
|
A *float32 `json:"a"`
|
|
|
|
B *float32 `json:"b"`
|
|
|
|
}
|
|
|
|
B *struct {
|
|
|
|
A *float32 `json:"a"`
|
|
|
|
B *float32 `json:"b"`
|
|
|
|
}
|
|
|
|
}{A: nil, B: nil},
|
|
|
|
},
|
2021-01-19 14:41:14 +03:00
|
|
|
{
|
|
|
|
name: "PtrHeadFloat32PtrNilDoubleMultiFieldsNotRootOmitEmpty",
|
|
|
|
expected: `{}`,
|
|
|
|
indentExpected: `
|
|
|
|
{}
|
|
|
|
`,
|
|
|
|
data: &struct {
|
|
|
|
A *struct {
|
|
|
|
A *float32 `json:"a,omitempty"`
|
|
|
|
B *float32 `json:"b,omitempty"`
|
|
|
|
} `json:",omitempty"`
|
|
|
|
B *struct {
|
|
|
|
A *float32 `json:"a,omitempty"`
|
|
|
|
B *float32 `json:"b,omitempty"`
|
|
|
|
} `json:",omitempty"`
|
|
|
|
}{A: nil, B: nil},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "PtrHeadFloat32PtrNilDoubleMultiFieldsNotRootString",
|
|
|
|
expected: `{"A":null,"B":null}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"A": null,
|
|
|
|
"B": null
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: &struct {
|
|
|
|
A *struct {
|
|
|
|
A *float32 `json:"a,string"`
|
|
|
|
B *float32 `json:"b,string"`
|
|
|
|
}
|
|
|
|
B *struct {
|
|
|
|
A *float32 `json:"a,string"`
|
|
|
|
B *float32 `json:"b,string"`
|
|
|
|
}
|
|
|
|
}{A: nil, B: nil},
|
|
|
|
},
|
|
|
|
|
|
|
|
// PtrHeadFloat32PtrNilDoubleMultiFieldsNotRoot
|
2021-01-16 16:16:26 +03:00
|
|
|
{
|
|
|
|
name: "PtrHeadFloat32PtrNilDoubleMultiFieldsNotRoot",
|
|
|
|
expected: `null`,
|
|
|
|
indentExpected: `
|
|
|
|
null
|
|
|
|
`,
|
|
|
|
data: (*struct {
|
|
|
|
A *struct {
|
|
|
|
A *float32 `json:"a"`
|
|
|
|
B *float32 `json:"b"`
|
|
|
|
}
|
|
|
|
B *struct {
|
|
|
|
A *float32 `json:"a"`
|
|
|
|
B *float32 `json:"b"`
|
|
|
|
}
|
|
|
|
})(nil),
|
|
|
|
},
|
|
|
|
{
|
2021-01-19 14:41:14 +03:00
|
|
|
name: "PtrHeadFloat32PtrNilDoubleMultiFieldsNotRootOmitEmpty",
|
|
|
|
expected: `null`,
|
|
|
|
indentExpected: `
|
|
|
|
null
|
|
|
|
`,
|
|
|
|
data: (*struct {
|
|
|
|
A *struct {
|
|
|
|
A *float32 `json:"a,omitempty"`
|
|
|
|
B *float32 `json:"b,omitempty"`
|
|
|
|
}
|
|
|
|
B *struct {
|
|
|
|
A *float32 `json:"a,omitempty"`
|
|
|
|
B *float32 `json:"b,omitempty"`
|
|
|
|
}
|
|
|
|
})(nil),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "PtrHeadFloat32PtrNilDoubleMultiFieldsNotRootString",
|
|
|
|
expected: `null`,
|
|
|
|
indentExpected: `
|
|
|
|
null
|
|
|
|
`,
|
|
|
|
data: (*struct {
|
|
|
|
A *struct {
|
|
|
|
A *float32 `json:"a,string"`
|
|
|
|
B *float32 `json:"b,string"`
|
|
|
|
}
|
|
|
|
B *struct {
|
|
|
|
A *float32 `json:"a,string"`
|
|
|
|
B *float32 `json:"b,string"`
|
|
|
|
}
|
|
|
|
})(nil),
|
|
|
|
},
|
|
|
|
|
|
|
|
// AnonymousHeadFloat32
|
|
|
|
{
|
|
|
|
name: "AnonymousHeadFloat32",
|
|
|
|
expected: `{"a":1,"b":2}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"a": 1,
|
|
|
|
"b": 2
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
structFloat32
|
|
|
|
B float32 `json:"b"`
|
|
|
|
}{
|
|
|
|
structFloat32: structFloat32{A: 1},
|
|
|
|
B: 2,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "AnonymousHeadFloat32OmitEmpty",
|
|
|
|
expected: `{"a":1,"b":2}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"a": 1,
|
|
|
|
"b": 2
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
structFloat32OmitEmpty
|
|
|
|
B float32 `json:"b,omitempty"`
|
|
|
|
}{
|
|
|
|
structFloat32OmitEmpty: structFloat32OmitEmpty{A: 1},
|
|
|
|
B: 2,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "AnonymousHeadFloat32String",
|
|
|
|
expected: `{"a":"1","b":"2"}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"a": "1",
|
|
|
|
"b": "2"
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
structFloat32String
|
|
|
|
B float32 `json:"b,string"`
|
|
|
|
}{
|
|
|
|
structFloat32String: structFloat32String{A: 1},
|
|
|
|
B: 2,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
// PtrAnonymousHeadFloat32
|
|
|
|
{
|
|
|
|
name: "PtrAnonymousHeadFloat32",
|
|
|
|
expected: `{"a":1,"b":2}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"a": 1,
|
|
|
|
"b": 2
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
*structFloat32
|
|
|
|
B float32 `json:"b"`
|
|
|
|
}{
|
|
|
|
structFloat32: &structFloat32{A: 1},
|
|
|
|
B: 2,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "PtrAnonymousHeadFloat32OmitEmpty",
|
|
|
|
expected: `{"a":1,"b":2}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"a": 1,
|
|
|
|
"b": 2
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
*structFloat32OmitEmpty
|
|
|
|
B float32 `json:"b,omitempty"`
|
|
|
|
}{
|
|
|
|
structFloat32OmitEmpty: &structFloat32OmitEmpty{A: 1},
|
|
|
|
B: 2,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "PtrAnonymousHeadFloat32String",
|
|
|
|
expected: `{"a":"1","b":"2"}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"a": "1",
|
|
|
|
"b": "2"
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
*structFloat32String
|
|
|
|
B float32 `json:"b,string"`
|
|
|
|
}{
|
|
|
|
structFloat32String: &structFloat32String{A: 1},
|
|
|
|
B: 2,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
// NilPtrAnonymousHeadFloat32
|
|
|
|
{
|
|
|
|
name: "NilPtrAnonymousHeadFloat32",
|
|
|
|
expected: `{"b":2}`,
|
2021-01-16 16:16:26 +03:00
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"b": 2
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
2021-01-19 14:41:14 +03:00
|
|
|
*structFloat32
|
2021-01-16 16:16:26 +03:00
|
|
|
B float32 `json:"b"`
|
|
|
|
}{
|
2021-01-19 14:41:14 +03:00
|
|
|
structFloat32: nil,
|
2021-01-16 16:16:26 +03:00
|
|
|
B: 2,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2021-01-19 14:41:14 +03:00
|
|
|
name: "NilPtrAnonymousHeadFloat32OmitEmpty",
|
|
|
|
expected: `{"b":2}`,
|
2021-01-16 16:16:26 +03:00
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"b": 2
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
2021-01-19 14:41:14 +03:00
|
|
|
*structFloat32OmitEmpty
|
|
|
|
B float32 `json:"b,omitempty"`
|
2021-01-16 16:16:26 +03:00
|
|
|
}{
|
2021-01-19 14:41:14 +03:00
|
|
|
structFloat32OmitEmpty: nil,
|
|
|
|
B: 2,
|
2021-01-16 16:16:26 +03:00
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2021-01-19 14:41:14 +03:00
|
|
|
name: "NilPtrAnonymousHeadFloat32String",
|
|
|
|
expected: `{"b":"2"}`,
|
2021-01-16 16:16:26 +03:00
|
|
|
indentExpected: `
|
|
|
|
{
|
2021-01-19 14:41:14 +03:00
|
|
|
"b": "2"
|
2021-01-16 16:16:26 +03:00
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
2021-01-19 14:41:14 +03:00
|
|
|
*structFloat32String
|
|
|
|
B float32 `json:"b,string"`
|
2021-01-16 16:16:26 +03:00
|
|
|
}{
|
2021-01-19 14:41:14 +03:00
|
|
|
structFloat32String: nil,
|
|
|
|
B: 2,
|
2021-01-16 16:16:26 +03:00
|
|
|
},
|
|
|
|
},
|
2021-01-19 14:41:14 +03:00
|
|
|
|
|
|
|
// AnonymousHeadFloat32Ptr
|
2021-01-16 16:16:26 +03:00
|
|
|
{
|
|
|
|
name: "AnonymousHeadFloat32Ptr",
|
|
|
|
expected: `{"a":1,"b":2}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"a": 1,
|
|
|
|
"b": 2
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
structFloat32Ptr
|
|
|
|
B *float32 `json:"b"`
|
|
|
|
}{
|
|
|
|
structFloat32Ptr: structFloat32Ptr{A: float32ptr(1)},
|
|
|
|
B: float32ptr(2),
|
|
|
|
},
|
|
|
|
},
|
2021-01-19 14:41:14 +03:00
|
|
|
{
|
|
|
|
name: "AnonymousHeadFloat32PtrOmitEmpty",
|
|
|
|
expected: `{"a":1,"b":2}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"a": 1,
|
|
|
|
"b": 2
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
structFloat32PtrOmitEmpty
|
|
|
|
B *float32 `json:"b,omitempty"`
|
|
|
|
}{
|
|
|
|
structFloat32PtrOmitEmpty: structFloat32PtrOmitEmpty{A: float32ptr(1)},
|
|
|
|
B: float32ptr(2),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "AnonymousHeadFloat32PtrString",
|
|
|
|
expected: `{"a":"1","b":"2"}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"a": "1",
|
|
|
|
"b": "2"
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
structFloat32PtrString
|
|
|
|
B *float32 `json:"b,string"`
|
|
|
|
}{
|
|
|
|
structFloat32PtrString: structFloat32PtrString{A: float32ptr(1)},
|
|
|
|
B: float32ptr(2),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
// AnonymousHeadFloat32PtrNil
|
2021-01-16 16:16:26 +03:00
|
|
|
{
|
|
|
|
name: "AnonymousHeadFloat32PtrNil",
|
|
|
|
expected: `{"a":null,"b":2}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"a": null,
|
|
|
|
"b": 2
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
structFloat32Ptr
|
|
|
|
B *float32 `json:"b"`
|
|
|
|
}{
|
|
|
|
structFloat32Ptr: structFloat32Ptr{A: nil},
|
|
|
|
B: float32ptr(2),
|
|
|
|
},
|
|
|
|
},
|
2021-01-19 14:41:14 +03:00
|
|
|
{
|
|
|
|
name: "AnonymousHeadFloat32PtrNilOmitEmpty",
|
|
|
|
expected: `{"b":2}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"b": 2
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
structFloat32PtrOmitEmpty
|
|
|
|
B *float32 `json:"b,omitempty"`
|
|
|
|
}{
|
|
|
|
structFloat32PtrOmitEmpty: structFloat32PtrOmitEmpty{A: nil},
|
|
|
|
B: float32ptr(2),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "AnonymousHeadFloat32PtrNilString",
|
|
|
|
expected: `{"a":null,"b":"2"}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"a": null,
|
|
|
|
"b": "2"
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
structFloat32PtrString
|
|
|
|
B *float32 `json:"b,string"`
|
|
|
|
}{
|
|
|
|
structFloat32PtrString: structFloat32PtrString{A: nil},
|
|
|
|
B: float32ptr(2),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
// PtrAnonymousHeadFloat32Ptr
|
2021-01-16 16:16:26 +03:00
|
|
|
{
|
|
|
|
name: "PtrAnonymousHeadFloat32Ptr",
|
|
|
|
expected: `{"a":1,"b":2}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"a": 1,
|
|
|
|
"b": 2
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
*structFloat32Ptr
|
|
|
|
B *float32 `json:"b"`
|
|
|
|
}{
|
|
|
|
structFloat32Ptr: &structFloat32Ptr{A: float32ptr(1)},
|
|
|
|
B: float32ptr(2),
|
|
|
|
},
|
|
|
|
},
|
2021-01-19 14:41:14 +03:00
|
|
|
{
|
|
|
|
name: "PtrAnonymousHeadFloat32PtrOmitEmpty",
|
|
|
|
expected: `{"a":1,"b":2}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"a": 1,
|
|
|
|
"b": 2
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
*structFloat32PtrOmitEmpty
|
|
|
|
B *float32 `json:"b,omitempty"`
|
|
|
|
}{
|
|
|
|
structFloat32PtrOmitEmpty: &structFloat32PtrOmitEmpty{A: float32ptr(1)},
|
|
|
|
B: float32ptr(2),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "PtrAnonymousHeadFloat32PtrString",
|
|
|
|
expected: `{"a":"1","b":"2"}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"a": "1",
|
|
|
|
"b": "2"
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
*structFloat32PtrString
|
|
|
|
B *float32 `json:"b,string"`
|
|
|
|
}{
|
|
|
|
structFloat32PtrString: &structFloat32PtrString{A: float32ptr(1)},
|
|
|
|
B: float32ptr(2),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
// NilPtrAnonymousHeadFloat32Ptr
|
2021-01-16 16:16:26 +03:00
|
|
|
{
|
|
|
|
name: "NilPtrAnonymousHeadFloat32Ptr",
|
|
|
|
expected: `{"b":2}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"b": 2
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
*structFloat32Ptr
|
|
|
|
B *float32 `json:"b"`
|
|
|
|
}{
|
|
|
|
structFloat32Ptr: nil,
|
|
|
|
B: float32ptr(2),
|
|
|
|
},
|
|
|
|
},
|
2021-01-19 14:41:14 +03:00
|
|
|
{
|
|
|
|
name: "NilPtrAnonymousHeadFloat32PtrOmitEmpty",
|
|
|
|
expected: `{"b":2}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"b": 2
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
*structFloat32PtrOmitEmpty
|
|
|
|
B *float32 `json:"b,omitempty"`
|
|
|
|
}{
|
|
|
|
structFloat32PtrOmitEmpty: nil,
|
|
|
|
B: float32ptr(2),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "NilPtrAnonymousHeadFloat32PtrString",
|
|
|
|
expected: `{"b":"2"}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"b": "2"
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
*structFloat32PtrString
|
|
|
|
B *float32 `json:"b,string"`
|
|
|
|
}{
|
|
|
|
structFloat32PtrString: nil,
|
|
|
|
B: float32ptr(2),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
// AnonymousHeadFloat32Only
|
2021-01-16 16:16:26 +03:00
|
|
|
{
|
|
|
|
name: "AnonymousHeadFloat32Only",
|
|
|
|
expected: `{"a":1}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"a": 1
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
structFloat32
|
|
|
|
}{
|
|
|
|
structFloat32: structFloat32{A: 1},
|
|
|
|
},
|
|
|
|
},
|
2021-01-19 14:41:14 +03:00
|
|
|
{
|
|
|
|
name: "AnonymousHeadFloat32OnlyOmitEmpty",
|
|
|
|
expected: `{"a":1}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"a": 1
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
structFloat32OmitEmpty
|
|
|
|
}{
|
|
|
|
structFloat32OmitEmpty: structFloat32OmitEmpty{A: 1},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "AnonymousHeadFloat32OnlyString",
|
|
|
|
expected: `{"a":"1"}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"a": "1"
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
structFloat32String
|
|
|
|
}{
|
|
|
|
structFloat32String: structFloat32String{A: 1},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
// PtrAnonymousHeadFloat32Only
|
2021-01-16 16:16:26 +03:00
|
|
|
{
|
|
|
|
name: "PtrAnonymousHeadFloat32Only",
|
|
|
|
expected: `{"a":1}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"a": 1
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
*structFloat32
|
|
|
|
}{
|
|
|
|
structFloat32: &structFloat32{A: 1},
|
|
|
|
},
|
|
|
|
},
|
2021-01-19 14:41:14 +03:00
|
|
|
{
|
|
|
|
name: "PtrAnonymousHeadFloat32OnlyOmitEmpty",
|
|
|
|
expected: `{"a":1}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"a": 1
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
*structFloat32OmitEmpty
|
|
|
|
}{
|
|
|
|
structFloat32OmitEmpty: &structFloat32OmitEmpty{A: 1},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "PtrAnonymousHeadFloat32OnlyString",
|
|
|
|
expected: `{"a":"1"}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"a": "1"
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
*structFloat32String
|
|
|
|
}{
|
|
|
|
structFloat32String: &structFloat32String{A: 1},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
// NilPtrAnonymousHeadFloat32Only
|
2021-01-16 16:16:26 +03:00
|
|
|
{
|
|
|
|
name: "NilPtrAnonymousHeadFloat32Only",
|
|
|
|
expected: `{}`,
|
|
|
|
indentExpected: `
|
|
|
|
{}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
*structFloat32
|
|
|
|
}{
|
|
|
|
structFloat32: nil,
|
|
|
|
},
|
|
|
|
},
|
2021-01-19 14:41:14 +03:00
|
|
|
{
|
|
|
|
name: "NilPtrAnonymousHeadFloat32OnlyOmitEmpty",
|
|
|
|
expected: `{}`,
|
|
|
|
indentExpected: `
|
|
|
|
{}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
*structFloat32OmitEmpty
|
|
|
|
}{
|
|
|
|
structFloat32OmitEmpty: nil,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "NilPtrAnonymousHeadFloat32OnlyString",
|
|
|
|
expected: `{}`,
|
|
|
|
indentExpected: `
|
|
|
|
{}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
*structFloat32String
|
|
|
|
}{
|
|
|
|
structFloat32String: nil,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
// AnonymousHeadFloat32PtrOnly
|
2021-01-16 16:16:26 +03:00
|
|
|
{
|
|
|
|
name: "AnonymousHeadFloat32PtrOnly",
|
|
|
|
expected: `{"a":1}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"a": 1
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
structFloat32Ptr
|
|
|
|
}{
|
|
|
|
structFloat32Ptr: structFloat32Ptr{A: float32ptr(1)},
|
|
|
|
},
|
|
|
|
},
|
2021-01-19 14:41:14 +03:00
|
|
|
{
|
|
|
|
name: "AnonymousHeadFloat32PtrOnlyOmitEmpty",
|
|
|
|
expected: `{"a":1}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"a": 1
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
structFloat32PtrOmitEmpty
|
|
|
|
}{
|
|
|
|
structFloat32PtrOmitEmpty: structFloat32PtrOmitEmpty{A: float32ptr(1)},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "AnonymousHeadFloat32PtrOnlyString",
|
|
|
|
expected: `{"a":"1"}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"a": "1"
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
structFloat32PtrString
|
|
|
|
}{
|
|
|
|
structFloat32PtrString: structFloat32PtrString{A: float32ptr(1)},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
// AnonymousHeadFloat32PtrNilOnly
|
2021-01-16 16:16:26 +03:00
|
|
|
{
|
|
|
|
name: "AnonymousHeadFloat32PtrNilOnly",
|
|
|
|
expected: `{"a":null}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"a": null
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
structFloat32Ptr
|
|
|
|
}{
|
|
|
|
structFloat32Ptr: structFloat32Ptr{A: nil},
|
|
|
|
},
|
|
|
|
},
|
2021-01-19 14:41:14 +03:00
|
|
|
{
|
|
|
|
name: "AnonymousHeadFloat32PtrNilOnlyOmitEmpty",
|
|
|
|
expected: `{}`,
|
|
|
|
indentExpected: `
|
|
|
|
{}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
structFloat32PtrOmitEmpty
|
|
|
|
}{
|
|
|
|
structFloat32PtrOmitEmpty: structFloat32PtrOmitEmpty{A: nil},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "AnonymousHeadFloat32PtrNilOnlyString",
|
|
|
|
expected: `{"a":null}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"a": null
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
structFloat32PtrString
|
|
|
|
}{
|
|
|
|
structFloat32PtrString: structFloat32PtrString{A: nil},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
// PtrAnonymousHeadFloat32PtrOnly
|
2021-01-16 16:16:26 +03:00
|
|
|
{
|
|
|
|
name: "PtrAnonymousHeadFloat32PtrOnly",
|
|
|
|
expected: `{"a":1}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"a": 1
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
*structFloat32Ptr
|
|
|
|
}{
|
|
|
|
structFloat32Ptr: &structFloat32Ptr{A: float32ptr(1)},
|
|
|
|
},
|
|
|
|
},
|
2021-01-19 14:41:14 +03:00
|
|
|
{
|
|
|
|
name: "PtrAnonymousHeadFloat32PtrOnlyOmitEmpty",
|
|
|
|
expected: `{"a":1}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"a": 1
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
*structFloat32PtrOmitEmpty
|
|
|
|
}{
|
|
|
|
structFloat32PtrOmitEmpty: &structFloat32PtrOmitEmpty{A: float32ptr(1)},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "PtrAnonymousHeadFloat32PtrOnlyString",
|
|
|
|
expected: `{"a":"1"}`,
|
|
|
|
indentExpected: `
|
|
|
|
{
|
|
|
|
"a": "1"
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
*structFloat32PtrString
|
|
|
|
}{
|
|
|
|
structFloat32PtrString: &structFloat32PtrString{A: float32ptr(1)},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
// NilPtrAnonymousHeadFloat32PtrOnly
|
2021-01-16 16:16:26 +03:00
|
|
|
{
|
|
|
|
name: "NilPtrAnonymousHeadFloat32PtrOnly",
|
|
|
|
expected: `{}`,
|
|
|
|
indentExpected: `
|
|
|
|
{}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
*structFloat32Ptr
|
|
|
|
}{
|
|
|
|
structFloat32Ptr: nil,
|
|
|
|
},
|
|
|
|
},
|
2021-01-19 14:41:14 +03:00
|
|
|
{
|
|
|
|
name: "NilPtrAnonymousHeadFloat32PtrOnlyOmitEmpty",
|
|
|
|
expected: `{}`,
|
|
|
|
indentExpected: `
|
|
|
|
{}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
*structFloat32PtrOmitEmpty
|
|
|
|
}{
|
|
|
|
structFloat32PtrOmitEmpty: nil,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "NilPtrAnonymousHeadFloat32PtrOnlyString",
|
|
|
|
expected: `{}`,
|
|
|
|
indentExpected: `
|
|
|
|
{}
|
|
|
|
`,
|
|
|
|
data: struct {
|
|
|
|
*structFloat32PtrString
|
|
|
|
}{
|
|
|
|
structFloat32PtrString: nil,
|
|
|
|
},
|
|
|
|
},
|
2021-01-16 16:16:26 +03:00
|
|
|
}
|
|
|
|
for _, test := range tests {
|
|
|
|
for _, indent := range []bool{true, false} {
|
|
|
|
for _, htmlEscape := range []bool{true, false} {
|
|
|
|
var buf bytes.Buffer
|
|
|
|
enc := json.NewEncoder(&buf)
|
|
|
|
enc.SetEscapeHTML(htmlEscape)
|
|
|
|
if indent {
|
|
|
|
enc.SetIndent("", " ")
|
|
|
|
}
|
|
|
|
if err := enc.Encode(test.data); err != nil {
|
|
|
|
t.Fatalf("%s(htmlEscape:%T): %s: %s", test.name, htmlEscape, test.expected, err)
|
|
|
|
}
|
2021-01-19 14:41:14 +03:00
|
|
|
stdresult := encodeByEncodingJSON(test.data, indent, htmlEscape)
|
|
|
|
if buf.String() != stdresult {
|
|
|
|
t.Errorf("%s(htmlEscape:%T): doesn't compatible with encoding/json. expected %q but got %q", test.name, htmlEscape, stdresult, buf.String())
|
|
|
|
}
|
2021-01-16 16:16:26 +03:00
|
|
|
if indent {
|
|
|
|
got := "\n" + buf.String()
|
|
|
|
if got != test.indentExpected {
|
|
|
|
t.Fatalf("%s(htmlEscape:%T): expected %q but got %q", test.name, htmlEscape, test.indentExpected, got)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if strings.TrimRight(buf.String(), "\n") != test.expected {
|
|
|
|
t.Fatalf("%s(htmlEscape:%T): expected %q but got %q", test.name, htmlEscape, test.expected, buf.String())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|