Skip to main content
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. ...
Stewart's user avatar
  • 18.3k
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 ...
Anjan Biswas's user avatar
-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 ...
IronMan's user avatar
  • 13
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'...
The Lemon's user avatar
  • 1,419
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 [...
georgink's user avatar
-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 ...
Pabloch's user avatar
  • 15
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: - ...
Stewart's user avatar
  • 18.3k
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 ...
Andy Nguyen's user avatar
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 { ...
Frank Castle's user avatar
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 ...
isaeed's user avatar
  • 15
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 ...
arqam's user avatar
  • 3,809
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: ...
Amrit Anand's user avatar
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 ...
twerpiebird's user avatar
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 ...
Archimedes Trajano's user avatar
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. ...
JP13's user avatar
  • 70

15 30 50 per page
1
2 3 4 5
79