Skip to content

Commit 771b391

Browse files
authored
Changing Headers definition from byte to int8 for KafkaRecord (#506)
1 parent 14212e8 commit 771b391

File tree

3 files changed

+55
-11
lines changed

3 files changed

+55
-11
lines changed

events/kafka.go

+37-8
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
package events
44

5+
import (
6+
"encoding/json"
7+
)
8+
59
type KafkaEvent struct {
610
EventSource string `json:"eventSource"`
711
EventSourceARN string `json:"eventSourceArn"`
@@ -10,12 +14,37 @@ type KafkaEvent struct {
1014
}
1115

1216
type KafkaRecord struct {
13-
Topic string `json:"topic"`
14-
Partition int64 `json:"partition"`
15-
Offset int64 `json:"offset"`
16-
Timestamp MilliSecondsEpochTime `json:"timestamp"`
17-
TimestampType string `json:"timestampType"`
18-
Key string `json:"key,omitempty"`
19-
Value string `json:"value,omitempty"`
20-
Headers []map[string][]byte `json:"headers"`
17+
Topic string `json:"topic"`
18+
Partition int64 `json:"partition"`
19+
Offset int64 `json:"offset"`
20+
Timestamp MilliSecondsEpochTime `json:"timestamp"`
21+
TimestampType string `json:"timestampType"`
22+
Key string `json:"key,omitempty"`
23+
Value string `json:"value,omitempty"`
24+
Headers []map[string]JSONNumberBytes `json:"headers"`
25+
}
26+
27+
// JSONNumberBytes represents array of bytes in Headers field.
28+
type JSONNumberBytes []byte
29+
30+
// MarshalJSON converts byte array into array of signed integers.
31+
func (b JSONNumberBytes) MarshalJSON() ([]byte, error) {
32+
signedNumbers := make([]int8, len(b))
33+
for i, value := range b {
34+
signedNumbers[i] = int8(value)
35+
}
36+
return json.Marshal(signedNumbers)
37+
}
38+
39+
// UnmarshalJSON converts a given json with potential negative values into byte array.
40+
func (b *JSONNumberBytes) UnmarshalJSON(data []byte) error {
41+
var signedNumbers []int8
42+
if err := json.Unmarshal(data, &signedNumbers); err != nil {
43+
return err
44+
}
45+
*b = make(JSONNumberBytes, len(signedNumbers))
46+
for i, value := range signedNumbers {
47+
(*b)[i] = byte(value)
48+
}
49+
return nil
2150
}

events/kafka_test.go

+11-2
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,14 @@ func TestKafkaEventMarshaling(t *testing.T) {
2020
t.Errorf("could not unmarshal event. details: %v", err)
2121
}
2222

23+
// expected values for header
24+
var headerValues [5]byte
25+
headerValues[0] = 118
26+
headerValues[1] = 220 // -36 + 256
27+
headerValues[2] = 0
28+
headerValues[3] = 127
29+
headerValues[4] = 128 // -128 + 256
30+
2331
assert.Equal(t, inputEvent.BootstrapServers, "b-2.demo-cluster-1.a1bcde.c1.kafka.us-east-1.amazonaws.com:9092,b-1.demo-cluster-1.a1bcde.c1.kafka.us-east-1.amazonaws.com:9092")
2432
assert.Equal(t, inputEvent.EventSource, "aws:kafka")
2533
assert.Equal(t, inputEvent.EventSourceARN, "arn:aws:kafka:us-west-2:012345678901:cluster/ExampleMSKCluster/e9f754c6-d29a-4430-a7db-958a19fd2c54-4")
@@ -33,8 +41,9 @@ func TestKafkaEventMarshaling(t *testing.T) {
3341
for _, header := range record.Headers {
3442
for key, value := range header {
3543
assert.Equal(t, key, "headerKey")
36-
headerValue := string(value)
37-
assert.Equal(t, headerValue, "headerValue")
44+
for i, headerValue := range value {
45+
assert.Equal(t, headerValue, headerValues[i])
46+
}
3847
}
3948
}
4049
}

events/testdata/kafka-event.json

+7-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,13 @@
1414
"value": "OGQ1NTk2YjQtMTgxMy00MjM4LWIyNGItNmRhZDhlM2QxYzBj",
1515
"headers": [
1616
{
17-
"headerKey": "aGVhZGVyVmFsdWU="
17+
"headerKey": [
18+
118,
19+
-36,
20+
0,
21+
127,
22+
-128
23+
]
1824
}
1925
]
2026
}

0 commit comments

Comments
 (0)