forked from apache/nifi
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
NIFI-14117 PublishKafka sends default attribute as key if custom attr…
…ibute not specified (apache#9608) Signed-off-by: David Handermann <[email protected]>
- Loading branch information
Showing
2 changed files
with
82 additions
and
2 deletions.
There are no files selected for viewing
79 changes: 79 additions & 0 deletions
79
...-integration/src/test/java/org/apache/nifi/kafka/processors/PublishKafkaDefaultKeyIT.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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.nifi.kafka.processors; | ||
|
||
import org.apache.kafka.clients.consumer.ConsumerRecord; | ||
import org.apache.kafka.clients.consumer.ConsumerRecords; | ||
import org.apache.kafka.clients.consumer.KafkaConsumer; | ||
import org.apache.kafka.common.header.Header; | ||
import org.apache.nifi.reporting.InitializationException; | ||
import org.apache.nifi.util.TestRunner; | ||
import org.apache.nifi.util.TestRunners; | ||
import org.junit.jupiter.api.MethodOrderer; | ||
import org.junit.jupiter.api.Test; | ||
import org.junit.jupiter.api.TestMethodOrder; | ||
|
||
import java.nio.charset.StandardCharsets; | ||
import java.util.Arrays; | ||
import java.util.Collections; | ||
import java.util.HashMap; | ||
import java.util.List; | ||
import java.util.Map; | ||
|
||
import static org.junit.jupiter.api.Assertions.assertEquals; | ||
|
||
@TestMethodOrder(MethodOrderer.MethodName.class) | ||
public class PublishKafkaDefaultKeyIT extends AbstractPublishKafkaIT { | ||
private static final String TEST_KEY_ATTRIBUTE = "kafka.key"; | ||
private static final String TEST_KEY_VALUE = "some-key-value"; | ||
private static final String TEST_RECORD_VALUE = "value-" + System.currentTimeMillis(); | ||
|
||
@Test | ||
public void test_1_KafkaTestContainerProduceOne() throws InitializationException { | ||
final TestRunner runner = TestRunners.newTestRunner(PublishKafka.class); | ||
runner.setValidateExpressionUsage(false); | ||
runner.setProperty(PublishKafka.CONNECTION_SERVICE, addKafkaConnectionService(runner)); | ||
runner.setProperty(PublishKafka.TOPIC_NAME, getClass().getName()); | ||
runner.setProperty(PublishKafka.ATTRIBUTE_HEADER_PATTERN, "a.*"); | ||
|
||
final Map<String, String> attributes = new HashMap<>(); | ||
attributes.put("a1", "valueA1"); | ||
attributes.put("b1", "valueB1"); | ||
attributes.put(TEST_KEY_ATTRIBUTE, TEST_KEY_VALUE); | ||
|
||
runner.enqueue(TEST_RECORD_VALUE, attributes); | ||
runner.run(); | ||
runner.assertAllFlowFilesTransferred(PublishKafka.REL_SUCCESS, 1); | ||
} | ||
|
||
@Test | ||
public void test_2_KafkaTestContainerConsumeOne() { | ||
try (KafkaConsumer<String, String> consumer = new KafkaConsumer<>(getKafkaConsumerProperties())) { | ||
consumer.subscribe(Collections.singletonList(getClass().getName())); | ||
final ConsumerRecords<String, String> records = consumer.poll(DURATION_POLL); | ||
assertEquals(1, records.count()); | ||
final ConsumerRecord<String, String> record = records.iterator().next(); | ||
assertEquals(TEST_KEY_VALUE, record.key()); | ||
assertEquals(TEST_RECORD_VALUE, record.value()); | ||
final List<Header> headers = Arrays.asList(record.headers().toArray()); | ||
assertEquals(1, headers.size()); | ||
final Header header = record.headers().iterator().next(); | ||
assertEquals("a1", header.key()); | ||
assertEquals("valueA1", new String(header.value(), StandardCharsets.UTF_8)); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters