-
Notifications
You must be signed in to change notification settings - Fork 897
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-3286 BSON Binary vector subtype support. #1919
Open
qingyang-hu
wants to merge
6
commits into
mongodb:master
Choose a base branch
from
qingyang-hu:godriver3286
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 4 commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
73018a5
GODRIVER-3286 BSON Binary vector subtype support
qingyang-hu 0e63c74
Update Vector interface
qingyang-hu 7a0b7f3
update test cases; update error message.
qingyang-hu 12edd47
update comments.
qingyang-hu 16e2104
update tests
qingyang-hu 913467b
minor update
qingyang-hu File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,258 @@ | ||
// Copyright (C) MongoDB, Inc. 2024-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 ( | ||
"encoding/hex" | ||
"encoding/json" | ||
"fmt" | ||
"math" | ||
"os" | ||
"path" | ||
"testing" | ||
|
||
"go.mongodb.org/mongo-driver/v2/internal/require" | ||
) | ||
|
||
const bsonBinaryVectorDir = "../testdata/bson-binary-vector/" | ||
|
||
type bsonBinaryVectorTests struct { | ||
Description string `json:"description"` | ||
TestKey string `json:"test_key"` | ||
Tests []bsonBinaryVectorTestCase `json:"tests"` | ||
} | ||
|
||
type bsonBinaryVectorTestCase struct { | ||
Description string `json:"description"` | ||
Valid bool `json:"valid"` | ||
Vector []interface{} `json:"vector"` | ||
DtypeHex string `json:"dtype_hex"` | ||
DtypeAlias string `json:"dtype_alias"` | ||
Padding int `json:"padding"` | ||
CanonicalBson string `json:"canonical_bson"` | ||
} | ||
|
||
func TestBsonBinaryVector(t *testing.T) { | ||
t.Parallel() | ||
|
||
jsonFiles, err := findJSONFilesInDir(bsonBinaryVectorDir) | ||
require.NoErrorf(t, err, "error finding JSON files in %s: %v", bsonBinaryVectorDir, err) | ||
|
||
for _, file := range jsonFiles { | ||
filepath := path.Join(bsonBinaryVectorDir, file) | ||
content, err := os.ReadFile(filepath) | ||
require.NoErrorf(t, err, "reading test file %s", filepath) | ||
|
||
var tests bsonBinaryVectorTests | ||
require.NoErrorf(t, json.Unmarshal(content, &tests), "parsing test file %s", filepath) | ||
|
||
t.Run(tests.Description, func(t *testing.T) { | ||
t.Parallel() | ||
|
||
for _, test := range tests.Tests { | ||
test := test | ||
t.Run(test.Description, func(t *testing.T) { | ||
t.Parallel() | ||
|
||
runBsonBinaryVectorTest(t, tests.TestKey, test) | ||
}) | ||
} | ||
}) | ||
} | ||
|
||
t.Run("Insufficient vector data FLOAT32", func(t *testing.T) { | ||
t.Parallel() | ||
|
||
val := Binary{Subtype: TypeBinaryVector} | ||
|
||
for _, tc := range [][]byte{ | ||
{Float32Vector, 0, 42}, | ||
{Float32Vector, 0, 42, 42}, | ||
{Float32Vector, 0, 42, 42, 42}, | ||
|
||
{Float32Vector, 0, 42, 42, 42, 42, 42}, | ||
{Float32Vector, 0, 42, 42, 42, 42, 42, 42}, | ||
{Float32Vector, 0, 42, 42, 42, 42, 42, 42, 42}, | ||
} { | ||
t.Run(fmt.Sprintf("marshaling %d bytes", len(tc)-2), func(t *testing.T) { | ||
val.Data = tc | ||
b, err := Marshal(D{{"vector", val}}) | ||
require.NoError(t, err, "marshaling test BSON") | ||
var got struct { | ||
Vector Vector | ||
} | ||
err = Unmarshal(b, &got) | ||
require.ErrorContains(t, err, errInsufficientVectorData.Error()) | ||
}) | ||
} | ||
}) | ||
|
||
t.Run("FLOAT32 with padding", func(t *testing.T) { | ||
t.Parallel() | ||
|
||
t.Run("Unmarshaling", func(t *testing.T) { | ||
val := D{{"vector", Binary{Subtype: TypeBinaryVector, Data: []byte{Float32Vector, 3}}}} | ||
b, err := Marshal(val) | ||
require.NoError(t, err, "marshaling test BSON") | ||
var got struct { | ||
Vector Vector | ||
} | ||
err = Unmarshal(b, &got) | ||
require.ErrorContains(t, err, errNonZeroVectorPadding.Error()) | ||
}) | ||
}) | ||
|
||
t.Run("INT8 with padding", func(t *testing.T) { | ||
t.Parallel() | ||
|
||
t.Run("Unmarshaling", func(t *testing.T) { | ||
val := D{{"vector", Binary{Subtype: TypeBinaryVector, Data: []byte{Int8Vector, 3}}}} | ||
b, err := Marshal(val) | ||
require.NoError(t, err, "marshaling test BSON") | ||
var got struct { | ||
Vector Vector | ||
} | ||
err = Unmarshal(b, &got) | ||
require.ErrorContains(t, err, errNonZeroVectorPadding.Error()) | ||
}) | ||
}) | ||
|
||
t.Run("Padding specified with no vector data PACKED_BIT", func(t *testing.T) { | ||
t.Parallel() | ||
|
||
t.Run("Marshaling", func(t *testing.T) { | ||
_, err := NewPackedBitVector(nil, 1) | ||
require.EqualError(t, err, errNonZeroVectorPadding.Error()) | ||
}) | ||
t.Run("Unmarshaling", func(t *testing.T) { | ||
val := D{{"vector", Binary{Subtype: TypeBinaryVector, Data: []byte{PackedBitVector, 1}}}} | ||
b, err := Marshal(val) | ||
require.NoError(t, err, "marshaling test BSON") | ||
var got struct { | ||
Vector Vector | ||
} | ||
err = Unmarshal(b, &got) | ||
require.ErrorContains(t, err, errNonZeroVectorPadding.Error()) | ||
}) | ||
}) | ||
|
||
t.Run("Exceeding maximum padding PACKED_BIT", func(t *testing.T) { | ||
t.Parallel() | ||
|
||
t.Run("Marshaling", func(t *testing.T) { | ||
_, err := NewPackedBitVector(nil, 8) | ||
require.EqualError(t, err, errVectorPaddingTooLarge.Error()) | ||
}) | ||
t.Run("Unmarshaling", func(t *testing.T) { | ||
val := D{{"vector", Binary{Subtype: TypeBinaryVector, Data: []byte{PackedBitVector, 8}}}} | ||
b, err := Marshal(val) | ||
require.NoError(t, err, "marshaling test BSON") | ||
var got struct { | ||
Vector Vector | ||
} | ||
err = Unmarshal(b, &got) | ||
require.ErrorContains(t, err, errVectorPaddingTooLarge.Error()) | ||
}) | ||
}) | ||
} | ||
|
||
func convertSlice[T int8 | float32 | byte](s []interface{}) []T { | ||
v := make([]T, len(s)) | ||
for i, e := range s { | ||
f := math.NaN() | ||
switch val := e.(type) { | ||
case float64: | ||
f = val | ||
case string: | ||
if val == "inf" { | ||
f = math.Inf(0) | ||
} else if val == "-inf" { | ||
f = math.Inf(-1) | ||
} | ||
} | ||
v[i] = T(f) | ||
} | ||
return v | ||
} | ||
|
||
func runBsonBinaryVectorTest(t *testing.T, testKey string, test bsonBinaryVectorTestCase) { | ||
testVector := make(map[string]Vector) | ||
switch alias := test.DtypeHex; alias { | ||
case "0x03": | ||
testVector[testKey] = Vector{ | ||
dType: Int8Vector, | ||
int8Data: convertSlice[int8](test.Vector), | ||
} | ||
case "0x27": | ||
testVector[testKey] = Vector{ | ||
dType: Float32Vector, | ||
float32Data: convertSlice[float32](test.Vector), | ||
} | ||
case "0x10": | ||
testVector[testKey] = Vector{ | ||
dType: PackedBitVector, | ||
bitData: convertSlice[byte](test.Vector), | ||
bitPadding: uint8(test.Padding), | ||
} | ||
default: | ||
t.Fatalf("unsupported vector type: %s", alias) | ||
} | ||
|
||
testBSON, err := hex.DecodeString(test.CanonicalBson) | ||
require.NoError(t, err, "decoding canonical BSON") | ||
|
||
t.Run("Unmarshaling", func(t *testing.T) { | ||
skipCases := map[string]string{ | ||
"FLOAT32 with padding": "run in alternative case", | ||
"Overflow Vector INT8": "compile-time restriction", | ||
"Underflow Vector INT8": "compile-time restriction", | ||
"INT8 with padding": "run in alternative case", | ||
"INT8 with float inputs": "compile-time restriction", | ||
"Overflow Vector PACKED_BIT": "compile-time restriction", | ||
"Underflow Vector PACKED_BIT": "compile-time restriction", | ||
"Vector with float values PACKED_BIT": "compile-time restriction", | ||
"Padding specified with no vector data PACKED_BIT": "run in alternative case", | ||
"Exceeding maximum padding PACKED_BIT": "run in alternative case", | ||
"Negative padding PACKED_BIT": "compile-time restriction", | ||
} | ||
if reason, ok := skipCases[test.Description]; ok { | ||
t.Skipf("skip test case %s: %s", test.Description, reason) | ||
} | ||
|
||
t.Parallel() | ||
|
||
var got map[string]Vector | ||
err := Unmarshal(testBSON, &got) | ||
require.NoError(t, err) | ||
require.Equal(t, testVector, got) | ||
}) | ||
|
||
t.Run("Marshaling", func(t *testing.T) { | ||
skipCases := map[string]string{ | ||
"FLOAT32 with padding": "private padding field", | ||
"Overflow Vector INT8": "compile-time restriction", | ||
"Underflow Vector INT8": "compile-time restriction", | ||
"INT8 with padding": "private padding field", | ||
"INT8 with float inputs": "compile-time restriction", | ||
"Overflow Vector PACKED_BIT": "compile-time restriction", | ||
"Underflow Vector PACKED_BIT": "compile-time restriction", | ||
"Vector with float values PACKED_BIT": "compile-time restriction", | ||
"Padding specified with no vector data PACKED_BIT": "run in alternative case", | ||
"Exceeding maximum padding PACKED_BIT": "run in alternative case", | ||
"Negative padding PACKED_BIT": "compile-time restriction", | ||
} | ||
if reason, ok := skipCases[test.Description]; ok { | ||
t.Skipf("skip test case %s: %s", test.Description, reason) | ||
} | ||
|
||
t.Parallel() | ||
|
||
got, err := Marshal(testVector) | ||
require.NoError(t, err) | ||
require.Equal(t, testBSON, got) | ||
}) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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 making non-spec tests their own test.
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.
IMO, these should be included in the spec tests. I will submit a spec PR later.
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.
We have a pattern for naming specification tests
Test{Focus}Spec
. For example,TestConnStringSpec
,TestURIOptionsSpec
,TestPollingSRVRecordsSpec
,TestServerSelectionRTTSpec
, etc. We should call this testTestBsonBinaryVectorSpec
and decouple it from non-spec tests. If we are going to make these subtests spec tests in the future, we should at least add a comment with the corresponding DRIVERS ticket so that they can be removed as duplicates after implementation.