put integration test in integration test file
This commit is contained in:
@@ -4,11 +4,14 @@
|
||||
package s3
|
||||
|
||||
import (
|
||||
"encoding/base64"
|
||||
"fmt"
|
||||
"os"
|
||||
"sync"
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
"github.com/kylelemons/godebug/pretty"
|
||||
"github.com/stretchr/testify/assert"
|
||||
"github.com/stretchr/testify/require"
|
||||
"google.golang.org/protobuf/types/known/anypb"
|
||||
@@ -16,6 +19,7 @@ import (
|
||||
"github.com/trufflesecurity/trufflehog/v3/pkg/common"
|
||||
"github.com/trufflesecurity/trufflehog/v3/pkg/context"
|
||||
"github.com/trufflesecurity/trufflehog/v3/pkg/pb/credentialspb"
|
||||
"github.com/trufflesecurity/trufflehog/v3/pkg/pb/source_metadatapb"
|
||||
"github.com/trufflesecurity/trufflehog/v3/pkg/pb/sourcespb"
|
||||
"github.com/trufflesecurity/trufflehog/v3/pkg/sources"
|
||||
)
|
||||
@@ -391,3 +395,251 @@ func TestSourceChunksResumptionMultipleBucketsIgnoredBucket(t *testing.T) {
|
||||
|
||||
assert.Equal(t, 103, count, "Should have processed all remaining data on resume")
|
||||
}
|
||||
|
||||
func TestSource_Chunks(t *testing.T) {
|
||||
ctx, cancel := context.WithTimeout(context.Background(), time.Second*30)
|
||||
defer cancel()
|
||||
|
||||
secret, err := common.GetTestSecret(ctx)
|
||||
if err != nil {
|
||||
t.Fatal(fmt.Errorf("failed to access secret: %v", err))
|
||||
}
|
||||
|
||||
s3key := secret.MustGetField("AWS_S3_KEY")
|
||||
s3secret := secret.MustGetField("AWS_S3_SECRET")
|
||||
|
||||
type init struct {
|
||||
name string
|
||||
verify bool
|
||||
connection *sourcespb.S3
|
||||
setEnv map[string]string
|
||||
}
|
||||
tests := []struct {
|
||||
name string
|
||||
init init
|
||||
wantErr bool
|
||||
wantChunkData string
|
||||
}{
|
||||
{
|
||||
name: "gets chunks",
|
||||
init: init{
|
||||
connection: &sourcespb.S3{
|
||||
Credential: &sourcespb.S3_AccessKey{
|
||||
AccessKey: &credentialspb.KeySecret{
|
||||
Key: s3key,
|
||||
Secret: s3secret,
|
||||
},
|
||||
},
|
||||
Buckets: []string{"truffletestbucket-s3-tests"},
|
||||
},
|
||||
},
|
||||
wantErr: false,
|
||||
wantChunkData: `W2RlZmF1bHRdCmF3c19hY2Nlc3Nfa2V5X2lkID0gQUtJQTM1T0hYMkRTT1pHNjQ3TkgKYXdzX3NlY3JldF9hY2Nlc3Nfa2V5ID0gUXk5OVMrWkIvQ1dsRk50eFBBaWQ3Z0d6dnNyWGhCQjd1ckFDQUxwWgpvdXRwdXQgPSBqc29uCnJlZ2lvbiA9IHVzLWVhc3QtMg==`,
|
||||
},
|
||||
{
|
||||
name: "gets chunks after assuming role",
|
||||
// This test will attempt to scan every bucket in the account, but the role policy blocks access to every
|
||||
// bucket except the one we want. This (expected behavior) causes errors in the test log output, but these
|
||||
// errors shouldn't actually cause test failures.
|
||||
init: init{
|
||||
connection: &sourcespb.S3{
|
||||
Roles: []string{"arn:aws:iam::619888638459:role/s3-test-assume-role"},
|
||||
},
|
||||
setEnv: map[string]string{
|
||||
"AWS_ACCESS_KEY_ID": s3key,
|
||||
"AWS_SECRET_ACCESS_KEY": s3secret,
|
||||
},
|
||||
},
|
||||
wantErr: false,
|
||||
wantChunkData: `W2RlZmF1bHRdCmF3c19zZWNyZXRfYWNjZXNzX2tleSA9IFF5OTlTK1pCL0NXbEZOdHhQQWlkN2dHenZzclhoQkI3dXJBQ0FMcFoKYXdzX2FjY2Vzc19rZXlfaWQgPSBBS0lBMzVPSFgyRFNPWkc2NDdOSApvdXRwdXQgPSBqc29uCnJlZ2lvbiA9IHVzLWVhc3QtMg==`,
|
||||
},
|
||||
}
|
||||
for _, tt := range tests {
|
||||
t.Run(tt.name, func(t *testing.T) {
|
||||
if tt.name == "gets chunks after assuming role" {
|
||||
t.Skip("skipping until our test environment stabilizes enough that we know how we're going to handle this")
|
||||
}
|
||||
|
||||
ctx, cancel := context.WithTimeout(context.Background(), time.Second*30)
|
||||
defer cancel()
|
||||
|
||||
for k, v := range tt.init.setEnv {
|
||||
t.Setenv(k, v)
|
||||
}
|
||||
|
||||
s := Source{}
|
||||
conn, err := anypb.New(tt.init.connection)
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
|
||||
err = s.Init(ctx, tt.init.name, 0, 0, tt.init.verify, conn, 8)
|
||||
if (err != nil) != tt.wantErr {
|
||||
t.Errorf("Source.Init() error = %v, wantErr %v", err, tt.wantErr)
|
||||
return
|
||||
}
|
||||
chunksCh := make(chan *sources.Chunk, 1)
|
||||
go func() {
|
||||
defer close(chunksCh)
|
||||
err = s.Chunks(ctx, chunksCh)
|
||||
if (err != nil) != tt.wantErr {
|
||||
t.Errorf("Source.Chunks() error = %v, wantErr %v", err, tt.wantErr)
|
||||
os.Exit(1)
|
||||
}
|
||||
}()
|
||||
|
||||
waitFn := func() {
|
||||
receivedFirstChunk := false
|
||||
for {
|
||||
select {
|
||||
case <-ctx.Done():
|
||||
t.Errorf("TestSource_Chunks timed out: %v", ctx.Err())
|
||||
return
|
||||
case gotChunk, ok := <-chunksCh:
|
||||
if !ok {
|
||||
t.Logf("Source.Chunks() finished, channel closed")
|
||||
assert.Equal(t, "", s.GetProgress().EncodedResumeInfo)
|
||||
assert.Equal(t, int64(100), s.GetProgress().PercentComplete)
|
||||
return
|
||||
}
|
||||
if receivedFirstChunk {
|
||||
// wantChunkData is the first chunk data. After the first chunk has
|
||||
// been received and matched below, we want to drain chunksCh
|
||||
// so Source.Chunks() can finish completely.
|
||||
continue
|
||||
}
|
||||
|
||||
receivedFirstChunk = true
|
||||
wantData, _ := base64.StdEncoding.DecodeString(tt.wantChunkData)
|
||||
|
||||
if diff := pretty.Compare(gotChunk.Data, wantData); diff != "" {
|
||||
t.Logf("%s: Source.Chunks() diff: (-got +want)\n%s", tt.name, diff)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
waitFn()
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
func TestSource_Chunks_TargetedScanning(t *testing.T) {
|
||||
ctx, cancel := context.WithTimeout(context.Background(), time.Second*30)
|
||||
defer cancel()
|
||||
|
||||
secret, err := common.GetTestSecret(ctx)
|
||||
if err != nil {
|
||||
t.Skipf("Failed to access secret: %v", err)
|
||||
}
|
||||
|
||||
s3key := secret.MustGetField("AWS_S3_KEY")
|
||||
s3secret := secret.MustGetField("AWS_S3_SECRET")
|
||||
|
||||
// Create S3 source
|
||||
s := Source{}
|
||||
conn, err := anypb.New(&sourcespb.S3{
|
||||
Credential: &sourcespb.S3_AccessKey{
|
||||
AccessKey: &credentialspb.KeySecret{
|
||||
Key: s3key,
|
||||
Secret: s3secret,
|
||||
},
|
||||
},
|
||||
Buckets: []string{"truffletestbucket-s3-tests"},
|
||||
})
|
||||
require.NoError(t, err)
|
||||
|
||||
err = s.Init(ctx, "s3 test source for targeted scanning", 0, 0, false, conn, 8)
|
||||
require.NoError(t, err)
|
||||
|
||||
// First, let's find what objects are actually in the bucket by running a regular scan
|
||||
// and capturing the first chunk to get its metadata
|
||||
var actualBucket string
|
||||
var actualKey string
|
||||
var actualData []byte
|
||||
|
||||
// Run a quick scan to discover available objects
|
||||
tempChunksCh := make(chan *sources.Chunk, 1)
|
||||
go func() {
|
||||
defer close(tempChunksCh)
|
||||
_ = s.Chunks(ctx, tempChunksCh)
|
||||
}()
|
||||
|
||||
// Get the first chunk to extract actual S3 metadata
|
||||
select {
|
||||
case <-ctx.Done():
|
||||
t.Fatal("Failed to get sample chunk for S3 metadata")
|
||||
case chunk, ok := <-tempChunksCh:
|
||||
require.True(t, ok, "Should receive at least one chunk from regular scan")
|
||||
|
||||
// Extract the S3 metadata from the chunk
|
||||
s3Meta, ok := chunk.SourceMetadata.GetData().(*source_metadatapb.MetaData_S3)
|
||||
require.True(t, ok, "First chunk should have S3 metadata")
|
||||
|
||||
actualBucket = s3Meta.S3.GetBucket()
|
||||
actualKey = s3Meta.S3.GetFile()
|
||||
actualData = chunk.Data
|
||||
|
||||
t.Logf("Found S3 object: bucket=%s, key=%s, size=%d bytes", actualBucket, actualKey, len(actualData))
|
||||
|
||||
// Drain remaining chunks
|
||||
for range tempChunksCh {
|
||||
}
|
||||
}
|
||||
|
||||
require.NotEmpty(t, actualBucket, "Should have found a bucket")
|
||||
require.NotEmpty(t, actualKey, "Should have found a key")
|
||||
require.NotEmpty(t, actualData, "Should have found data")
|
||||
|
||||
// Create a ChunkingTarget with the actual S3 metadata we discovered
|
||||
target := sources.ChunkingTarget{
|
||||
SecretID: 12345,
|
||||
QueryCriteria: &source_metadatapb.MetaData{
|
||||
Data: &source_metadatapb.MetaData_S3{
|
||||
S3: &source_metadatapb.S3{
|
||||
Bucket: actualBucket,
|
||||
File: actualKey,
|
||||
Link: fmt.Sprintf("s3://%s/%s", actualBucket, actualKey),
|
||||
Email: "[email protected]",
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
|
||||
// Test targeted scanning
|
||||
chunksCh := make(chan *sources.Chunk, 1)
|
||||
go func() {
|
||||
defer close(chunksCh)
|
||||
err = s.Chunks(ctx, chunksCh, target)
|
||||
assert.NoError(t, err)
|
||||
}()
|
||||
|
||||
// Wait for and verify the chunk
|
||||
select {
|
||||
case <-ctx.Done():
|
||||
t.Fatal("TestSource_Chunks_TargetedScanning timed out")
|
||||
case chunk, ok := <-chunksCh:
|
||||
require.True(t, ok, "Should receive at least one chunk")
|
||||
|
||||
// Verify the chunk has the right properties
|
||||
assert.Equal(t, SourceType, chunk.SourceType)
|
||||
assert.Equal(t, sources.SourceID(0), chunk.SourceID)
|
||||
assert.Equal(t, sources.JobID(0), chunk.JobID)
|
||||
assert.Equal(t, int64(12345), chunk.SecretID)
|
||||
assert.False(t, chunk.Verify)
|
||||
|
||||
// Verify the metadata
|
||||
require.NotNil(t, chunk.SourceMetadata)
|
||||
s3Meta, ok := chunk.SourceMetadata.GetData().(*source_metadatapb.MetaData_S3)
|
||||
require.True(t, ok, "Metadata should be S3 type")
|
||||
assert.Equal(t, actualBucket, s3Meta.S3.GetBucket())
|
||||
assert.Equal(t, actualKey, s3Meta.S3.GetFile())
|
||||
assert.Equal(t, fmt.Sprintf("s3://%s/%s", actualBucket, actualKey), s3Meta.S3.GetLink())
|
||||
assert.Equal(t, "[email protected]", s3Meta.S3.GetEmail())
|
||||
|
||||
// Verify the chunk has data (should match the content we discovered from regular scan)
|
||||
assert.Equal(t, actualData, chunk.Data, "Chunk data should match the S3 object content from targeted scan")
|
||||
|
||||
t.Logf("Successfully received targeted chunk: bucket=%s, key=%s, size=%d bytes",
|
||||
s3Meta.S3.GetBucket(), s3Meta.S3.GetFile(), len(chunk.Data))
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,23 +1,14 @@
|
||||
package s3
|
||||
|
||||
import (
|
||||
"encoding/base64"
|
||||
"fmt"
|
||||
"os"
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
"github.com/kylelemons/godebug/pretty"
|
||||
"github.com/stretchr/testify/assert"
|
||||
"github.com/stretchr/testify/require"
|
||||
"google.golang.org/protobuf/types/known/anypb"
|
||||
|
||||
"github.com/trufflesecurity/trufflehog/v3/pkg/common"
|
||||
"github.com/trufflesecurity/trufflehog/v3/pkg/context"
|
||||
"github.com/trufflesecurity/trufflehog/v3/pkg/pb/credentialspb"
|
||||
"github.com/trufflesecurity/trufflehog/v3/pkg/pb/source_metadatapb"
|
||||
"github.com/trufflesecurity/trufflehog/v3/pkg/pb/sourcespb"
|
||||
"github.com/trufflesecurity/trufflehog/v3/pkg/sources"
|
||||
)
|
||||
|
||||
func TestSource_Init_IncludeAndIgnoreBucketsError(t *testing.T) {
|
||||
@@ -38,251 +29,3 @@ func TestSource_Init_IncludeAndIgnoreBucketsError(t *testing.T) {
|
||||
|
||||
assert.Error(t, err)
|
||||
}
|
||||
|
||||
func TestSource_Chunks(t *testing.T) {
|
||||
ctx, cancel := context.WithTimeout(context.Background(), time.Second*30)
|
||||
defer cancel()
|
||||
|
||||
secret, err := common.GetTestSecret(ctx)
|
||||
if err != nil {
|
||||
t.Fatal(fmt.Errorf("failed to access secret: %v", err))
|
||||
}
|
||||
|
||||
s3key := secret.MustGetField("AWS_S3_KEY")
|
||||
s3secret := secret.MustGetField("AWS_S3_SECRET")
|
||||
|
||||
type init struct {
|
||||
name string
|
||||
verify bool
|
||||
connection *sourcespb.S3
|
||||
setEnv map[string]string
|
||||
}
|
||||
tests := []struct {
|
||||
name string
|
||||
init init
|
||||
wantErr bool
|
||||
wantChunkData string
|
||||
}{
|
||||
{
|
||||
name: "gets chunks",
|
||||
init: init{
|
||||
connection: &sourcespb.S3{
|
||||
Credential: &sourcespb.S3_AccessKey{
|
||||
AccessKey: &credentialspb.KeySecret{
|
||||
Key: s3key,
|
||||
Secret: s3secret,
|
||||
},
|
||||
},
|
||||
Buckets: []string{"truffletestbucket-s3-tests"},
|
||||
},
|
||||
},
|
||||
wantErr: false,
|
||||
wantChunkData: `W2RlZmF1bHRdCmF3c19hY2Nlc3Nfa2V5X2lkID0gQUtJQTM1T0hYMkRTT1pHNjQ3TkgKYXdzX3NlY3JldF9hY2Nlc3Nfa2V5ID0gUXk5OVMrWkIvQ1dsRk50eFBBaWQ3Z0d6dnNyWGhCQjd1ckFDQUxwWgpvdXRwdXQgPSBqc29uCnJlZ2lvbiA9IHVzLWVhc3QtMg==`,
|
||||
},
|
||||
{
|
||||
name: "gets chunks after assuming role",
|
||||
// This test will attempt to scan every bucket in the account, but the role policy blocks access to every
|
||||
// bucket except the one we want. This (expected behavior) causes errors in the test log output, but these
|
||||
// errors shouldn't actually cause test failures.
|
||||
init: init{
|
||||
connection: &sourcespb.S3{
|
||||
Roles: []string{"arn:aws:iam::619888638459:role/s3-test-assume-role"},
|
||||
},
|
||||
setEnv: map[string]string{
|
||||
"AWS_ACCESS_KEY_ID": s3key,
|
||||
"AWS_SECRET_ACCESS_KEY": s3secret,
|
||||
},
|
||||
},
|
||||
wantErr: false,
|
||||
wantChunkData: `W2RlZmF1bHRdCmF3c19zZWNyZXRfYWNjZXNzX2tleSA9IFF5OTlTK1pCL0NXbEZOdHhQQWlkN2dHenZzclhoQkI3dXJBQ0FMcFoKYXdzX2FjY2Vzc19rZXlfaWQgPSBBS0lBMzVPSFgyRFNPWkc2NDdOSApvdXRwdXQgPSBqc29uCnJlZ2lvbiA9IHVzLWVhc3QtMg==`,
|
||||
},
|
||||
}
|
||||
for _, tt := range tests {
|
||||
t.Run(tt.name, func(t *testing.T) {
|
||||
if tt.name == "gets chunks after assuming role" {
|
||||
t.Skip("skipping until our test environment stabilizes enough that we know how we're going to handle this")
|
||||
}
|
||||
|
||||
ctx, cancel := context.WithTimeout(context.Background(), time.Second*30)
|
||||
defer cancel()
|
||||
|
||||
for k, v := range tt.init.setEnv {
|
||||
t.Setenv(k, v)
|
||||
}
|
||||
|
||||
s := Source{}
|
||||
conn, err := anypb.New(tt.init.connection)
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
|
||||
err = s.Init(ctx, tt.init.name, 0, 0, tt.init.verify, conn, 8)
|
||||
if (err != nil) != tt.wantErr {
|
||||
t.Errorf("Source.Init() error = %v, wantErr %v", err, tt.wantErr)
|
||||
return
|
||||
}
|
||||
chunksCh := make(chan *sources.Chunk, 1)
|
||||
go func() {
|
||||
defer close(chunksCh)
|
||||
err = s.Chunks(ctx, chunksCh)
|
||||
if (err != nil) != tt.wantErr {
|
||||
t.Errorf("Source.Chunks() error = %v, wantErr %v", err, tt.wantErr)
|
||||
os.Exit(1)
|
||||
}
|
||||
}()
|
||||
|
||||
waitFn := func() {
|
||||
receivedFirstChunk := false
|
||||
for {
|
||||
select {
|
||||
case <-ctx.Done():
|
||||
t.Errorf("TestSource_Chunks timed out: %v", ctx.Err())
|
||||
return
|
||||
case gotChunk, ok := <-chunksCh:
|
||||
if !ok {
|
||||
t.Logf("Source.Chunks() finished, channel closed")
|
||||
assert.Equal(t, "", s.GetProgress().EncodedResumeInfo)
|
||||
assert.Equal(t, int64(100), s.GetProgress().PercentComplete)
|
||||
return
|
||||
}
|
||||
if receivedFirstChunk {
|
||||
// wantChunkData is the first chunk data. After the first chunk has
|
||||
// been received and matched below, we want to drain chunksCh
|
||||
// so Source.Chunks() can finish completely.
|
||||
continue
|
||||
}
|
||||
|
||||
receivedFirstChunk = true
|
||||
wantData, _ := base64.StdEncoding.DecodeString(tt.wantChunkData)
|
||||
|
||||
if diff := pretty.Compare(gotChunk.Data, wantData); diff != "" {
|
||||
t.Logf("%s: Source.Chunks() diff: (-got +want)\n%s", tt.name, diff)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
waitFn()
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
func TestSource_Chunks_TargetedScanning(t *testing.T) {
|
||||
ctx, cancel := context.WithTimeout(context.Background(), time.Second*30)
|
||||
defer cancel()
|
||||
|
||||
secret, err := common.GetTestSecret(ctx)
|
||||
if err != nil {
|
||||
t.Skipf("Failed to access secret: %v", err)
|
||||
}
|
||||
|
||||
s3key := secret.MustGetField("AWS_S3_KEY")
|
||||
s3secret := secret.MustGetField("AWS_S3_SECRET")
|
||||
|
||||
// Create S3 source
|
||||
s := Source{}
|
||||
conn, err := anypb.New(&sourcespb.S3{
|
||||
Credential: &sourcespb.S3_AccessKey{
|
||||
AccessKey: &credentialspb.KeySecret{
|
||||
Key: s3key,
|
||||
Secret: s3secret,
|
||||
},
|
||||
},
|
||||
Buckets: []string{"truffletestbucket-s3-tests"},
|
||||
})
|
||||
require.NoError(t, err)
|
||||
|
||||
err = s.Init(ctx, "s3 test source for targeted scanning", 0, 0, false, conn, 8)
|
||||
require.NoError(t, err)
|
||||
|
||||
// First, let's find what objects are actually in the bucket by running a regular scan
|
||||
// and capturing the first chunk to get its metadata
|
||||
var actualBucket string
|
||||
var actualKey string
|
||||
var actualData []byte
|
||||
|
||||
// Run a quick scan to discover available objects
|
||||
tempChunksCh := make(chan *sources.Chunk, 1)
|
||||
go func() {
|
||||
defer close(tempChunksCh)
|
||||
_ = s.Chunks(ctx, tempChunksCh)
|
||||
}()
|
||||
|
||||
// Get the first chunk to extract actual S3 metadata
|
||||
select {
|
||||
case <-ctx.Done():
|
||||
t.Fatal("Failed to get sample chunk for S3 metadata")
|
||||
case chunk, ok := <-tempChunksCh:
|
||||
require.True(t, ok, "Should receive at least one chunk from regular scan")
|
||||
|
||||
// Extract the S3 metadata from the chunk
|
||||
s3Meta, ok := chunk.SourceMetadata.GetData().(*source_metadatapb.MetaData_S3)
|
||||
require.True(t, ok, "First chunk should have S3 metadata")
|
||||
|
||||
actualBucket = s3Meta.S3.GetBucket()
|
||||
actualKey = s3Meta.S3.GetFile()
|
||||
actualData = chunk.Data
|
||||
|
||||
t.Logf("Found S3 object: bucket=%s, key=%s, size=%d bytes", actualBucket, actualKey, len(actualData))
|
||||
|
||||
// Drain remaining chunks
|
||||
for range tempChunksCh {
|
||||
}
|
||||
}
|
||||
|
||||
require.NotEmpty(t, actualBucket, "Should have found a bucket")
|
||||
require.NotEmpty(t, actualKey, "Should have found a key")
|
||||
require.NotEmpty(t, actualData, "Should have found data")
|
||||
|
||||
// Create a ChunkingTarget with the actual S3 metadata we discovered
|
||||
target := sources.ChunkingTarget{
|
||||
SecretID: 12345,
|
||||
QueryCriteria: &source_metadatapb.MetaData{
|
||||
Data: &source_metadatapb.MetaData_S3{
|
||||
S3: &source_metadatapb.S3{
|
||||
Bucket: actualBucket,
|
||||
File: actualKey,
|
||||
Link: fmt.Sprintf("s3://%s/%s", actualBucket, actualKey),
|
||||
Email: "[email protected]",
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
|
||||
// Test targeted scanning
|
||||
chunksCh := make(chan *sources.Chunk, 1)
|
||||
go func() {
|
||||
defer close(chunksCh)
|
||||
err = s.Chunks(ctx, chunksCh, target)
|
||||
assert.NoError(t, err)
|
||||
}()
|
||||
|
||||
// Wait for and verify the chunk
|
||||
select {
|
||||
case <-ctx.Done():
|
||||
t.Fatal("TestSource_Chunks_TargetedScanning timed out")
|
||||
case chunk, ok := <-chunksCh:
|
||||
require.True(t, ok, "Should receive at least one chunk")
|
||||
|
||||
// Verify the chunk has the right properties
|
||||
assert.Equal(t, SourceType, chunk.SourceType)
|
||||
assert.Equal(t, sources.SourceID(0), chunk.SourceID)
|
||||
assert.Equal(t, sources.JobID(0), chunk.JobID)
|
||||
assert.Equal(t, int64(12345), chunk.SecretID)
|
||||
assert.False(t, chunk.Verify)
|
||||
|
||||
// Verify the metadata
|
||||
require.NotNil(t, chunk.SourceMetadata)
|
||||
s3Meta, ok := chunk.SourceMetadata.GetData().(*source_metadatapb.MetaData_S3)
|
||||
require.True(t, ok, "Metadata should be S3 type")
|
||||
assert.Equal(t, actualBucket, s3Meta.S3.GetBucket())
|
||||
assert.Equal(t, actualKey, s3Meta.S3.GetFile())
|
||||
assert.Equal(t, fmt.Sprintf("s3://%s/%s", actualBucket, actualKey), s3Meta.S3.GetLink())
|
||||
assert.Equal(t, "[email protected]", s3Meta.S3.GetEmail())
|
||||
|
||||
// Verify the chunk has data (should match the content we discovered from regular scan)
|
||||
assert.Equal(t, actualData, chunk.Data, "Chunk data should match the S3 object content from targeted scan")
|
||||
|
||||
t.Logf("Successfully received targeted chunk: bucket=%s, key=%s, size=%d bytes",
|
||||
s3Meta.S3.GetBucket(), s3Meta.S3.GetFile(), len(chunk.Data))
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user