Browse Source
Author: Jason Gustafson <jason@confluent.io> Reviewers: Apurva Mehta <apurva@confluent.io>, Ismael Juma <ismael@juma.me.uk> Closes #3123 from hachikuji/KAFKA-4935pull/3124/head
Jason Gustafson
8 years ago
committed by
Ismael Juma
24 changed files with 285 additions and 134 deletions
@ -0,0 +1,79 @@
@@ -0,0 +1,79 @@
|
||||
/* |
||||
* Licensed to the Apache Software Foundation (ASF) under one or more |
||||
* contributor license agreements. See the NOTICE file distributed with |
||||
* this work for additional information regarding copyright ownership. |
||||
* The ASF licenses this file to You under the Apache License, Version 2.0 |
||||
* (the "License"); you may not use this file except in compliance with |
||||
* the License. You may obtain a copy of the License at |
||||
* |
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software |
||||
* distributed under the License is distributed on an "AS IS" BASIS, |
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
* See the License for the specific language governing permissions and |
||||
* limitations under the License. |
||||
*/ |
||||
package org.apache.kafka.clients.producer; |
||||
|
||||
import org.apache.kafka.common.TopicPartition; |
||||
import org.apache.kafka.common.record.DefaultRecord; |
||||
import org.junit.Test; |
||||
|
||||
import static org.junit.Assert.assertEquals; |
||||
|
||||
public class RecordMetadataTest { |
||||
|
||||
@Test |
||||
@SuppressWarnings("deprecation") |
||||
public void testConstructionWithMissingRelativeOffset() { |
||||
TopicPartition tp = new TopicPartition("foo", 0); |
||||
long timestamp = 2340234L; |
||||
int keySize = 3; |
||||
int valueSize = 5; |
||||
Long checksum = 908923L; |
||||
|
||||
RecordMetadata metadata = new RecordMetadata(tp, -1L, -1L, timestamp, checksum, keySize, valueSize); |
||||
assertEquals(tp.topic(), metadata.topic()); |
||||
assertEquals(tp.partition(), metadata.partition()); |
||||
assertEquals(timestamp, metadata.timestamp()); |
||||
assertEquals(-1L, metadata.offset()); |
||||
assertEquals(checksum.longValue(), metadata.checksum()); |
||||
assertEquals(keySize, metadata.serializedKeySize()); |
||||
assertEquals(valueSize, metadata.serializedValueSize()); |
||||
} |
||||
|
||||
@Test |
||||
@SuppressWarnings("deprecation") |
||||
public void testConstructionWithRelativeOffset() { |
||||
TopicPartition tp = new TopicPartition("foo", 0); |
||||
long timestamp = 2340234L; |
||||
int keySize = 3; |
||||
int valueSize = 5; |
||||
long baseOffset = 15L; |
||||
long relativeOffset = 3L; |
||||
Long checksum = 908923L; |
||||
|
||||
RecordMetadata metadata = new RecordMetadata(tp, baseOffset, relativeOffset, timestamp, checksum, |
||||
keySize, valueSize); |
||||
assertEquals(tp.topic(), metadata.topic()); |
||||
assertEquals(tp.partition(), metadata.partition()); |
||||
assertEquals(timestamp, metadata.timestamp()); |
||||
assertEquals(baseOffset + relativeOffset, metadata.offset()); |
||||
assertEquals(checksum.longValue(), metadata.checksum()); |
||||
assertEquals(keySize, metadata.serializedKeySize()); |
||||
assertEquals(valueSize, metadata.serializedValueSize()); |
||||
} |
||||
|
||||
@Test |
||||
@SuppressWarnings("deprecation") |
||||
public void testNullChecksum() { |
||||
long timestamp = 2340234L; |
||||
int keySize = 3; |
||||
int valueSize = 5; |
||||
RecordMetadata metadata = new RecordMetadata(new TopicPartition("foo", 0), 15L, 3L, timestamp, null, |
||||
keySize, valueSize); |
||||
assertEquals(DefaultRecord.computePartialChecksum(timestamp, keySize, valueSize), metadata.checksum()); |
||||
} |
||||
|
||||
} |
Loading…
Reference in new issue