2021-02-11 10:49:03 -07:00
|
|
|
package dhcpd
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"testing"
|
|
|
|
|
2021-10-22 01:58:18 -07:00
|
|
|
"github.com/AdguardTeam/golibs/testutil"
|
2021-02-11 10:49:03 -07:00
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
)
|
|
|
|
|
2021-06-10 08:57:53 -07:00
|
|
|
func TestNullBool_UnmarshalJSON(t *testing.T) {
|
2021-02-11 10:49:03 -07:00
|
|
|
testCases := []struct {
|
|
|
|
name string
|
|
|
|
data []byte
|
|
|
|
wantErrMsg string
|
|
|
|
want nullBool
|
|
|
|
}{{
|
|
|
|
name: "empty",
|
|
|
|
data: []byte{},
|
|
|
|
wantErrMsg: "",
|
|
|
|
want: nbNull,
|
|
|
|
}, {
|
|
|
|
name: "null",
|
|
|
|
data: []byte("null"),
|
|
|
|
wantErrMsg: "",
|
|
|
|
want: nbNull,
|
|
|
|
}, {
|
|
|
|
name: "true",
|
|
|
|
data: []byte("true"),
|
|
|
|
wantErrMsg: "",
|
|
|
|
want: nbTrue,
|
|
|
|
}, {
|
|
|
|
name: "false",
|
|
|
|
data: []byte("false"),
|
|
|
|
wantErrMsg: "",
|
|
|
|
want: nbFalse,
|
|
|
|
}, {
|
|
|
|
name: "invalid",
|
|
|
|
data: []byte("flase"),
|
|
|
|
wantErrMsg: `invalid nullBool value "flase"`,
|
|
|
|
want: nbNull,
|
|
|
|
}}
|
|
|
|
|
|
|
|
for _, tc := range testCases {
|
|
|
|
t.Run(tc.name, func(t *testing.T) {
|
|
|
|
var got nullBool
|
|
|
|
err := got.UnmarshalJSON(tc.data)
|
2021-10-22 01:58:18 -07:00
|
|
|
testutil.AssertErrorMsg(t, tc.wantErrMsg, err)
|
2021-02-11 10:49:03 -07:00
|
|
|
|
|
|
|
assert.Equal(t, tc.want, got)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
t.Run("json", func(t *testing.T) {
|
|
|
|
want := nbTrue
|
|
|
|
var got struct {
|
|
|
|
A nullBool
|
|
|
|
}
|
|
|
|
|
|
|
|
err := json.Unmarshal([]byte(`{"A":true}`), &got)
|
2021-04-13 06:00:09 -07:00
|
|
|
require.NoError(t, err)
|
|
|
|
|
2021-02-11 10:49:03 -07:00
|
|
|
assert.Equal(t, want, got.A)
|
|
|
|
})
|
|
|
|
}
|