mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-08-23 00:31:06 +08:00
feat[Syncer]: implement Google Cloud Storage data source (#18420)
### Summary As title
This commit is contained in:
@@ -32,6 +32,7 @@ func RegisterBuiltIns(registry *Registry) {
|
||||
registerBuiltIn(registry, "gmail", NewGmailConnector)
|
||||
registerBuiltIn(registry, "google-drive", NewGoogleDriveConnector)
|
||||
registerBuiltIn(registry, "google_drive", NewGoogleDriveConnector)
|
||||
registerBuiltIn(registry, "google_cloud_storage", NewGoogleCloudStorageConnector)
|
||||
registerBuiltIn(registry, "outlook", NewOutlookConnector)
|
||||
registerBuiltIn(registry, "notion", NewNotionConnector)
|
||||
registerBuiltIn(registry, "rest_api", NewRestAPIConnector)
|
||||
|
||||
472
internal/syncer/connector/google_cloud_storage.go
Normal file
472
internal/syncer/connector/google_cloud_storage.go
Normal file
@@ -0,0 +1,472 @@
|
||||
//
|
||||
// Copyright 2026 The InfiniFlow Authors. All Rights Reserved.
|
||||
//
|
||||
// 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
|
||||
//
|
||||
// Unless required by applicable law or agreed to in writing, software
|
||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
//
|
||||
|
||||
package connector
|
||||
|
||||
import (
|
||||
"context"
|
||||
"encoding/json"
|
||||
"fmt"
|
||||
"io"
|
||||
"net/url"
|
||||
"path"
|
||||
"path/filepath"
|
||||
"sort"
|
||||
"strings"
|
||||
"time"
|
||||
|
||||
"github.com/aws/aws-sdk-go-v2/aws"
|
||||
awssdkconfig "github.com/aws/aws-sdk-go-v2/config"
|
||||
"github.com/aws/aws-sdk-go-v2/credentials"
|
||||
"github.com/aws/aws-sdk-go-v2/service/s3"
|
||||
"github.com/aws/aws-sdk-go-v2/service/s3/types"
|
||||
)
|
||||
|
||||
const (
|
||||
defaultGoogleCloudStorageBatchSize = 32
|
||||
defaultGoogleCloudStorageSizeThreshold = 64 * 1024 * 1024
|
||||
googleCloudStorageEndpoint = "https://storage.googleapis.com"
|
||||
googleCloudStorageSource = "google_cloud_storage"
|
||||
)
|
||||
|
||||
// GoogleCloudStorageConnector reads objects from Google Cloud Storage through
|
||||
// the S3-compatible XML API used by the Python blob connector.
|
||||
type GoogleCloudStorageConnector struct {
|
||||
bucketName string
|
||||
prefix string
|
||||
accessKeyID string
|
||||
secretKey string
|
||||
allowImages bool
|
||||
batchSize int
|
||||
sizeThreshold int64
|
||||
|
||||
client *s3.Client
|
||||
listObjects func(ctx context.Context, startAfter string, maxKeys int32) ([]googleCloudStorageObject, string, bool, error)
|
||||
downloadObject func(ctx context.Context, key string, sizeThreshold int64) ([]byte, error)
|
||||
}
|
||||
|
||||
// NewGoogleCloudStorageConnector creates a Google Cloud Storage connector from
|
||||
// Python-compatible config.
|
||||
func NewGoogleCloudStorageConnector(config map[string]any) (*GoogleCloudStorageConnector, error) {
|
||||
credentials := configAnyMap(config["credentials"])
|
||||
batchSize := configInt(firstNonEmpty(stringConfig(config["sync_batch_size"]), stringConfig(config["batch_size"])), defaultGoogleCloudStorageBatchSize)
|
||||
sizeThreshold := int64(configInt(config["size_threshold"], defaultGoogleCloudStorageSizeThreshold))
|
||||
if sizeThreshold <= 0 {
|
||||
sizeThreshold = defaultGoogleCloudStorageSizeThreshold
|
||||
}
|
||||
return &GoogleCloudStorageConnector{
|
||||
bucketName: strings.TrimSpace(stringConfig(config["bucket_name"])),
|
||||
prefix: normalizeGoogleCloudStoragePrefix(stringConfig(config["prefix"])),
|
||||
accessKeyID: strings.TrimSpace(stringConfig(credentials["access_key_id"])),
|
||||
secretKey: stringConfig(credentials["secret_access_key"]),
|
||||
allowImages: configBoolDefault(config["allow_images"], false),
|
||||
batchSize: batchSize,
|
||||
sizeThreshold: sizeThreshold,
|
||||
}, nil
|
||||
}
|
||||
|
||||
// Validate validates Google Cloud Storage connector settings and credentials.
|
||||
func (c *GoogleCloudStorageConnector) Validate(ctx context.Context) error {
|
||||
if c == nil {
|
||||
return fmt.Errorf("Google Cloud Storage connector is nil")
|
||||
}
|
||||
if c.bucketName == "" {
|
||||
return fmt.Errorf("No bucket name was provided in connector settings.")
|
||||
}
|
||||
if c.accessKeyID == "" || c.secretKey == "" {
|
||||
return fmt.Errorf("Google Cloud Storage credentials are required")
|
||||
}
|
||||
if c.batchSize <= 0 {
|
||||
return fmt.Errorf("batch_size must be a positive integer")
|
||||
}
|
||||
if _, err := c.ensureClient(ctx); err != nil {
|
||||
return err
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// ValidateConnectorSetting validates Google Cloud Storage settings from an
|
||||
// unsaved config.
|
||||
func (c *GoogleCloudStorageConnector) ValidateConnectorSetting(ctx context.Context, request map[string]any) error {
|
||||
ctx, cancel := context.WithTimeout(ctx, connectorSettingValidationTimeout)
|
||||
defer cancel()
|
||||
return c.Validate(ctx)
|
||||
}
|
||||
|
||||
// OpenSync opens one Google Cloud Storage sync session.
|
||||
func (c *GoogleCloudStorageConnector) OpenSync(ctx context.Context, request SyncRequest) (SyncSession, error) {
|
||||
if err := c.Validate(ctx); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
session := &googleCloudStorageSyncSession{
|
||||
connector: c,
|
||||
request: request,
|
||||
batchSize: c.batchSize,
|
||||
}
|
||||
if request.Resume != nil {
|
||||
session.applyResume(request.Resume)
|
||||
}
|
||||
return session, nil
|
||||
}
|
||||
|
||||
// OpenPrune opens one complete Google Cloud Storage prune snapshot session.
|
||||
func (c *GoogleCloudStorageConnector) OpenPrune(ctx context.Context, request PruneRequest) (PruneSession, error) {
|
||||
if err := c.Validate(ctx); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
objects, err := c.collectObjects(ctx)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
documents := make([]SlimDocument, 0, len(objects))
|
||||
for _, object := range objects {
|
||||
if object.Key == "" || strings.HasSuffix(object.Key, "/") {
|
||||
continue
|
||||
}
|
||||
documents = append(documents, SlimDocument{SourceID: googleCloudStorageSourceID(c.bucketName, object.Key)})
|
||||
}
|
||||
return &googleCloudStoragePruneSession{documents: documents, batchSize: c.batchSize}, nil
|
||||
}
|
||||
|
||||
// Fetch downloads a Google Cloud Storage object body.
|
||||
func (c *GoogleCloudStorageConnector) Fetch(ctx context.Context, ref FetchReference) ([]byte, error) {
|
||||
var fetch googleCloudStorageFetchReference
|
||||
if err := json.Unmarshal([]byte(ref.Key), &fetch); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return c.download(ctx, fetch.Key)
|
||||
}
|
||||
|
||||
func (c *GoogleCloudStorageConnector) ensureClient(ctx context.Context) (*s3.Client, error) {
|
||||
if c.client != nil {
|
||||
return c.client, nil
|
||||
}
|
||||
cfg, err := awssdkconfig.LoadDefaultConfig(
|
||||
ctx,
|
||||
awssdkconfig.WithRegion("auto"),
|
||||
awssdkconfig.WithCredentialsProvider(credentials.NewStaticCredentialsProvider(c.accessKeyID, c.secretKey, "")),
|
||||
)
|
||||
if err != nil {
|
||||
return nil, fmt.Errorf("load Google Cloud Storage config: %w", err)
|
||||
}
|
||||
c.client = s3.NewFromConfig(cfg, func(options *s3.Options) {
|
||||
options.BaseEndpoint = aws.String(googleCloudStorageEndpoint)
|
||||
options.UsePathStyle = true
|
||||
})
|
||||
return c.client, nil
|
||||
}
|
||||
|
||||
func (c *GoogleCloudStorageConnector) listObjectPage(ctx context.Context, startAfter string, maxKeys int32) ([]googleCloudStorageObject, string, bool, error) {
|
||||
if c.listObjects != nil {
|
||||
return c.listObjects(ctx, startAfter, maxKeys)
|
||||
}
|
||||
client, err := c.ensureClient(ctx)
|
||||
if err != nil {
|
||||
return nil, "", false, err
|
||||
}
|
||||
input := &s3.ListObjectsV2Input{
|
||||
Bucket: aws.String(c.bucketName),
|
||||
Prefix: aws.String(c.prefix),
|
||||
StartAfter: aws.String(startAfter),
|
||||
}
|
||||
if maxKeys > 0 {
|
||||
input.MaxKeys = aws.Int32(maxKeys)
|
||||
}
|
||||
output, err := client.ListObjectsV2(ctx, input)
|
||||
if err != nil {
|
||||
return nil, "", false, err
|
||||
}
|
||||
objects := make([]googleCloudStorageObject, 0, len(output.Contents))
|
||||
for _, object := range output.Contents {
|
||||
objects = append(objects, googleCloudStorageObjectFromS3(object))
|
||||
}
|
||||
nextStartAfter := ""
|
||||
if len(objects) > 0 {
|
||||
nextStartAfter = googleCloudStorageSourceID(c.bucketName, objects[len(objects)-1].Key)
|
||||
}
|
||||
return objects, nextStartAfter, aws.ToBool(output.IsTruncated), nil
|
||||
}
|
||||
|
||||
func (c *GoogleCloudStorageConnector) collectObjects(ctx context.Context) ([]googleCloudStorageObject, error) {
|
||||
var objects []googleCloudStorageObject
|
||||
startAfter := ""
|
||||
for {
|
||||
page, nextStartAfter, hasMore, err := c.listObjectPage(ctx, startAfter, int32(c.batchSize))
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
for _, object := range page {
|
||||
if object.Key == "" || strings.HasSuffix(object.Key, "/") {
|
||||
continue
|
||||
}
|
||||
objects = append(objects, object)
|
||||
}
|
||||
if !hasMore {
|
||||
break
|
||||
}
|
||||
startAfter = strings.TrimPrefix(nextStartAfter, googleCloudStorageSourceID(c.bucketName, ""))
|
||||
if startAfter == "" {
|
||||
break
|
||||
}
|
||||
}
|
||||
sort.SliceStable(objects, func(i, j int) bool {
|
||||
return objects[i].Key < objects[j].Key
|
||||
})
|
||||
return objects, nil
|
||||
}
|
||||
|
||||
func (c *GoogleCloudStorageConnector) download(ctx context.Context, key string) ([]byte, error) {
|
||||
if c.downloadObject != nil {
|
||||
return c.downloadObject(ctx, key, c.sizeThreshold)
|
||||
}
|
||||
client, err := c.ensureClient(ctx)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
output, err := client.GetObject(ctx, &s3.GetObjectInput{
|
||||
Bucket: aws.String(c.bucketName),
|
||||
Key: aws.String(key),
|
||||
})
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
defer output.Body.Close()
|
||||
return readGoogleCloudStorageBody(output.Body, key, c.sizeThreshold)
|
||||
}
|
||||
|
||||
type googleCloudStorageObject struct {
|
||||
Key string
|
||||
LastModified time.Time
|
||||
Size int64
|
||||
ETag string
|
||||
}
|
||||
|
||||
func googleCloudStorageObjectFromS3(object types.Object) googleCloudStorageObject {
|
||||
updatedAt := time.Time{}
|
||||
if object.LastModified != nil {
|
||||
updatedAt = object.LastModified.UTC()
|
||||
}
|
||||
return googleCloudStorageObject{
|
||||
Key: aws.ToString(object.Key),
|
||||
LastModified: updatedAt,
|
||||
Size: aws.ToInt64(object.Size),
|
||||
ETag: aws.ToString(object.ETag),
|
||||
}
|
||||
}
|
||||
|
||||
type googleCloudStorageSyncSession struct {
|
||||
connector *GoogleCloudStorageConnector
|
||||
request SyncRequest
|
||||
batchSize int
|
||||
startAfter string
|
||||
done bool
|
||||
}
|
||||
|
||||
// NextBatch returns the next Google Cloud Storage document batch.
|
||||
func (s *googleCloudStorageSyncSession) NextBatch(ctx context.Context) (SyncBatch, error) {
|
||||
for {
|
||||
if s.done {
|
||||
return SyncBatch{}, io.EOF
|
||||
}
|
||||
previousStartAfter := s.startAfter
|
||||
objects, nextStartAfter, hasMore, err := s.connector.listObjectPage(ctx, s.startAfter, int32(s.batchSize))
|
||||
if err != nil {
|
||||
return SyncBatch{}, err
|
||||
}
|
||||
if !hasMore {
|
||||
s.done = true
|
||||
}
|
||||
if nextStartAfter != "" {
|
||||
s.startAfter = strings.TrimPrefix(nextStartAfter, googleCloudStorageSourceID(s.connector.bucketName, ""))
|
||||
}
|
||||
if hasMore && s.startAfter == previousStartAfter {
|
||||
return SyncBatch{}, fmt.Errorf("Google Cloud Storage listing did not advance from %q", previousStartAfter)
|
||||
}
|
||||
|
||||
documents := make([]SourceDocument, 0, len(objects))
|
||||
for _, object := range objects {
|
||||
sourceID := googleCloudStorageSourceID(s.connector.bucketName, object.Key)
|
||||
if !includeGoogleCloudStorageObject(s.request, sourceID, object) {
|
||||
continue
|
||||
}
|
||||
document, ok := s.connector.sourceDocument(sourceID, object)
|
||||
if ok {
|
||||
documents = append(documents, document)
|
||||
}
|
||||
}
|
||||
if len(documents) == 0 {
|
||||
continue
|
||||
}
|
||||
last := documents[len(documents)-1]
|
||||
updatedAt := last.UpdatedAt
|
||||
return SyncBatch{
|
||||
Documents: documents,
|
||||
Checkpoint: &SyncCheckpoint{
|
||||
Cursor: last.SourceID,
|
||||
SourceID: last.SourceID,
|
||||
UpdatedAt: &updatedAt,
|
||||
},
|
||||
}, nil
|
||||
}
|
||||
}
|
||||
|
||||
// Close closes the Google Cloud Storage sync session.
|
||||
func (s *googleCloudStorageSyncSession) Close() error {
|
||||
return nil
|
||||
}
|
||||
|
||||
// Fetch downloads a delayed Google Cloud Storage document body.
|
||||
func (s *googleCloudStorageSyncSession) Fetch(ctx context.Context, ref FetchReference) ([]byte, error) {
|
||||
return s.connector.Fetch(ctx, ref)
|
||||
}
|
||||
|
||||
func (s *googleCloudStorageSyncSession) applyResume(checkpoint *SyncCheckpoint) {
|
||||
sourceID := firstNonEmpty(checkpoint.SourceID, checkpoint.Cursor)
|
||||
prefix := googleCloudStorageSourceID(s.connector.bucketName, "")
|
||||
if sourceID == "" || !strings.HasPrefix(sourceID, prefix) {
|
||||
return
|
||||
}
|
||||
s.startAfter = strings.TrimPrefix(sourceID, prefix)
|
||||
}
|
||||
|
||||
func (c *GoogleCloudStorageConnector) sourceDocument(sourceID string, object googleCloudStorageObject) (SourceDocument, bool) {
|
||||
if object.Key == "" || strings.HasSuffix(object.Key, "/") || (!c.allowImages && object.isImage()) {
|
||||
return SourceDocument{}, false
|
||||
}
|
||||
fileName := path.Base(object.Key)
|
||||
fetch := googleCloudStorageFetchReference{Key: object.Key}
|
||||
fetchKey, _ := json.Marshal(fetch)
|
||||
return SourceDocument{
|
||||
SourceID: sourceID,
|
||||
SemanticIdentifier: c.semanticIdentifier(object.Key, fileName),
|
||||
Extension: strings.ToLower(filepath.Ext(fileName)),
|
||||
FetchRef: &FetchReference{Key: string(fetchKey), SizeHint: object.Size},
|
||||
UpdatedAt: object.LastModified,
|
||||
SizeBytes: object.Size,
|
||||
Metadata: map[string]any{
|
||||
"url": googleCloudStorageConsoleURL(c.bucketName, object.Key),
|
||||
},
|
||||
Fingerprint: normalizedGoogleCloudStorageETag(object.ETag),
|
||||
}, true
|
||||
}
|
||||
|
||||
func (c *GoogleCloudStorageConnector) semanticIdentifier(key, fileName string) string {
|
||||
relativePath := key
|
||||
if c.prefix != "" {
|
||||
relativePath = strings.TrimPrefix(key, c.prefix)
|
||||
}
|
||||
if relativePath == "" {
|
||||
return fileName
|
||||
}
|
||||
return strings.ReplaceAll(relativePath, "/", " / ")
|
||||
}
|
||||
|
||||
func (o googleCloudStorageObject) isImage() bool {
|
||||
switch strings.ToLower(filepath.Ext(o.Key)) {
|
||||
case ".jpg", ".jpeg", ".png", ".webp", ".heic", ".heif":
|
||||
return true
|
||||
default:
|
||||
return false
|
||||
}
|
||||
}
|
||||
|
||||
type googleCloudStoragePruneSession struct {
|
||||
documents []SlimDocument
|
||||
batchSize int
|
||||
batchIndex int
|
||||
}
|
||||
|
||||
// NextBatch returns the next Google Cloud Storage prune snapshot batch.
|
||||
func (s *googleCloudStoragePruneSession) NextBatch(ctx context.Context) (PruneBatch, error) {
|
||||
if s.batchIndex >= len(s.documents) {
|
||||
return PruneBatch{}, io.EOF
|
||||
}
|
||||
end := s.batchIndex + s.batchSize
|
||||
if end > len(s.documents) {
|
||||
end = len(s.documents)
|
||||
}
|
||||
documents := s.documents[s.batchIndex:end]
|
||||
s.batchIndex = end
|
||||
return PruneBatch{Documents: documents}, nil
|
||||
}
|
||||
|
||||
// Close closes the Google Cloud Storage prune session.
|
||||
func (s *googleCloudStoragePruneSession) Close() error {
|
||||
return nil
|
||||
}
|
||||
|
||||
type googleCloudStorageFetchReference struct {
|
||||
Key string `json:"key"`
|
||||
}
|
||||
|
||||
func includeGoogleCloudStorageObject(request SyncRequest, sourceID string, object googleCloudStorageObject) bool {
|
||||
if request.FromBeginning {
|
||||
return true
|
||||
}
|
||||
if object.LastModified.IsZero() {
|
||||
return true
|
||||
}
|
||||
if len(request.Fingerprints) > 0 {
|
||||
fingerprint := normalizedGoogleCloudStorageETag(object.ETag)
|
||||
stored, ok := request.Fingerprints[sourceID]
|
||||
return fingerprint == "" || !ok || stored == "" || stored != fingerprint
|
||||
}
|
||||
return !beforeOrAtWindowStart(object.LastModified, request.WindowStart) && !afterWindowEnd(object.LastModified, request.WindowEnd)
|
||||
}
|
||||
|
||||
func normalizeGoogleCloudStoragePrefix(prefix string) string {
|
||||
prefix = strings.TrimSpace(prefix)
|
||||
if prefix != "" && !strings.HasSuffix(prefix, "/") {
|
||||
prefix += "/"
|
||||
}
|
||||
return prefix
|
||||
}
|
||||
|
||||
func googleCloudStorageSourceID(bucketName, key string) string {
|
||||
return fmt.Sprintf("%s:%s:%s", googleCloudStorageSource, bucketName, key)
|
||||
}
|
||||
|
||||
func normalizedGoogleCloudStorageETag(rawETag string) string {
|
||||
rawETag = strings.Trim(strings.TrimSpace(rawETag), `"`)
|
||||
if rawETag == "" {
|
||||
return ""
|
||||
}
|
||||
return contentFingerprint([]byte(rawETag))
|
||||
}
|
||||
|
||||
func googleCloudStorageConsoleURL(bucketName, key string) string {
|
||||
return fmt.Sprintf("https://console.cloud.google.com/storage/browser/_details/%s/%s", bucketName, pathEscapeGoogleCloudStorageKey(key))
|
||||
}
|
||||
|
||||
func pathEscapeGoogleCloudStorageKey(key string) string {
|
||||
parts := strings.Split(key, "/")
|
||||
for index, part := range parts {
|
||||
parts[index] = url.PathEscape(part)
|
||||
}
|
||||
return strings.Join(parts, "/")
|
||||
}
|
||||
|
||||
func readGoogleCloudStorageBody(body io.Reader, key string, sizeThreshold int64) ([]byte, error) {
|
||||
limited := io.LimitReader(body, sizeThreshold+1)
|
||||
data, err := io.ReadAll(limited)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
if int64(len(data)) > sizeThreshold {
|
||||
return nil, fmt.Errorf("%s exceeds size threshold of %d", key, sizeThreshold)
|
||||
}
|
||||
return data, nil
|
||||
}
|
||||
222
internal/syncer/connector/google_cloud_storage_test.go
Normal file
222
internal/syncer/connector/google_cloud_storage_test.go
Normal file
@@ -0,0 +1,222 @@
|
||||
package connector
|
||||
|
||||
import (
|
||||
"bytes"
|
||||
"context"
|
||||
"errors"
|
||||
"io"
|
||||
"testing"
|
||||
)
|
||||
|
||||
func TestGoogleCloudStorageConnectorOpenSyncUsesFingerprintAndFetch(t *testing.T) {
|
||||
old := mustTime(t, "2026-01-01T00:00:00Z")
|
||||
updated := mustTime(t, "2026-01-03T00:00:00Z")
|
||||
connector := newTestGoogleCloudStorageConnector(t, []googleCloudStorageObject{
|
||||
{Key: "docs/old.txt", LastModified: old, Size: 8, ETag: `"old-etag"`},
|
||||
{Key: "docs/new.txt", LastModified: updated, Size: 8, ETag: `"new-etag"`},
|
||||
})
|
||||
|
||||
start := mustTime(t, "2026-01-02T00:00:00Z")
|
||||
session, err := connector.OpenSync(context.Background(), SyncRequest{
|
||||
WindowStart: &start,
|
||||
WindowEnd: mustTime(t, "2026-01-04T00:00:00Z"),
|
||||
Fingerprints: map[string]string{
|
||||
googleCloudStorageSourceID("bucket", "docs/old.txt"): normalizedGoogleCloudStorageETag(`"old-etag"`),
|
||||
},
|
||||
})
|
||||
if err != nil {
|
||||
t.Fatalf("OpenSync: %v", err)
|
||||
}
|
||||
|
||||
batch, err := session.NextBatch(context.Background())
|
||||
if err != nil {
|
||||
t.Fatalf("NextBatch: %v", err)
|
||||
}
|
||||
if len(batch.Documents) != 1 {
|
||||
t.Fatalf("documents len = %d, want 1", len(batch.Documents))
|
||||
}
|
||||
doc := batch.Documents[0]
|
||||
if doc.SourceID != googleCloudStorageSourceID("bucket", "docs/new.txt") {
|
||||
t.Fatalf("source id = %q", doc.SourceID)
|
||||
}
|
||||
if doc.SemanticIdentifier != "new.txt" {
|
||||
t.Fatalf("semantic identifier = %q", doc.SemanticIdentifier)
|
||||
}
|
||||
if doc.Extension != ".txt" {
|
||||
t.Fatalf("extension = %q", doc.Extension)
|
||||
}
|
||||
if doc.Fingerprint != normalizedGoogleCloudStorageETag(`"new-etag"`) {
|
||||
t.Fatalf("fingerprint = %q", doc.Fingerprint)
|
||||
}
|
||||
if doc.FetchRef == nil {
|
||||
t.Fatalf("fetch ref is nil")
|
||||
}
|
||||
fetcher, ok := session.(Fetcher)
|
||||
if !ok {
|
||||
t.Fatalf("session does not implement Fetcher")
|
||||
}
|
||||
blob, err := fetcher.Fetch(context.Background(), *doc.FetchRef)
|
||||
if err != nil {
|
||||
t.Fatalf("Fetch: %v", err)
|
||||
}
|
||||
if string(blob) != "body:new" {
|
||||
t.Fatalf("blob = %q", blob)
|
||||
}
|
||||
if _, err = session.NextBatch(context.Background()); !errors.Is(err, io.EOF) {
|
||||
t.Fatalf("NextBatch EOF = %v", err)
|
||||
}
|
||||
}
|
||||
|
||||
func TestGoogleCloudStorageConnectorOpenSyncDefersListingUntilNextBatch(t *testing.T) {
|
||||
connector := newTestGoogleCloudStorageConnector(t, []googleCloudStorageObject{
|
||||
{Key: "docs/a.txt", LastModified: mustTime(t, "2026-01-01T00:00:00Z"), Size: 1, ETag: "a"},
|
||||
})
|
||||
var listCalls int
|
||||
baseListObjects := connector.listObjects
|
||||
connector.listObjects = func(ctx context.Context, startAfter string, maxKeys int32) ([]googleCloudStorageObject, string, bool, error) {
|
||||
listCalls++
|
||||
return baseListObjects(ctx, startAfter, maxKeys)
|
||||
}
|
||||
|
||||
session, err := connector.OpenSync(context.Background(), SyncRequest{FromBeginning: true})
|
||||
if err != nil {
|
||||
t.Fatalf("OpenSync: %v", err)
|
||||
}
|
||||
if listCalls != 0 {
|
||||
t.Fatalf("OpenSync list calls = %d, want 0", listCalls)
|
||||
}
|
||||
if _, err := session.NextBatch(context.Background()); err != nil {
|
||||
t.Fatalf("NextBatch: %v", err)
|
||||
}
|
||||
if listCalls != 1 {
|
||||
t.Fatalf("NextBatch list calls = %d, want 1", listCalls)
|
||||
}
|
||||
}
|
||||
|
||||
func TestGoogleCloudStorageConnectorOpenSyncFiltersImagesUnlessAllowed(t *testing.T) {
|
||||
objects := []googleCloudStorageObject{
|
||||
{Key: "docs/a.png", LastModified: mustTime(t, "2026-01-01T00:00:00Z"), Size: 1, ETag: "a"},
|
||||
{Key: "docs/b.txt", LastModified: mustTime(t, "2026-01-02T00:00:00Z"), Size: 1, ETag: "b"},
|
||||
}
|
||||
connector := newTestGoogleCloudStorageConnector(t, objects)
|
||||
session, err := connector.OpenSync(context.Background(), SyncRequest{FromBeginning: true})
|
||||
if err != nil {
|
||||
t.Fatalf("OpenSync: %v", err)
|
||||
}
|
||||
batch, err := session.NextBatch(context.Background())
|
||||
if err != nil {
|
||||
t.Fatalf("NextBatch: %v", err)
|
||||
}
|
||||
if len(batch.Documents) != 1 || batch.Documents[0].SourceID != googleCloudStorageSourceID("bucket", "docs/b.txt") {
|
||||
t.Fatalf("documents = %+v", batch.Documents)
|
||||
}
|
||||
|
||||
allowed := newTestGoogleCloudStorageConnector(t, objects)
|
||||
allowed.allowImages = true
|
||||
session, err = allowed.OpenSync(context.Background(), SyncRequest{FromBeginning: true})
|
||||
if err != nil {
|
||||
t.Fatalf("allow images OpenSync: %v", err)
|
||||
}
|
||||
batch, err = session.NextBatch(context.Background())
|
||||
if err != nil {
|
||||
t.Fatalf("allow images NextBatch: %v", err)
|
||||
}
|
||||
if len(batch.Documents) != 2 {
|
||||
t.Fatalf("allow images documents len = %d, want 2", len(batch.Documents))
|
||||
}
|
||||
}
|
||||
|
||||
func TestGoogleCloudStorageConnectorOpenPruneReturnsSlimSnapshot(t *testing.T) {
|
||||
connector := newTestGoogleCloudStorageConnector(t, []googleCloudStorageObject{
|
||||
{Key: "docs/a.txt", LastModified: mustTime(t, "2026-01-01T00:00:00Z"), Size: 1, ETag: "a"},
|
||||
{Key: "docs/b.txt", LastModified: mustTime(t, "2026-01-02T00:00:00Z"), Size: 1, ETag: "b"},
|
||||
{Key: "docs/folder/", LastModified: mustTime(t, "2026-01-02T00:00:00Z"), Size: 0, ETag: "folder"},
|
||||
})
|
||||
session, err := connector.OpenPrune(context.Background(), PruneRequest{})
|
||||
if err != nil {
|
||||
t.Fatalf("OpenPrune: %v", err)
|
||||
}
|
||||
batch, err := session.NextBatch(context.Background())
|
||||
if err != nil {
|
||||
t.Fatalf("NextBatch: %v", err)
|
||||
}
|
||||
if len(batch.Documents) != 2 {
|
||||
t.Fatalf("documents len = %d, want 2", len(batch.Documents))
|
||||
}
|
||||
if batch.Documents[0].SourceID != googleCloudStorageSourceID("bucket", "docs/a.txt") || batch.Documents[1].SourceID != googleCloudStorageSourceID("bucket", "docs/b.txt") {
|
||||
t.Fatalf("documents = %+v", batch.Documents)
|
||||
}
|
||||
}
|
||||
|
||||
func TestGoogleCloudStorageConnectorOpenSyncIncludesMissingFingerprint(t *testing.T) {
|
||||
connector := newTestGoogleCloudStorageConnector(t, []googleCloudStorageObject{
|
||||
{Key: "docs/no-etag.txt", LastModified: mustTime(t, "2026-01-01T00:00:00Z"), Size: 1},
|
||||
})
|
||||
session, err := connector.OpenSync(context.Background(), SyncRequest{
|
||||
Fingerprints: map[string]string{"other": "fingerprint"},
|
||||
})
|
||||
if err != nil {
|
||||
t.Fatalf("OpenSync: %v", err)
|
||||
}
|
||||
batch, err := session.NextBatch(context.Background())
|
||||
if err != nil {
|
||||
t.Fatalf("NextBatch: %v", err)
|
||||
}
|
||||
if len(batch.Documents) != 1 {
|
||||
t.Fatalf("documents len = %d, want 1", len(batch.Documents))
|
||||
}
|
||||
}
|
||||
|
||||
func TestReadGoogleCloudStorageBodySizeThreshold(t *testing.T) {
|
||||
_, err := readGoogleCloudStorageBody(bytes.NewBufferString("12345"), "large.txt", 4)
|
||||
if err == nil {
|
||||
t.Fatalf("expected size threshold error")
|
||||
}
|
||||
}
|
||||
|
||||
func newTestGoogleCloudStorageConnector(t *testing.T, objects []googleCloudStorageObject) *GoogleCloudStorageConnector {
|
||||
t.Helper()
|
||||
connector, err := NewGoogleCloudStorageConnector(map[string]any{
|
||||
"bucket_name": "bucket",
|
||||
"prefix": "docs",
|
||||
"batch_size": 2,
|
||||
"credentials": map[string]any{
|
||||
"access_key_id": "access",
|
||||
"secret_access_key": "secret",
|
||||
},
|
||||
})
|
||||
if err != nil {
|
||||
t.Fatalf("NewGoogleCloudStorageConnector: %v", err)
|
||||
}
|
||||
connector.listObjects = func(ctx context.Context, startAfter string, maxKeys int32) ([]googleCloudStorageObject, string, bool, error) {
|
||||
var out []googleCloudStorageObject
|
||||
for _, object := range objects {
|
||||
if startAfter != "" && object.Key <= startAfter {
|
||||
continue
|
||||
}
|
||||
out = append(out, object)
|
||||
if maxKeys > 0 && len(out) >= int(maxKeys) {
|
||||
break
|
||||
}
|
||||
}
|
||||
hasMore := false
|
||||
nextStartAfter := ""
|
||||
if len(out) > 0 {
|
||||
nextStartAfter = googleCloudStorageSourceID(connector.bucketName, out[len(out)-1].Key)
|
||||
for _, object := range objects {
|
||||
if object.Key > out[len(out)-1].Key {
|
||||
hasMore = true
|
||||
break
|
||||
}
|
||||
}
|
||||
}
|
||||
return out, nextStartAfter, hasMore, nil
|
||||
}
|
||||
connector.downloadObject = func(ctx context.Context, key string, sizeThreshold int64) ([]byte, error) {
|
||||
if key == "docs/new.txt" {
|
||||
return []byte("body:new"), nil
|
||||
}
|
||||
return []byte("body:" + key), nil
|
||||
}
|
||||
return connector
|
||||
}
|
||||
Reference in New Issue
Block a user