blob: 184a23fdeccf3b228f67f54c4fb50da19066348a [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.rocketmq.flink.source.table;
import org.apache.rocketmq.flink.source.common.RocketMQOptions;
import org.apache.flink.configuration.Configuration;
import org.apache.flink.table.api.Schema;
import org.apache.flink.table.api.ValidationException;
import org.apache.flink.table.catalog.CatalogTable;
import org.apache.flink.table.catalog.Column;
import org.apache.flink.table.catalog.ObjectIdentifier;
import org.apache.flink.table.catalog.ResolvedCatalogTable;
import org.apache.flink.table.catalog.ResolvedSchema;
import org.apache.flink.table.connector.source.DynamicTableSource;
import org.apache.flink.table.factories.FactoryUtil;
import org.junit.Test;
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashMap;
import java.util.Map;
import static org.apache.flink.table.api.DataTypes.STRING;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;
/** Tests for {@link RocketMQDynamicTableSourceFactory}. */
public class RocketMQDynamicTableSourceFactoryTest {
private static final ResolvedSchema SCHEMA =
new ResolvedSchema(
Collections.singletonList(Column.physical("name", STRING().notNull())),
new ArrayList<>(),
null);
private static final String IDENTIFIER = "rocketmq";
private static final String TOPIC = "test_source";
private static final String CONSUMER_GROUP = "test_consumer";
private static final String NAME_SERVER_ADDRESS = "127.0.0.1:9876";
@Test
public void testRocketMQDynamicTableSourceWithLegalOption() {
final Map<String, String> options = new HashMap<>();
options.put("connector", IDENTIFIER);
options.put(RocketMQOptions.TOPIC.key(), TOPIC);
options.put(RocketMQOptions.CONSUMER_GROUP.key(), CONSUMER_GROUP);
options.put(RocketMQOptions.NAME_SERVER_ADDRESS.key(), NAME_SERVER_ADDRESS);
final DynamicTableSource tableSource = createTableSource(options);
assertTrue(tableSource instanceof RocketMQScanTableSource);
assertEquals(RocketMQScanTableSource.class.getName(), tableSource.asSummaryString());
}
@Test(expected = ValidationException.class)
public void testRocketMQDynamicTableSourceWithoutRequiredOption() {
final Map<String, String> options = new HashMap<>();
options.put("connector", IDENTIFIER);
options.put(RocketMQOptions.TOPIC.key(), TOPIC);
options.put(RocketMQOptions.CONSUMER_GROUP.key(), CONSUMER_GROUP);
options.put(RocketMQOptions.OPTIONAL_TAG.key(), "test_tag");
createTableSource(options);
}
@Test(expected = ValidationException.class)
public void testRocketMQDynamicTableSourceWithUnknownOption() {
final Map<String, String> options = new HashMap<>();
options.put(RocketMQOptions.TOPIC.key(), TOPIC);
options.put(RocketMQOptions.CONSUMER_GROUP.key(), CONSUMER_GROUP);
options.put(RocketMQOptions.NAME_SERVER_ADDRESS.key(), NAME_SERVER_ADDRESS);
options.put("unknown", "test_option");
createTableSource(options);
}
private static DynamicTableSource createTableSource(
Map<String, String> options, Configuration conf) {
return FactoryUtil.createTableSource(
null,
ObjectIdentifier.of("default", "default", IDENTIFIER),
new ResolvedCatalogTable(
CatalogTable.of(
Schema.newBuilder().fromResolvedSchema(SCHEMA).build(),
"mock source",
Collections.emptyList(),
options),
SCHEMA),
conf,
RocketMQDynamicTableSourceFactory.class.getClassLoader(),
false);
}
private static DynamicTableSource createTableSource(Map<String, String> options) {
return createTableSource(options, new Configuration());
}
}