-
Notifications
You must be signed in to change notification settings - Fork 912
GODRIVER-3472: Add support for unmarshaling BSON Vector binary values into slices #2097
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
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,154 @@ | ||
// Copyright (C) MongoDB, Inc. 2025-present. | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); you may | ||
// not use this file except in compliance with the License. You may obtain | ||
// a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 | ||
|
||
package bson | ||
|
||
import ( | ||
"fmt" | ||
"testing" | ||
|
||
"github.com/stretchr/testify/require" | ||
) | ||
|
||
// Helper function to create a BSON document with a vector binary field (subtype 0x09) | ||
func createBSONWithBinary(data []byte) []byte { | ||
// Document format: {"v": BinData(subtype, data)} | ||
buf := make([]byte, 0, 32+len(data)) | ||
|
||
buf = append(buf, 0x00, 0x00, 0x00, 0x00) // Length placeholder | ||
buf = append(buf, 0x05) // Binary type | ||
buf = append(buf, 'v', 0x00) // Field name "v" | ||
|
||
buf = append(buf, | ||
byte(len(data)), // Length of binary data | ||
0x00, 0x00, 0x00, // 4-byte length (little endian) | ||
0x09, // Binary subtype for Vector | ||
) | ||
buf = append(buf, data...) | ||
buf = append(buf, 0x00) | ||
|
||
docLen := len(buf) | ||
buf[0] = byte(docLen) | ||
buf[1] = byte(docLen >> 8) | ||
buf[2] = byte(docLen >> 16) | ||
buf[3] = byte(docLen >> 24) | ||
|
||
return buf | ||
} | ||
|
||
func TestVectorBackwardCompatibility(t *testing.T) { | ||
t.Parallel() | ||
|
||
t.Run("unmarshal to Vector field", func(t *testing.T) { | ||
t.Parallel() | ||
|
||
vectorData := []byte{ | ||
0x03, // int8 vector type (0x03 is Int8Vector) | ||
0x00, // padding | ||
0x01, 0x02, 0x03, 0x04, // int8 values | ||
} | ||
|
||
doc := createBSONWithBinary(vectorData) | ||
|
||
var result struct { | ||
V Vector | ||
} | ||
err := Unmarshal(doc, &result) | ||
require.NoError(t, err) | ||
|
||
require.Equal(t, Int8Vector, result.V.Type()) | ||
int8Data, ok := result.V.Int8OK() | ||
require.True(t, ok, "expected int8 vector") | ||
require.Equal(t, []int8{1, 2, 3, 4}, int8Data) | ||
}) | ||
} | ||
|
||
func TestUnmarshalVectorToSlices(t *testing.T) { | ||
t.Parallel() | ||
|
||
t.Run("int8 vector to []int8", func(t *testing.T) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. IIUC this is the use-case we should be testing for: d := D{{
"v", NewVector([]int8{-2, 1, 2, 3, 4}),
}}
bsonData, err := Marshal(d)
var result struct{ V []int8 }
err = Unmarshal(bsonData, &result)
require.NoError(t, err)
require.Equal(t, []int8{-2, 1, 2, 3, 4}, result.V) From the "Definition of Done" section on GODRIVER-3472:
Note that this drop-in does not pass with the current proposed solution.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Additionally, we should have a test to verify this works at the package main
import (
"context"
"fmt"
"log"
"go.mongodb.org/mongo-driver/v2/bson"
"go.mongodb.org/mongo-driver/v2/mongo"
)
func main() {
client, err := mongo.Connect()
if err != nil {
log.Fatalf("failed to connect to MongoDB: %v", err)
}
defer func() {
if err := client.Disconnect(context.Background()); err != nil {
log.Fatalf("failed to disconnect from MongoDB: %v", err)
}
}()
coll := client.Database("test").Collection("myCollection")
_ = coll.Drop(context.Background())
type myStruct struct {
V []int8
}
_, err = coll.InsertOne(context.Background(), bson.D{{"v", bson.NewVector([]int8{1, 2, 3})}})
if err != nil {
log.Fatalf("failed to insert document: %v", err)
}
result := coll.FindOne(context.Background(), bson.D{})
if result.Err() != nil {
log.Fatalf("failed to find document: %v", result.Err())
}
ms := myStruct{}
if err := result.Decode(&ms); err != nil {
log.Fatalf("failed to decode document: %v", err)
}
fmt.Println(ms.V)
} |
||
t.Parallel() | ||
|
||
doc := D{{"v", NewVector([]int8{-2, 1, 2, 3, 4})}} | ||
bsonData, err := Marshal(doc) | ||
require.NoError(t, err) | ||
var result struct{ V []int8 } | ||
err = Unmarshal(bsonData, &result) | ||
require.NoError(t, err) | ||
require.Equal(t, []int8{-2, 1, 2, 3, 4}, result.V) | ||
}) | ||
|
||
t.Run("float32 vector to []float32", func(t *testing.T) { | ||
t.Parallel() | ||
|
||
doc := D{{"v", NewVector([]float32{1.1, 2.2, 3.3, 4.4})}} | ||
bsonData, err := Marshal(doc) | ||
require.NoError(t, err) | ||
var result struct{ V []float32 } | ||
err = Unmarshal(bsonData, &result) | ||
require.NoError(t, err) | ||
require.InDeltaSlice(t, []float32{1.1, 2.2, 3.3, 4.4}, result.V, 0.001) | ||
}) | ||
|
||
t.Run("invalid vector type to slice", func(t *testing.T) { | ||
t.Parallel() | ||
|
||
vectorData := []byte{ | ||
0x10, // packed bit vector type (unsupported for direct unmarshaling) | ||
0x00, // padding | ||
0x01, 0x02, // some data | ||
} | ||
bsonData := createBSONWithBinary(vectorData) | ||
|
||
t.Run("to []int8", func(t *testing.T) { | ||
t.Parallel() | ||
|
||
vectorData := []byte{0x10, 0x00} // Invalid vector type | ||
bsonData := createBSONWithBinary(vectorData) | ||
|
||
var result struct{ V []int8 } | ||
err := Unmarshal(bsonData, &result) | ||
require.Error(t, err) | ||
require.Contains(t, err.Error(), fmt.Sprintf("invalid vector type: expected int8 vector (0x%02x)", Int8Vector)) | ||
}) | ||
|
||
t.Run("to []float32", func(t *testing.T) { | ||
t.Parallel() | ||
var result struct{ V []float32 } | ||
err := Unmarshal(bsonData, &result) | ||
require.Error(t, err) | ||
require.Contains(t, err.Error(), fmt.Sprintf("invalid vector type: expected float32 vector (0x%02x)", Float32Vector)) | ||
}) | ||
}) | ||
|
||
t.Run("invalid binary data", func(t *testing.T) { | ||
t.Parallel() | ||
|
||
vectorData := []byte{0x01, 0x00, 0x01, 0x02, 0x03, 0x04} | ||
bsonData := createBSONWithBinary(vectorData) | ||
|
||
t.Run("to []int8", func(t *testing.T) { | ||
t.Parallel() | ||
|
||
var result struct{ V []int8 } | ||
err := Unmarshal(bsonData, &result) | ||
require.Error(t, err) | ||
require.Contains(t, err.Error(), fmt.Sprintf("invalid vector type: expected int8 vector (0x%02x)", Int8Vector)) | ||
}) | ||
|
||
t.Run("to []float32", func(t *testing.T) { | ||
t.Parallel() | ||
|
||
vectorData := []byte{0x01, 0x00} | ||
bsonData := createBSONWithBinary(vectorData) | ||
|
||
var result struct{ V []float32 } | ||
err := Unmarshal(bsonData, &result) | ||
require.Error(t, err) | ||
require.Contains(t, err.Error(), fmt.Sprintf("invalid vector type: expected float32 vector (0x%02x)", Float32Vector)) | ||
}) | ||
}) | ||
} |
Uh oh!
There was an error while loading. Please reload this page.
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.
Can you clarify and add a test illustrating the purpose of
val.Type() != reflect.TypeOf([]int8{})
? Thebson
test suite passes without this check.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.
Added test
TestSliceCodec
inbson/primitive_codecs_test.go
.My understanding is that the condition
val.Type() != reflect.TypeOf([]int8{})
would ensure that[]byte
and[]int8
are treated differently during BSON encoding.[]byte
and[]int8
have the same underlying memory layout in Go, and furtherbyte
being an alias foruint8
.tByte
isreflect.TypeOf(byte(0))
, which isuint8
.Without this check, a
[]int8
would be incorrectly treated as binary data since its element type (int8) has the same size as byte.Do you think adding this check still adds any value?