Skip to content

Commit

Permalink
add android post integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
viglia committed Dec 18, 2024
1 parent 080796d commit 62fd9bc
Showing 1 changed file with 159 additions and 0 deletions.
159 changes: 159 additions & 0 deletions cmd/vroom/chunk_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ import (
"github.com/getsentry/vroom/internal/chunk"
"github.com/getsentry/vroom/internal/frame"
"github.com/getsentry/vroom/internal/platform"
"github.com/getsentry/vroom/internal/profile"
"github.com/getsentry/vroom/internal/storageutil"
"github.com/getsentry/vroom/internal/testutil"
"github.com/google/uuid"
Expand Down Expand Up @@ -143,6 +144,164 @@ func TestPostAndReadSampleChunk(t *testing.T) {
}
}

func TestPostAndReadAndroidChunk(t *testing.T) {
profilerID := uuid.New().String()
chunkID := uuid.New().String()
chunkData := chunk.AndroidChunk{
BuildID: "1234",
ID: chunkID,
ProfilerID: profilerID,
DurationNS: 2_000_000,
Platform: "android",
Timestamp: 1.123,
Profile: profile.Android{
Clock: "Dual",
Events: []profile.AndroidEvent{
{
Action: "Enter",
ThreadID: 1,
MethodID: 1,
Time: profile.EventTime{
Monotonic: profile.EventMonotonic{
Wall: profile.Duration{
Secs: 0,
Nanos: 1000,
},
},
},
},
{
Action: "Enter",
ThreadID: 1,
MethodID: 2,
Time: profile.EventTime{
Monotonic: profile.EventMonotonic{
Wall: profile.Duration{
Secs: 0,
Nanos: 1500,
},
},
},
},
{
Action: "Exit",
ThreadID: 1,
MethodID: 2,
Time: profile.EventTime{
Monotonic: profile.EventMonotonic{
Wall: profile.Duration{
Secs: 0,
Nanos: 2000,
},
},
},
},
{
Action: "Exit",
ThreadID: 1,
MethodID: 1,
Time: profile.EventTime{
Monotonic: profile.EventMonotonic{
Wall: profile.Duration{
Secs: 0,
Nanos: 2500,
},
},
},
},
},
Methods: []profile.AndroidMethod{
{
ClassName: "class1",
ID: 1,
Name: "method1",
Signature: "()",
},
{
ClassName: "class2",
ID: 2,
Name: "method2",
Signature: "()",
},
},
StartTime: 0,
Threads: []profile.AndroidThread{
{
ID: 1,
Name: "main",
},
},
}, // end profile
OrganizationID: 1,
ProjectID: 1,
Received: 1.123,
Measurements: json.RawMessage("null"),
}

objectName := fmt.Sprintf(
"%d/%d/%s/%s",
chunkData.OrganizationID,
chunkData.ProjectID,
chunkData.ProfilerID,
chunkData.ID,
)

tests := []struct {
name string
blobBucket *blob.Bucket
objectName string
}{
{
name: "Filesystem",
blobBucket: fileBlobBucket,
objectName: objectName,
},
}

for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
env := environment{
storage: test.blobBucket,
profilingWriter: KafkaWriterMock{},
config: ServiceConfig{
ProfileChunksKafkaTopic: "snuba-profile-chunks",
},
}
jsonValue, err := json.Marshal(chunkData)
if err != nil {
t.Fatal(err)
}

req := httptest.NewRequest("POST", "/", bytes.NewBuffer(jsonValue))
w := httptest.NewRecorder()

// POST the chunk and check the we get a 204 response status code
env.postChunk(w, req)
resp := w.Result()
defer resp.Body.Close()
if resp.StatusCode != 204 {
t.Fatalf("Expected status code 204. Found: %d", resp.StatusCode)
}

// read the chunk with UnmarshalCompressed and make sure that we can unmarshal
// the data into the Chunk struct and that it matches the original
var c chunk.Chunk
err = storageutil.UnmarshalCompressed(
context.Background(),
test.blobBucket,
objectName,
&c,
)
if err != nil {
t.Fatal(err)
}
if diff := testutil.Diff(&chunkData, c.Chunk()); diff != "" {
t.Fatalf("Result mismatch: got - want +\n%s", diff)
}
})
}
}

type KafkaWriterMock struct{}

func (k KafkaWriterMock) WriteMessages(_ context.Context, _ ...kafka.Message) error {
Expand Down

0 comments on commit 62fd9bc

Please sign in to comment.