1,173 questions
0
votes
0
answers
38
views
Where does this Mongo stacktrace come from in a Spring Boot app?
I have a Spring Boot 3.4.2 app, which has several databases and services configured, including MongoDB. There are 2 connections to MongoDB, each with their own credentials and database they access.
...
1
vote
1
answer
50
views
Quarkus Always Tries to Use Docker for PostgreSQL Despite Disabling DevServices
Problem Statement
I am trying to configure my Quarkus application to connect to my local PostgreSQL database, but it always tries to start PostgreSQL using Docker via Dev Services. Even after ...
-1
votes
0
answers
32
views
How to Run Spring Boot Integration Tests with Testcontainers in a Dockerfile Build [duplicate]
I'm trying to create a Docker image for my Spring Boot application that includes running integration tests during the build process. These integration tests rely on Testcontainers to spin up ...
0
votes
0
answers
42
views
Intermittent Login Failed errors with Integration Tests using SQL Server TestContainers with transactions
I'm spinning up a WebApplicationFactory against our main API's Program.cs, mocking out services as needed, and then calling several integration tests against different endpoints.
For the database, we'...
1
vote
1
answer
24
views
How do I isolate MassTransit test harness per test when using a shared SQL container and scoped transactions in xUnit?
I have an integration testing setup in .NET using xUnit v3, Testcontainers (for SQL Server), and MassTransit. My goal is to have:
A single SQL container spun up once at the assembly level (using [...
-2
votes
1
answer
43
views
How to bind ports in kafka configuration and test container
First, if this question is duplicated, please forgive me.
I'm trying to create an integration test with kafka and testcontainers, and i'm facing the problem that my kafka config (i suspect) is not ...
0
votes
0
answers
31
views
TestContainers Mongo fails to start, but Docker Compose with same config is OK
I have a Docker compose.yml for MongoDB, and this works.
mongodb:
image: mongo:8.0.4-noble
container_name: mongodb
hostname: mongodb
restart: unless-stopped
volumes:
- ...
0
votes
0
answers
9
views
Elasticsearch TestContainer with mapper size plugin (.NET)
I'm trying to setup an Elasticsearch TestContainer that uses the mapper size plugin. I'm unsure how to go about this, particularly since the documentation notes that all Elasticsearch nodes must be ...
0
votes
2
answers
103
views
How to reset DB after each test class in Testcontainers?
public class AbstractContainerBaseTest {
@ServiceConnection
static final MySQLContainer<?> MY_SQL_CONTAINER = new MySQLContainer<>("mysql:8.0.32")
static {
...
0
votes
1
answer
67
views
How to do integration testing in Spring Cloud Gateway and keycloak?
I wanted to add integration tests for my spring cloud gateway. I found test containers and using that I spin up two services, keycloak container and gateway.
Now I can already get the access token ...
1
vote
1
answer
27
views
Couchbase TestContainer with Transactions
My issue is with the TestContainer behavior.
I am trying to test my code in couchbase testcontainer but facing certain anomaly.
My main part of code
public void execute() {
boolean success ...
0
votes
1
answer
157
views
TestContainers outputs error: Could not find a valid Docker environment
I am trying to run TestContainers on my M3 Apple machine using rancher-desktop application but it is unable to find valid Docker environment
Env Details:-
Rancher version: 1.18.0
Kubernetes version: ...
0
votes
1
answer
79
views
Why can't I push an image to a local Docker registry started with Testcontainers?
I'm trying to create a local Docker registry using Testcontainers and push an image programatically to it. However, I'm getting a connection refused error when attempting to push the image. The first ...
0
votes
1
answer
132
views
How would I structure my annotation and Spring Configurations so that I can use an annotation to set up a TestContainer test without an abstract class
I want to be able to simply do
@MyTestConfig
class MyTests {
@Autowired SomeJpaRepo repo;
@Test
void findAll() {
assertThatCode(repo::findAll).doesNotThrowAnyExceptions();
}
}
What I ...
1
vote
1
answer
50
views
Is there a way to add a Component referencing a WireMockContainer to a Dapr testcontainer?
I am trying to test a spring boot application using dapr. For my test set up I want to start a Dapr testcontainer and have a Conmponent that references a Wiremock testcontainer to stub http calls.
...