|
16 | 16 | */
|
17 | 17 | package org.apache.kafka.streams.processor.internals;
|
18 | 18 |
|
| 19 | +import static java.nio.charset.StandardCharsets.UTF_8; |
| 20 | +import static org.apache.kafka.common.utils.Utils.getNullableSizePrefixedArray; |
| 21 | +import static org.apache.kafka.common.utils.Utils.getOptionalField; |
| 22 | +import static org.junit.jupiter.api.Assertions.assertEquals; |
| 23 | +import static org.junit.jupiter.api.Assertions.assertFalse; |
| 24 | +import static org.junit.jupiter.api.Assertions.assertThrows; |
| 25 | +import static org.junit.jupiter.api.Assertions.assertTrue; |
| 26 | + |
| 27 | +import java.nio.ByteBuffer; |
| 28 | +import java.util.Optional; |
19 | 29 | import org.apache.kafka.common.header.Headers;
|
20 | 30 | import org.apache.kafka.common.header.internals.RecordHeaders;
|
21 |
| - |
22 | 31 | import org.junit.jupiter.api.Test;
|
23 |
| - |
24 |
| -import static org.junit.jupiter.api.Assertions.assertEquals; |
25 |
| -import static org.junit.jupiter.api.Assertions.assertThrows; |
| 32 | +import org.junit.jupiter.params.ParameterizedTest; |
| 33 | +import org.junit.jupiter.params.provider.CsvSource; |
26 | 34 |
|
27 | 35 | public class ProcessorRecordContextTest {
|
28 | 36 | // timestamp + offset + partition: 8 + 8 + 4
|
29 | 37 | private static final long MIN_SIZE = 20L;
|
| 38 | + private static final String SOURCE_RAW_KEY = "sourceRawKey"; |
| 39 | + private static final byte[] SOURCE_RAW_KEY_BYTES = SOURCE_RAW_KEY.getBytes(); |
| 40 | + private static final String SOURCE_RAW_VALUE = "sourceRawValue"; |
| 41 | + private static final byte[] SOURCE_RAW_VALUE_BYTES = SOURCE_RAW_VALUE.getBytes(); |
30 | 42 |
|
31 | 43 | @Test
|
32 | 44 | public void shouldNotAllowNullHeaders() {
|
@@ -111,4 +123,133 @@ public void shouldEstimateNullValueInHeaderAsZero() {
|
111 | 123 |
|
112 | 124 | assertEquals(MIN_SIZE + 10L, context.residentMemorySizeEstimate());
|
113 | 125 | }
|
| 126 | + |
| 127 | + @Test |
| 128 | + public void shouldSerializeProcessorRecordContext() { |
| 129 | + final ProcessorRecordContext context = new ProcessorRecordContext( |
| 130 | + 42L, |
| 131 | + 73L, |
| 132 | + 0, |
| 133 | + "topic", |
| 134 | + new RecordHeaders() |
| 135 | + ); |
| 136 | + |
| 137 | + final ByteBuffer serializedContext = ByteBuffer.wrap(context.serialize()); |
| 138 | + |
| 139 | + assertEquals(42L, serializedContext.getLong()); |
| 140 | + assertEquals(73L, serializedContext.getLong()); |
| 141 | + assertEquals("topic", new String(getNullableSizePrefixedArray(serializedContext), UTF_8)); |
| 142 | + assertEquals(0, serializedContext.getInt()); |
| 143 | + assertEquals(0, serializedContext.getInt()); |
| 144 | + assertFalse(serializedContext.hasRemaining()); |
| 145 | + } |
| 146 | + |
| 147 | + @Test |
| 148 | + public void shouldSerializeProcessorRecordContextWithRawKey() { |
| 149 | + final ProcessorRecordContext context = new ProcessorRecordContext( |
| 150 | + 42L, |
| 151 | + 73L, |
| 152 | + 0, |
| 153 | + "topic", |
| 154 | + new RecordHeaders(), |
| 155 | + SOURCE_RAW_KEY_BYTES, |
| 156 | + null |
| 157 | + ); |
| 158 | + |
| 159 | + final ByteBuffer serializedContext = ByteBuffer.wrap(context.serialize()); |
| 160 | + |
| 161 | + assertEquals(42L, serializedContext.getLong()); |
| 162 | + assertEquals(73L, serializedContext.getLong()); |
| 163 | + assertEquals("topic", new String(getNullableSizePrefixedArray(serializedContext), UTF_8)); |
| 164 | + assertEquals(0, serializedContext.getInt()); |
| 165 | + assertEquals(0, serializedContext.getInt()); |
| 166 | + |
| 167 | + final Optional<byte[]> rawKey = getOptionalField('k', serializedContext); |
| 168 | + assertTrue(rawKey.isPresent()); |
| 169 | + assertEquals(SOURCE_RAW_KEY, new String(rawKey.get(), UTF_8)); |
| 170 | + |
| 171 | + assertFalse(serializedContext.hasRemaining()); |
| 172 | + } |
| 173 | + |
| 174 | + @Test |
| 175 | + public void shouldSerializeProcessorRecordContextWithRawValue() { |
| 176 | + final ProcessorRecordContext context = new ProcessorRecordContext( |
| 177 | + 42L, |
| 178 | + 73L, |
| 179 | + 0, |
| 180 | + "topic", |
| 181 | + new RecordHeaders(), |
| 182 | + null, |
| 183 | + SOURCE_RAW_VALUE_BYTES |
| 184 | + ); |
| 185 | + |
| 186 | + final ByteBuffer serializedContext = ByteBuffer.wrap(context.serialize()); |
| 187 | + |
| 188 | + assertEquals(42L, serializedContext.getLong()); |
| 189 | + assertEquals(73L, serializedContext.getLong()); |
| 190 | + assertEquals("topic", new String(getNullableSizePrefixedArray(serializedContext), UTF_8)); |
| 191 | + assertEquals(0, serializedContext.getInt()); |
| 192 | + assertEquals(0, serializedContext.getInt()); |
| 193 | + |
| 194 | + final Optional<byte[]> rawValue = getOptionalField('v', serializedContext); |
| 195 | + assertTrue(rawValue.isPresent()); |
| 196 | + assertEquals(SOURCE_RAW_VALUE, new String(rawValue.get(), UTF_8)); |
| 197 | + |
| 198 | + assertFalse(serializedContext.hasRemaining()); |
| 199 | + } |
| 200 | + |
| 201 | + @Test |
| 202 | + public void shouldSerializeProcessorRecordContextWithBothRawKeyAndRawValue() { |
| 203 | + final ProcessorRecordContext context = new ProcessorRecordContext( |
| 204 | + 42L, |
| 205 | + 73L, |
| 206 | + 0, |
| 207 | + "topic", |
| 208 | + new RecordHeaders(), |
| 209 | + SOURCE_RAW_KEY_BYTES, |
| 210 | + SOURCE_RAW_VALUE_BYTES |
| 211 | + ); |
| 212 | + |
| 213 | + final ByteBuffer serializedContext = ByteBuffer.wrap(context.serialize()); |
| 214 | + |
| 215 | + assertEquals(42L, serializedContext.getLong()); |
| 216 | + assertEquals(73L, serializedContext.getLong()); |
| 217 | + assertEquals("topic", new String(getNullableSizePrefixedArray(serializedContext), UTF_8)); |
| 218 | + assertEquals(0, serializedContext.getInt()); |
| 219 | + assertEquals(0, serializedContext.getInt()); |
| 220 | + |
| 221 | + final Optional<byte[]> rawKey = getOptionalField('k', serializedContext); |
| 222 | + assertTrue(rawKey.isPresent()); |
| 223 | + assertEquals(SOURCE_RAW_KEY, new String(rawKey.get(), UTF_8)); |
| 224 | + |
| 225 | + final Optional<byte[]> rawValue = getOptionalField('v', serializedContext); |
| 226 | + assertTrue(rawValue.isPresent()); |
| 227 | + assertEquals(SOURCE_RAW_VALUE, new String(rawValue.get(), UTF_8)); |
| 228 | + |
| 229 | + assertFalse(serializedContext.hasRemaining()); |
| 230 | + } |
| 231 | + |
| 232 | + @ParameterizedTest |
| 233 | + @CsvSource(value = { |
| 234 | + "null,null", |
| 235 | + "rawKey,null", |
| 236 | + "null,rawValue", |
| 237 | + "rawKey,rawValue" |
| 238 | + }, nullValues = "null") |
| 239 | + public void shouldDeserializeProcessorRecordContext(final String rawKey, final String rawValue) { |
| 240 | + final ProcessorRecordContext context = new ProcessorRecordContext( |
| 241 | + 42L, |
| 242 | + 73L, |
| 243 | + 0, |
| 244 | + "topic", |
| 245 | + new RecordHeaders(), |
| 246 | + rawKey != null ? rawKey.getBytes() : null, |
| 247 | + rawValue != null ? rawValue.getBytes() : null |
| 248 | + ); |
| 249 | + |
| 250 | + final byte[] serializedContext = context.serialize(); |
| 251 | + final ProcessorRecordContext deserializedContext = ProcessorRecordContext.deserialize(ByteBuffer.wrap(serializedContext)); |
| 252 | + |
| 253 | + assertEquals(context, deserializedContext); |
| 254 | + } |
114 | 255 | }
|
0 commit comments