-
Notifications
You must be signed in to change notification settings - Fork 902
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
GODRIVER-3451 Add fuzz test for BSON MarshalValue/UnmarshalValue. #1993
base: master
Are you sure you want to change the base?
Conversation
API Change ReportNo changes found! |
@matthewdale Can you re-configure the evergreen tasks to include Fuzz testing? |
// int64, including max and min values. | ||
int64(0), math.MaxInt64, math.MinInt64, | ||
// string, including empty and large string. | ||
"", strings.Repeat("z", 10_000), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we extend this to include a nested structure and a slice?
map[string]any{"nested": []any{1, "two", map[string]any{"three", 3}}}
[]any{1, 2,3, "four"}
f.Add(byte(typ), b) | ||
} | ||
|
||
f.Fuzz(func(t *testing.T, bsonType byte, data []byte) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
AFAIK we can run these tests in parallel.
t.Fatalf("failed to marshal: %v", err) | ||
} | ||
|
||
if err := UnmarshalValue(typ, encoded, &v); err != nil { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Suggest decoding into a new value (e.g. var v2 any
). Then we can compare the original value and the re-unmarshaled value to ensure roundtrip consistency:
if !reflect.DeepEqual(v, v2) {
t.Fatal("roundtrip mismatch: ...")
}
// to "nil". It's not clear if MarshalValue should support "nil", but | ||
// for now we skip it. | ||
if v == nil { | ||
return |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It might be worth logging such cases.
GODRIVER-3451
Summary
bson.MarshalValue
andbson.UnmarshalValue
.Background & Motivation