Skip to content

Commit 837d1a9

Browse files
authored
S3-Source Bug Fix: Handle null object size for non S3-Create Events (#5449)
Signed-off-by: Jeremy Michael <[email protected]>
1 parent 20db890 commit 837d1a9

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

data-prepper-plugins/s3-source/src/main/java/org/opensearch/dataprepper/plugins/source/s3/parser/ParsedMessage.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@ public ParsedMessage(final Message message, final boolean failedParsing) {
3737
// S3EventNotification contains only one S3EventNotificationRecord
3838
this.bucketName = notificationRecords.get(0).getS3().getBucket().getName();
3939
this.objectKey = notificationRecords.get(0).getS3().getObject().getUrlDecodedKey();
40-
this.objectSize = notificationRecords.get(0).getS3().getObject().getSizeAsLong();
40+
Long size = notificationRecords.get(0).getS3().getObject().getSizeAsLong();
41+
this.objectSize = (size != null) ? size : 0L;
4142
this.eventName = notificationRecords.get(0).getEventName();
4243
this.eventTime = notificationRecords.get(0).getEventTime();
4344
this.failedParsing = false;

data-prepper-plugins/s3-source/src/test/java/org/opensearch/dataprepper/plugins/source/s3/parser/ParsedMessageTest.java

+7
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,13 @@ void toString_with_messageId() {
134134
assertThat(actualString, containsString(messageId));
135135
assertThat(actualString, containsString(testDecodedObjectKey));
136136
}
137+
138+
@Test
139+
void test_parsed_message_with_null_object_size_defaults_to_zero() {
140+
when(s3ObjectEntity.getSizeAsLong()).thenReturn(null);
141+
final ParsedMessage parsedMessage = createObjectUnderTest();
142+
assertThat(parsedMessage.getObjectSize(), equalTo(0L));
143+
}
137144
}
138145

139146
@Nested

0 commit comments

Comments
 (0)