blob: ba823ba2b850536e25012ef89577b17c320da65f [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.connect.transforms;
import org.apache.kafka.connect.source.SourceRecord;
import org.junit.After;
import org.junit.Test;
import java.util.Collections;
import static org.junit.Assert.assertEquals;
public class TimestampRouterTest {
private final TimestampRouter<SourceRecord> xform = new TimestampRouter<>();
@After
public void teardown() {
xform.close();
}
@Test
public void defaultConfiguration() {
xform.configure(Collections.<String, Object>emptyMap()); // defaults
final SourceRecord record = new SourceRecord(
null, null,
"test", 0,
null, null,
null, null,
1483425001864L
);
assertEquals("test-20170103", xform.apply(record).topic());
}
}