Skip to content

Commit

Permalink
Reinstate Aws2KinesisFirehoseTest against localstack
Browse files Browse the repository at this point in the history
Fixes #6329
  • Loading branch information
jamesnetherton committed Aug 12, 2024
1 parent 35c3eed commit 6576c7f
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
import io.quarkus.test.junit.QuarkusTest;
import io.restassured.RestAssured;
import io.restassured.http.ContentType;
import org.apache.camel.quarkus.test.mock.backend.MockBackendUtils;
import org.apache.camel.quarkus.test.support.aws2.Aws2Client;
import org.apache.camel.quarkus.test.support.aws2.Aws2TestResource;
import org.apache.camel.quarkus.test.support.aws2.BaseAWs2TestSupport;
Expand All @@ -33,8 +32,6 @@
import org.eclipse.microprofile.config.Config;
import org.eclipse.microprofile.config.ConfigProvider;
import org.jboss.logging.Logger;
import org.junit.jupiter.api.Assumptions;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import org.testcontainers.containers.localstack.LocalStackContainer.Service;
import software.amazon.awssdk.core.ResponseInputStream;
Expand All @@ -58,12 +55,6 @@ public Aws2KinesisFirehoseTest() {
super("/aws2-kinesis-firehose");
}

@BeforeEach
void setUp() {
// TODO: https://github.com/apache/camel-quarkus/issues/6329
Assumptions.assumeFalse(MockBackendUtils.startMockBackend());
}

@Test
public void firehose() {
final String msg = RandomStringUtils.randomAlphanumeric(32 * 1024);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
import org.apache.camel.quarkus.test.support.aws2.BaseAWs2TestSupport;
import org.awaitility.Awaitility;
import org.jboss.logging.Logger;
import org.junit.jupiter.api.Test;
import org.testcontainers.containers.localstack.LocalStackContainer.Service;
import software.amazon.awssdk.services.s3.S3Client;

Expand All @@ -44,7 +43,6 @@ public Aws2KinesisTest() {
super("/aws2-kinesis");
}

@Test
public void kinesis() {
final String msg = "kinesis-" + java.util.UUID.randomUUID().toString().replace("-", "");
RestAssured.given() //
Expand Down

0 comments on commit 6576c7f

Please sign in to comment.