chore: make methods consistent in signatures (#1971)
* chore: make methods consistent in signatures * test: fix fails
This commit is contained in:
@@ -210,7 +210,6 @@ func validate(t *testing.T, body string, expectedTrace, expectedSpan bool) {
|
|||||||
val = doc
|
val = doc
|
||||||
}
|
}
|
||||||
|
|
||||||
assert.Nil(t, json.Unmarshal([]byte(body), &val), body)
|
|
||||||
assert.Equal(t, expectedTrace, len(val.Trace) > 0, body)
|
assert.Equal(t, expectedTrace, len(val.Trace) > 0, body)
|
||||||
assert.Equal(t, expectedSpan, len(val.Span) > 0, body)
|
assert.Equal(t, expectedSpan, len(val.Span) > 0, body)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -231,7 +231,7 @@ func (u *Unmarshaler) processFieldPrimitive(field reflect.StructField, value ref
|
|||||||
return u.processFieldPrimitiveWithJSONNumber(field, value, v, opts, fullName)
|
return u.processFieldPrimitiveWithJSONNumber(field, value, v, opts, fullName)
|
||||||
default:
|
default:
|
||||||
if typeKind == valueKind {
|
if typeKind == valueKind {
|
||||||
if err := validateValueInOptions(opts.options(), mapValue); err != nil {
|
if err := validateValueInOptions(mapValue, opts.options()); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -253,7 +253,7 @@ func (u *Unmarshaler) processFieldPrimitiveWithJSONNumber(field reflect.StructFi
|
|||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
if err := validateValueInOptions(opts.options(), v); err != nil {
|
if err := validateValueInOptions(v, opts.options()); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1184,6 +1184,14 @@ func TestUnmarshalWithJsonNumberOptionsIncorrect(t *testing.T) {
|
|||||||
assert.NotNil(t, UnmarshalKey(m, &in))
|
assert.NotNil(t, UnmarshalKey(m, &in))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestUnmarshaler_UnmarshalIntOptions(t *testing.T) {
|
||||||
|
var val struct {
|
||||||
|
Sex int `json:"sex,options=0|1"`
|
||||||
|
}
|
||||||
|
input := []byte(`{"sex": 2}`)
|
||||||
|
assert.NotNil(t, UnmarshalJsonBytes(input, &val))
|
||||||
|
}
|
||||||
|
|
||||||
func TestUnmarshalWithUintOptionsCorrect(t *testing.T) {
|
func TestUnmarshalWithUintOptionsCorrect(t *testing.T) {
|
||||||
type inner struct {
|
type inner struct {
|
||||||
Value string `key:"value,options=first|second"`
|
Value string `key:"value,options=first|second"`
|
||||||
|
|||||||
@@ -592,16 +592,16 @@ func validateNumberRange(fv float64, nr *numberRange) error {
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func validateValueInOptions(options []string, value interface{}) error {
|
func validateValueInOptions(val interface{}, options []string) error {
|
||||||
if len(options) > 0 {
|
if len(options) > 0 {
|
||||||
switch v := value.(type) {
|
switch v := val.(type) {
|
||||||
case string:
|
case string:
|
||||||
if !stringx.Contains(options, v) {
|
if !stringx.Contains(options, v) {
|
||||||
return fmt.Errorf(`error: value "%s" is not defined in options "%v"`, v, options)
|
return fmt.Errorf(`error: value "%s" is not defined in options "%v"`, v, options)
|
||||||
}
|
}
|
||||||
default:
|
default:
|
||||||
if !stringx.Contains(options, Repr(v)) {
|
if !stringx.Contains(options, Repr(v)) {
|
||||||
return fmt.Errorf(`error: value "%v" is not defined in options "%v"`, value, options)
|
return fmt.Errorf(`error: value "%v" is not defined in options "%v"`, val, options)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user