Last active
August 19, 2025 17:59
-
-
Save prestonvasquez/8581268c15957caa993beb49ae682cb6 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
package collection | |
import ( | |
"context" | |
"fmt" | |
"testing" | |
"github.com/stretchr/testify/require" | |
"go.mongodb.org/mongo-driver/v2/bson" | |
"go.mongodb.org/mongo-driver/v2/mongo" | |
) | |
func TestReflectionFreeInsertMany(t *testing.T) { | |
docs := []bson.D{ | |
{{"x", 1}}, | |
{{"y", 2}}, | |
} | |
rawDocs, err := rfConversion(docs) | |
require.NoError(t, err, "rfConversion failed") | |
fmt.Println("Raw documents:", rawDocs) | |
client, err := mongo.Connect() | |
require.NoError(t, err, "Failed to connect to MongoDB") | |
defer func() { | |
err := client.Disconnect(context.Background()) | |
require.NoError(t, err, "Failed to disconnect from MongoDB") | |
}() | |
coll := client.Database("testdb").Collection("testcoll") | |
_, err = coll.InsertMany(context.Background(), rawDocs) | |
require.NoError(t, err, "InsertMany failed") | |
} | |
// rfConversion converts a slice of documents into a slice of bson.Raw | |
// documents. | |
func rfConversion(documents interface{}) ([]any, error) { | |
bytes, err := bson.Marshal(struct { | |
Arr any `bson:"arr"` | |
}{Arr: documents}) | |
if err != nil { | |
return nil, err | |
} | |
raw := bson.Raw(bytes).Lookup("arr") | |
var docSlice []any | |
switch raw.Type { | |
case bson.TypeArray: | |
elems, err := bson.Raw(raw.Array()).Elements() | |
if err != nil { | |
return nil, err | |
} | |
docSlice = make([]any, len(elems)) | |
for idx, elem := range elems { | |
docSlice[idx] = elem.Value().Document() | |
} | |
} | |
return docSlice, nil | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment