-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Improve][e2e] Unified e2e IT for Redis
- Loading branch information
Showing
8 changed files
with
330 additions
and
5 deletions.
There are no files selected for viewing
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
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
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
66 changes: 66 additions & 0 deletions
66
seatunnel-e2e/seatunnel-connector-v2-e2e/connector-redis-e2e/pom.xml
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,66 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- | ||
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. | ||
--> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<parent> | ||
<groupId>org.apache.seatunnel</groupId> | ||
<artifactId>seatunnel-connector-v2-e2e</artifactId> | ||
<version>${revision}</version> | ||
</parent> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<artifactId>connector-redis-e2e</artifactId> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>redis.clients</groupId> | ||
<artifactId>jedis</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
<!-- SeaTunnel connectors --> | ||
<dependency> | ||
<groupId>org.apache.seatunnel</groupId> | ||
<artifactId>connector-redis</artifactId> | ||
<version>${project.version}</version> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.seatunnel</groupId> | ||
<artifactId>connector-fake</artifactId> | ||
<version>${project.version}</version> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.seatunnel</groupId> | ||
<artifactId>connector-assert</artifactId> | ||
<version>${project.version}</version> | ||
<scope>test</scope> | ||
</dependency> | ||
</dependencies> | ||
|
||
<dependencyManagement> | ||
<dependencies> | ||
<dependency> | ||
<groupId>org.apache.seatunnel</groupId> | ||
<artifactId>connector-redis</artifactId> | ||
<version>${project.version}</version> | ||
<type>pom</type> | ||
<scope>import</scope> | ||
</dependency> | ||
</dependencies> | ||
</dependencyManagement> | ||
</project> |
190 changes: 190 additions & 0 deletions
190
...e/connector-redis-e2e/src/test/java/org/apache/seatunnel/e2e/connector/redis/RedisIT.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,190 @@ | ||
/* | ||
* 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.seatunnel.e2e.connector.redis; | ||
|
||
import static java.net.HttpURLConnection.HTTP_OK; | ||
import static java.net.HttpURLConnection.HTTP_UNAUTHORIZED; | ||
|
||
import org.apache.seatunnel.api.table.type.ArrayType; | ||
import org.apache.seatunnel.api.table.type.BasicType; | ||
import org.apache.seatunnel.api.table.type.DecimalType; | ||
import org.apache.seatunnel.api.table.type.LocalTimeType; | ||
import org.apache.seatunnel.api.table.type.MapType; | ||
import org.apache.seatunnel.api.table.type.PrimitiveByteArrayType; | ||
import org.apache.seatunnel.api.table.type.SeaTunnelDataType; | ||
import org.apache.seatunnel.api.table.type.SeaTunnelRow; | ||
import org.apache.seatunnel.api.table.type.SeaTunnelRowType; | ||
import org.apache.seatunnel.e2e.common.TestResource; | ||
import org.apache.seatunnel.e2e.common.TestSuiteBase; | ||
import org.apache.seatunnel.e2e.common.container.TestContainer; | ||
import org.apache.seatunnel.format.json.JsonSerializationSchema; | ||
|
||
import lombok.extern.slf4j.Slf4j; | ||
import org.awaitility.Awaitility; | ||
import org.junit.jupiter.api.AfterAll; | ||
import org.junit.jupiter.api.Assertions; | ||
import org.junit.jupiter.api.BeforeAll; | ||
import org.junit.jupiter.api.TestTemplate; | ||
import org.testcontainers.containers.Container; | ||
import org.testcontainers.containers.GenericContainer; | ||
import org.testcontainers.containers.output.Slf4jLogConsumer; | ||
import org.testcontainers.containers.wait.strategy.HttpWaitStrategy; | ||
import org.testcontainers.utility.DockerImageName; | ||
import redis.clients.jedis.Jedis; | ||
|
||
import java.io.IOException; | ||
import java.math.BigDecimal; | ||
import java.time.Duration; | ||
import java.time.LocalDate; | ||
import java.time.LocalDateTime; | ||
import java.util.ArrayList; | ||
import java.util.Collections; | ||
import java.util.List; | ||
import java.util.concurrent.TimeUnit; | ||
|
||
import scala.Tuple2; | ||
|
||
@Slf4j | ||
public class RedisIT extends TestSuiteBase implements TestResource { | ||
private static final String IMAGE = "redis:latest"; | ||
private static final String HOST = "redis-e2e"; | ||
private static final int PORT = 6379; | ||
private static final String PASSWORD = "SeaTunnel"; | ||
|
||
private static final Tuple2<SeaTunnelRowType, List<SeaTunnelRow>> TEST_DATASET = generateTestDataSet(); | ||
|
||
private GenericContainer<?> redisContainer; | ||
|
||
private Jedis jedis; | ||
|
||
@BeforeAll | ||
@Override | ||
public void startUp() throws Exception { | ||
this.redisContainer = new GenericContainer<>(DockerImageName.parse(IMAGE)) | ||
.withNetwork(NETWORK) | ||
.withNetworkAliases(HOST) | ||
.withExposedPorts(PORT) | ||
.withLogConsumer(new Slf4jLogConsumer(log)) | ||
.withCommand(String.format("redis-server --requirepass %s", PASSWORD)) | ||
.waitingFor(new HttpWaitStrategy() | ||
.forPort(PORT) | ||
.forStatusCodeMatching(response -> response == HTTP_OK || response == HTTP_UNAUTHORIZED) | ||
.withStartupTimeout(Duration.ofMinutes(2))); | ||
log.info("Redis container started"); | ||
Awaitility.given().ignoreExceptions() | ||
.atLeast(100, TimeUnit.MILLISECONDS) | ||
.pollInterval(500, TimeUnit.MILLISECONDS) | ||
.atMost(180, TimeUnit.SECONDS) | ||
.untilAsserted(this::initJedis); | ||
this.initSourceData(); | ||
} | ||
|
||
private void initSourceData() { | ||
JsonSerializationSchema jsonSerializationSchema = new JsonSerializationSchema(TEST_DATASET._1()); | ||
List<SeaTunnelRow> rows = TEST_DATASET._2(); | ||
for (int i = 0; i < rows.size(); i++) { | ||
jedis.set("key_test" + i, new String(jsonSerializationSchema.serialize(rows.get(i)))); | ||
} | ||
} | ||
|
||
private static Tuple2<SeaTunnelRowType, List<SeaTunnelRow>> generateTestDataSet() { | ||
SeaTunnelRowType rowType = new SeaTunnelRowType( | ||
new String[]{ | ||
"id", | ||
"c_map", | ||
"c_array", | ||
"c_string", | ||
"c_boolean", | ||
"c_tinyint", | ||
"c_smallint", | ||
"c_int", | ||
"c_bigint", | ||
"c_float", | ||
"c_double", | ||
"c_decimal", | ||
"c_bytes", | ||
"c_date", | ||
"c_timestamp" | ||
}, | ||
new SeaTunnelDataType[]{ | ||
BasicType.LONG_TYPE, | ||
new MapType<>(BasicType.STRING_TYPE, BasicType.SHORT_TYPE), | ||
ArrayType.BYTE_ARRAY_TYPE, | ||
BasicType.STRING_TYPE, | ||
BasicType.BOOLEAN_TYPE, | ||
BasicType.BYTE_TYPE, | ||
BasicType.SHORT_TYPE, | ||
BasicType.INT_TYPE, | ||
BasicType.LONG_TYPE, | ||
BasicType.FLOAT_TYPE, | ||
BasicType.DOUBLE_TYPE, | ||
new DecimalType(2, 1), | ||
PrimitiveByteArrayType.INSTANCE, | ||
LocalTimeType.LOCAL_DATE_TYPE, | ||
LocalTimeType.LOCAL_DATE_TIME_TYPE | ||
} | ||
); | ||
|
||
List<SeaTunnelRow> rows = new ArrayList<>(); | ||
for (int i = 0; i < 100; i++) { | ||
SeaTunnelRow row = new SeaTunnelRow( | ||
new Object[]{ | ||
Long.valueOf(i), | ||
Collections.singletonMap("key", Short.parseShort("1")), | ||
new Byte[]{Byte.parseByte("1")}, | ||
"string", | ||
Boolean.FALSE, | ||
Byte.parseByte("1"), | ||
Short.parseShort("1"), | ||
Integer.parseInt("1"), | ||
Long.parseLong("1"), | ||
Float.parseFloat("1.1"), | ||
Double.parseDouble("1.1"), | ||
BigDecimal.valueOf(11, 1), | ||
"test".getBytes(), | ||
LocalDate.now(), | ||
LocalDateTime.now() | ||
}); | ||
rows.add(row); | ||
} | ||
return Tuple2.apply(rowType, rows); | ||
} | ||
|
||
private void initJedis() { | ||
Jedis jedis = new Jedis(redisContainer.getHost(), redisContainer.getFirstMappedPort()); | ||
jedis.auth(PASSWORD); | ||
this.jedis = jedis; | ||
} | ||
|
||
@AfterAll | ||
@Override | ||
public void tearDown() throws Exception { | ||
jedis.close(); | ||
redisContainer.close(); | ||
} | ||
|
||
@TestTemplate | ||
public void testRedis(TestContainer container) throws IOException, InterruptedException { | ||
Container.ExecResult execResult = container.executeJob("/redis-to-reds.conf"); | ||
Assertions.assertEquals(0, execResult.getExitCode()); | ||
Assertions.assertEquals(100, jedis.llen("key_list")); | ||
// Clear data to prevent data duplication in the next TestContainer | ||
jedis.del("key_list"); | ||
Assertions.assertEquals(0, jedis.llen("key_list")); | ||
} | ||
} |
22 changes: 22 additions & 0 deletions
22
...el-e2e/seatunnel-connector-v2-e2e/connector-redis-e2e/src/test/resources/log4j.properties
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,22 @@ | ||
# | ||
# 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. | ||
# | ||
# Set everything to be logged to the console | ||
log4j.rootCategory=INFO, console | ||
log4j.appender.console=org.apache.log4j.ConsoleAppender | ||
log4j.appender.console.target=System.err | ||
log4j.appender.console.layout=org.apache.log4j.PatternLayout | ||
log4j.appender.console.layout.ConversionPattern=%d{yy/MM/dd HH:mm:ss} %p %c{1}: %m%n |
41 changes: 41 additions & 0 deletions
41
...e2e/seatunnel-connector-v2-e2e/connector-redis-e2e/src/test/resources/redis-to-redis.conf
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,41 @@ | ||
# | ||
# 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. | ||
# | ||
|
||
env { | ||
execution.parallelism = 1 | ||
job.mode = "BATCH" | ||
} | ||
|
||
source { | ||
Redis { | ||
host = "redis-e2e" | ||
port = 6379 | ||
auth = "SeaTunnel" | ||
keys = "key_test*" | ||
data_type = key | ||
} | ||
} | ||
|
||
sink { | ||
Redis { | ||
host = "redis-e2e" | ||
port = 6379 | ||
auth = "SeaTunnel" | ||
key = "key_list" | ||
data_type = list | ||
} | ||
} |
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