blob: fc01e5e7f6004485d7bd6d6932acc6f705f0aefc [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.kafka.streams.kstream.internals;
import org.apache.kafka.common.serialization.Serde;
import org.apache.kafka.common.serialization.Serdes;
import org.apache.kafka.common.utils.Utils;
import org.apache.kafka.streams.kstream.Aggregator;
import org.apache.kafka.streams.kstream.Initializer;
import org.apache.kafka.streams.kstream.KStreamBuilder;
import org.apache.kafka.streams.kstream.KTable;
import org.apache.kafka.test.KStreamTestDriver;
import org.apache.kafka.test.MockProcessorSupplier;
import org.apache.kafka.test.NoOpKeyValueMapper;
import org.junit.Test;
import java.io.File;
import java.nio.file.Files;
import static org.junit.Assert.assertEquals;
public class KTableAggregateTest {
final private Serde<String> stringSerde = new Serdes.StringSerde();
private class StringAdd implements Aggregator<String, String, String> {
@Override
public String apply(String aggKey, String value, String aggregate) {
return aggregate + "+" + value;
}
}
private class StringRemove implements Aggregator<String, String, String> {
@Override
public String apply(String aggKey, String value, String aggregate) {
return aggregate + "-" + value;
}
}
private class StringInit implements Initializer<String> {
@Override
public String apply() {
return "0";
}
}
@Test
public void testAggBasic() throws Exception {
final File baseDir = Files.createTempDirectory("test").toFile();
try {
final KStreamBuilder builder = new KStreamBuilder();
String topic1 = "topic1";
KTable<String, String> table1 = builder.table(stringSerde, stringSerde, topic1);
KTable<String, String> table2 = table1.aggregate(new StringInit(), new StringAdd(), new StringRemove(),
new NoOpKeyValueMapper<String, String>(),
stringSerde,
stringSerde,
stringSerde,
"topic1-Canonized");
MockProcessorSupplier<String, String> proc2 = new MockProcessorSupplier<>();
table2.toStream().process(proc2);
KStreamTestDriver driver = new KStreamTestDriver(builder, baseDir);
driver.process(topic1, "A", "1");
driver.process(topic1, "B", "2");
driver.process(topic1, "A", "3");
driver.process(topic1, "B", "4");
driver.process(topic1, "C", "5");
driver.process(topic1, "D", "6");
driver.process(topic1, "B", "7");
driver.process(topic1, "C", "8");
assertEquals(Utils.mkList(
"A:0+1",
"B:0+2",
"A:0+1+3", "A:0+1+3-1",
"B:0+2+4", "B:0+2+4-2",
"C:0+5",
"D:0+6",
"B:0+2+4-2+7", "B:0+2+4-2+7-4",
"C:0+5+8", "C:0+5+8-5"), proc2.processed);
} finally {
Utils.delete(baseDir);
}
}
}