forked from apache/pulsar
-
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.
a simple debezium integration test (apache#3154)
### Motivation create a simple debezium integration test. In this test, it start a Debezium MySQL Container based on "debezium/example-mysql:0.8", then use debezium source connector to binlog from MySQL, and store the debezium output into Pulsar. It verify the consumer readout message number is as expected. ### Modifications create a simple debezium integration test. ### Result this test passed.
- Loading branch information
Showing
3 changed files
with
229 additions
and
1 deletion.
There are no files selected for viewing
56 changes: 56 additions & 0 deletions
56
.../src/test/java/org/apache/pulsar/tests/integration/containers/DebeziumMySQLContainer.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,56 @@ | ||
/** | ||
* 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.pulsar.tests.integration.containers; | ||
|
||
|
||
import org.testcontainers.containers.wait.strategy.HostPortWaitStrategy; | ||
|
||
public class DebeziumMySQLContainer extends ChaosContainer<DebeziumMySQLContainer> { | ||
|
||
public static final String NAME = "mysql"; | ||
static final Integer[] PORTS = { 3306 }; | ||
|
||
private static final String IMAGE_NAME = "debezium/example-mysql:0.8"; | ||
|
||
public DebeziumMySQLContainer(String clusterName) { | ||
super(clusterName, IMAGE_NAME); | ||
this.withEnv("MYSQL_USER", "mysqluser"); | ||
this.withEnv("MYSQL_PASSWORD", "mysqlpw"); | ||
this.withEnv("MYSQL_ROOT_PASSWORD", "debezium"); | ||
|
||
} | ||
|
||
@Override | ||
public String getContainerName() { | ||
return clusterName; | ||
} | ||
|
||
@Override | ||
protected void configure() { | ||
super.configure(); | ||
this.withNetworkAliases(NAME) | ||
.withExposedPorts(PORTS) | ||
.withCreateContainerCmdModifier(createContainerCmd -> { | ||
createContainerCmd.withHostName(NAME); | ||
createContainerCmd.withName(getContainerName()); | ||
}) | ||
.waitingFor(new HostPortWaitStrategy()); | ||
} | ||
|
||
} |
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
107 changes: 107 additions & 0 deletions
107
...ation/src/test/java/org/apache/pulsar/tests/integration/io/DebeziumMySqlSourceTester.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,107 @@ | ||
/** | ||
* 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.pulsar.tests.integration.io; | ||
|
||
import java.util.Map; | ||
import java.util.concurrent.TimeUnit; | ||
import lombok.Getter; | ||
import lombok.extern.slf4j.Slf4j; | ||
import org.apache.pulsar.client.api.Consumer; | ||
import org.apache.pulsar.client.api.Message; | ||
import org.apache.pulsar.tests.integration.containers.DebeziumMySQLContainer; | ||
import org.apache.pulsar.tests.integration.containers.PulsarContainer; | ||
import org.apache.pulsar.tests.integration.topologies.PulsarCluster; | ||
import org.testng.Assert; | ||
|
||
/** | ||
* A tester for testing Debezium MySQL source. | ||
* | ||
* It reads binlog from MySQL, and store the debezium output into Pulsar. | ||
* This test verify that the target topic contains wanted number messages. | ||
* | ||
* Debezium MySQL Container is "debezium/example-mysql:0.8", | ||
* which is a MySQL database server preconfigured with an inventory database. | ||
*/ | ||
@Slf4j | ||
public class DebeziumMySqlSourceTester extends SourceTester<DebeziumMySQLContainer> { | ||
|
||
private static final String NAME = "kafka-connect-adaptor"; | ||
|
||
private final String pulsarServiceUrl; | ||
|
||
@Getter | ||
private DebeziumMySQLContainer debeziumMySqlContainer; | ||
|
||
private final PulsarCluster pulsarCluster; | ||
|
||
public DebeziumMySqlSourceTester(PulsarCluster cluster) { | ||
super(NAME); | ||
this.pulsarCluster = cluster; | ||
pulsarServiceUrl = "pulsar://pulsar-proxy:" + PulsarContainer.BROKER_PORT; | ||
|
||
sourceConfig.put("task.class", "io.debezium.connector.mysql.MySqlConnectorTask"); | ||
sourceConfig.put("database.hostname", "mysql"); | ||
sourceConfig.put("database.port", "3306"); | ||
sourceConfig.put("database.user", "debezium"); | ||
sourceConfig.put("database.password", "dbz"); | ||
sourceConfig.put("database.server.id", "184054"); | ||
sourceConfig.put("database.server.name", "dbserver1"); | ||
sourceConfig.put("database.whitelist", "inventory"); | ||
sourceConfig.put("database.history", "org.apache.pulsar.io.debezium.PulsarDatabaseHistory"); | ||
sourceConfig.put("database.history.pulsar.topic", "history-topic"); | ||
sourceConfig.put("database.history.pulsar.service.url", pulsarServiceUrl); | ||
sourceConfig.put("key.converter", "org.apache.kafka.connect.json.JsonConverter"); | ||
sourceConfig.put("value.converter", "org.apache.kafka.connect.json.JsonConverter"); | ||
sourceConfig.put("pulsar.service.url", pulsarServiceUrl); | ||
sourceConfig.put("offset.storage.topic", "offset-topic"); | ||
} | ||
|
||
@Override | ||
public void setServiceContainer(DebeziumMySQLContainer container) { | ||
log.info("start debezium mysql server container."); | ||
debeziumMySqlContainer = container; | ||
pulsarCluster.startService("mysql", debeziumMySqlContainer); | ||
} | ||
|
||
@Override | ||
public void prepareSource() throws Exception { | ||
log.info("debezium mysql server already contains preconfigured data."); | ||
} | ||
|
||
@Override | ||
public Map<String, String> produceSourceMessages(int numMessages) throws Exception { | ||
log.info("debezium mysql server already contains preconfigured data."); | ||
return null; | ||
} | ||
|
||
public void validateSourceResult(Consumer<String> consumer, Map<String, String> kvs) throws Exception { | ||
int recordsNumber = 0; | ||
Message<String> msg = consumer.receive(2, TimeUnit.SECONDS); | ||
while(msg != null) { | ||
recordsNumber ++; | ||
log.info("Received message: {}.", msg.getValue()); | ||
Assert.assertTrue(msg.getValue().contains("dbserver1.inventory.products")); | ||
consumer.acknowledge(msg); | ||
msg = consumer.receive(1, TimeUnit.SECONDS); | ||
} | ||
|
||
Assert.assertEquals(recordsNumber, 9); | ||
log.info("Stop debezium mysql server container. topic: {} has {} records.", consumer.getTopic(), recordsNumber); | ||
} | ||
} |