blob: 859082197741415648bc66f911a42e70c9d70351 [file] [log] [blame]
/*
* 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.karaf.rcomp.kafka;
import java.time.Duration;
import java.util.Dictionary;
import java.util.Hashtable;
import java.util.List;
import org.apache.kafka.clients.consumer.ConsumerRecord;
import org.apache.kafka.clients.producer.ProducerRecord;
import org.apache.karaf.rcomp.kafka.KafkaComponent;
import org.junit.Assert;
import org.junit.Ignore;
import org.junit.Test;
import org.reactivestreams.Subscriber;
import reactor.core.publisher.Flux;
import reactor.core.publisher.Mono;
@SuppressWarnings("rawtypes")
public class TestKafka {
private static final String TOPIC1 = "topic1";
private static final String TOPIC2 = "topic2";
@Ignore
@Test
public void testWithConsumerRecord() throws Exception {
KafkaComponent kafka = createComponent();
Mono<List<Object>> receive = Flux.from(kafka.from(TOPIC1, ConsumerRecord.class))
.map(record -> record.value())
.take(2)
.collectList();
Subscriber<ProducerRecord> toTopic = kafka.to(TOPIC1, ProducerRecord.class);
Flux.just(new ProducerRecord<String, String>(TOPIC1, "1", "test"),
new ProducerRecord<String, String>(TOPIC1, "1", "test2"))
.subscribe(toTopic);
List<Object> received = receive.block(Duration.ofSeconds(10));
Assert.assertEquals(2, received.size());
Assert.assertEquals("test", received.get(0));
}
@Ignore
@Test
public void testWithString() throws Exception {
KafkaComponent kafka = createComponent();
Mono<List<String>> receive = Flux.from(kafka.from(TOPIC2, String.class))
.take(2)
.collectList();
Subscriber<ProducerRecord> toTopic = kafka.to(TOPIC2, ProducerRecord.class);
Flux.just(new ProducerRecord<String, String>(TOPIC2, "1", "test"),
new ProducerRecord<String, String>(TOPIC2, "1", "test2"))
.subscribe(toTopic);
List<String> received = receive.block(Duration.ofSeconds(10));
Assert.assertEquals(2, received.size());
Assert.assertEquals("test", received.get(0));
Assert.assertEquals("test2", received.get(1));
}
private KafkaComponent createComponent() {
Dictionary<String, Object> configs = new Hashtable<>();
configs.put("group.id", "group1");
KafkaComponent kafka = new KafkaComponent(configs);
return kafka;
}
}