2023-09-23 00:29:41 +00:00
|
|
|
package opt_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2024-07-04 16:54:41 +00:00
|
|
|
"github.com/reiver/go-opt"
|
2023-09-23 00:29:41 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestOptional_MarshalJSON_bool(t *testing.T) {
|
|
|
|
|
|
|
|
tests := []struct{
|
|
|
|
Value opt.Optional[bool]
|
|
|
|
Expected string
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
Value: opt.Something(false),
|
|
|
|
Expected: "false",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Value: opt.Something(true),
|
|
|
|
Expected: "true",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for testNumber, test := range tests {
|
|
|
|
|
|
|
|
actualBytes, err := test.Value.MarshalJSON()
|
|
|
|
if nil != err {
|
|
|
|
t.Errorf("For test #%d, did not expect an error but actually got one." , testNumber)
|
|
|
|
t.Logf("ERROR: (%T) %s", err, err)
|
|
|
|
t.Logf("VALUE: %#v", test.Value)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
actual := string(actualBytes)
|
|
|
|
expected := test.Expected
|
|
|
|
|
|
|
|
if expected != actual {
|
|
|
|
t.Errorf("For test #%d, the actual value for the JSON marshaling is not what was expected.", testNumber)
|
|
|
|
t.Logf("EXPECTED: %q", expected)
|
|
|
|
t.Logf("ACTUAL: %q", actual)
|
|
|
|
t.Logf("VALUE: %#v", test.Value)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-09-23 20:30:44 +00:00
|
|
|
|
|
|
|
func TestOptional_MarshalJSON_bool_fail(t *testing.T) {
|
|
|
|
|
|
|
|
var nothing opt.Optional[bool]
|
|
|
|
|
|
|
|
actualBytes, err := nothing.MarshalJSON()
|
|
|
|
if nil == err {
|
|
|
|
t.Error("Expected an error but did not actually get one.")
|
|
|
|
t.Logf("ACTUAL: %q", actualBytes)
|
|
|
|
t.Logf("ERROR: (%T) %s", err, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if nil != actualBytes {
|
|
|
|
t.Error("Expected not bytes but actually get some.")
|
|
|
|
t.Logf("ACTUAL: %q", actualBytes)
|
|
|
|
t.Logf("ERROR: (%T) %s", err, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|