Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
15 views

I'm using Kiwi TCMS and I can't find the option to create a new Test Suite. I expected to see a "New Suite" button under Test Cases, but it's not visible in my interface. These are the steps ...
Mostafa Essam Rohayem's user avatar
Advice
0 votes
2 replies
52 views

When creating integration tests for ASP.NET Core 10 web apps, we use the WebApplicationFactory<TEntryPoint> class. When a single ASP.NET Core web project is used as SUT, it's simple and it works:...
AlexB's user avatar
  • 4,684
0 votes
1 answer
72 views

I'm working on integration tests for a web application that's running in a Docker container within our GitLab CI/CD pipeline. The application is a frontend that requires Kerberos/SPNEGO authentication ...
ben green's user avatar
0 votes
1 answer
63 views

I'm on Spring Boot 3.5.6 with Java 25 (Temurin). I followed this tutorial. My config: @Configuration @EnableScheduling @Profile(value = "!integrationtest") public class SchedulingConfig { } ...
Gunnar's user avatar
  • 413
0 votes
0 answers
68 views

I'm working on an Integration test, where I want to use Testcontainers.CosmosDb, however it takes quite a long time (about 2min) for the CosmosDb to be ready. var network = new NetworkBuilder() ...
smolesen's user avatar
  • 1,405
2 votes
1 answer
68 views

I'm testing that: @RunWith(SpringRunner.class) @DataJpaTest @Import({ OrderService.class, UserService.class }) @AutoConfigureTestDatabase(replace = AutoConfigureTestDatabase.Replace.NONE) public class ...
VezzoLayer's user avatar
-4 votes
1 answer
121 views

I have a package "tools" that expose a method that must execute some logic only one time. The next calls don't do nothing. The file tools/tools.go is like: package tools import ( "...
Santiago Rincon's user avatar
1 vote
0 answers
53 views

I developed a REST API Quarkus project based on an OpenAPI specification to validate contract testing with Microcks. OpenAPI Specification openapi: 3.0.0 x-stoplight: id: 1q8257l49074g info: title:...
sonia belhadj's user avatar
1 vote
1 answer
100 views

I have a console app constructed using the following code: public partial class Program { private static async Task<int> Main(string[] args) { Host.CreateDefaultBuilder(args) ...
khteh's user avatar
  • 4,280
0 votes
0 answers
77 views

I'm working on an ASP.NET Core Web API that uses PuppeteerSharp to create PDF files from HTML. It has a Program class: public partial class Program { public static void Main(string[] callParams) ...
Jean-David Lanz's user avatar
3 votes
0 answers
47 views

I am setting up an automated integration test environment for a large, existing Entity Framework 6 project that uses a MySQL database. My goal is to create a fresh, empty database schema directly from ...
Jason Hunter's user avatar
0 votes
0 answers
51 views

I have an application that's currently using Mocha as its test runner, I've been exploring the native Node.js test runner but one stumbling block I've run into almost immediately is the question of ...
VirtualWolf's user avatar
1 vote
0 answers
40 views

I have a SpringBoot app and I have added JUnit5 integration tests that use testcontainers: class ControllerClassTest extends AbstractIntegrationTest { @ParameterizedTest(name = "{0}") ...
bash UI's user avatar
  • 11
3 votes
1 answer
132 views

I'm integration testing an ASP.NET Core app by using WebApplicationFactory. When starting the test server, I want to pass a command-line argument to the tested app, so to the Main method contained in ...
kjeld-jensen's user avatar
-1 votes
1 answer
87 views

I have a dozen feature branches that I would like to manually test at the same time by merging them into a single test branch, to avoid repeating the overhead of setting up the test environment for ...
Sparr's user avatar
  • 7,830
0 votes
0 answers
94 views

I'm currently working on integration tests for my project, which consists of two main components: an application and an engine. Both components are deployed into Azure Container Apps. The engine ...
user1877600's user avatar
1 vote
1 answer
99 views

I'm writing integration tests in my .NET Web API. I'm using XUnit for this. I am using factory and collection. And everything works as expected. I run factory there I have used PostgreSql database ...
pietro's user avatar
  • 221
0 votes
0 answers
92 views

I am trying to use TestContainers to set up integration testing for kafka. I am using generic apache kafka client in my code for setting up kafka producer and consumer.Now my scenario is to test a ...
Techie's user avatar
  • 81
2 votes
1 answer
110 views

My Program.cs file looks like this: public class Program { private static IConfigurationRoot _apiConfiguration = null!; public static async Task Main(string[] args) { try {...
KKS's user avatar
  • 3,649
0 votes
0 answers
55 views

I have a system that supports multiple simultaneous customer accounts for which I am trying to write integration tests. At present it extracts part of the request hostname in order to determine the ...
Adrian's user avatar
  • 2,875
3 votes
2 answers
261 views

My application is an ASP.NET Core 9 Web API. I configure authentication with this extension method: public static void SetupAuthentication(this IServiceCollection services) { var authSettings = ...
hiddenhenry's user avatar
0 votes
1 answer
83 views

What I am trying to achieve: Run an integration test for a Spring Controller in a test container, use a TestJpaConfig instead of JpaConfig: @SpringBootTest(webEnvironment = SpringBootTest....
CJR's user avatar
  • 3,640
0 votes
1 answer
63 views

When I run mix test, the supervision tree declared in Application.ex attempts to start, which in turn attempts to start AMQP connections, but because the AMQP broker is unavailable in the test ...
Stephan Meijer's user avatar
2 votes
0 answers
81 views

I want to add integration tests to the project. The project also has a Hangfire. I decided to do it using test containers and WebApplicationFactory. But when trying to add to Hangfire services ...
Artyom Elfimov's user avatar
0 votes
1 answer
25 views

I'd like to use Jest as a testing framework to kick off a suite of Integration tests, and inside each test, I need to access a SALT - which will be passed in via a HTTP request, the same request which ...
sudo install's user avatar
0 votes
0 answers
81 views

I have AWS lambda with Java 21 and integration tests with cucumber using test containers and cucumber junit platform (including @Suite). When I am running tests from it/java package, Cucumber tests ...
Edgar Yeghiazaryan's user avatar
0 votes
0 answers
30 views

I'm workgin on a FastAPI app, using SQLAlchemy for the ORM, writing tests in pytest. I've got the following integration test: async def test_list_items_success(authed_client, db_session): await ...
Rohit's user avatar
  • 3,240
0 votes
0 answers
48 views

I'm learning integration tests on very simple example. Specs: I have 2 .Net Core apps: App1 and App2. App1 uri: "http://localhost:1111", App2 uri: "http://localhost:2222" Scenario: ...
cembo's user avatar
  • 1,137
2 votes
0 answers
111 views

recently I have updated spring boot from 3.3.8 to newer version which is 3.4.1 and suddenly I have started to face a lot of new problems with integration tests. Few of them were really easy to adjust, ...
mastach's user avatar
  • 43
0 votes
0 answers
56 views

I am trying to run openapi springdoc for my application for which I am using <groupId>org.springdoc</groupId>` <artifactId>springdoc-openapi-maven-plugin</artifactId>` <...
samk5049's user avatar
0 votes
0 answers
30 views

I have an integration test for which I have defined a factory where I am raising a Postgres container public class IntegrationTestsWebFactory: WebApplicationFactory<Program>,IAsyncLifetime { ...
TaskMaster's user avatar
1 vote
1 answer
77 views

I am developing a Spring Boot application/library where i have a Service that sends a request to a an API. When in integration Test the Entry Point into the Service is an /integration Endpoint. The ...
BonBonn's user avatar
  • 29
0 votes
1 answer
69 views

The project I am working on currently has unit tests and integration tests both. The unit tests are correctly getting generated under /target/surefire-report/junitreports reports but the Integration ...
ravi saurav's user avatar
0 votes
0 answers
50 views

TL;DR: How to mock a microservice in integration tests when using Feign and Eureka? I am running integration tests on the Controller Layer of my Employee Service, which uses OpenFeign to create a ...
AbdoCherry's user avatar
0 votes
0 answers
103 views

I am encountering an issue with writing integration tests in Rust for an application that uses a database (PostgreSQL managed via SeaORM). Some of my tests need to use the database to be properly ...
spacecodeur's user avatar
  • 2,466
0 votes
1 answer
44 views

While trying to test a urwid-based question with input validation and autocomplete suggestions, I am experiencing some difficulties. The code that I am trying to test using pytest is given in the two ...
a.t.'s user avatar
  • 2,907
0 votes
0 answers
140 views

I'm trying to write an integration test for a Spring Boot application (written in Kotlin but should be similar in Java). It's a codebase I've inherited so I'm not too familiar with Spring Boot, but I'...
Peter Monks's user avatar
  • 4,429
0 votes
1 answer
90 views

I have a small webapp that opens a link in a new window. The document in the new window then interacts with the original webapp through the DOM. The webapp itself is written in Angular, but the link ...
meeque's user avatar
  • 23
0 votes
1 answer
66 views

I have an akka based application, and it has Application.java file which has structure like what we have defined here. Now I want to write integration tests for akka http endpoints in this application,...
Mandroid's user avatar
  • 7,778
0 votes
1 answer
222 views

Issue with Manually Setting ID in Spring Boot Integration Test with WebTestClient I am writing an integration test for my Spring Boot controller using WebTestClient. However, when I manually set the ...
ADITYA RAJ's user avatar
0 votes
0 answers
38 views

I am trying to create a mock api (Oracle fusion) by using stub data. But struggling with one of the endpoints. API request from the app -> /hcmRestApi/resources/11.13.18.05/workers?fields=...
Aspiring Coder's user avatar
1 vote
1 answer
94 views

Suppose I have a web app consisting of an API and a db. I also have a bunch of db migrations. Some of them update tables structure, while others also update the data. For instance, in migration_5 I do ...
Andrey's user avatar
  • 70
0 votes
1 answer
48 views

Hey, We have two .NET http api services. Let's say Service A and Service B. We use Azure Service Bus with Mass Transit implementation to communicate between the services. Of course, we write unit ...
pietro's user avatar
  • 221
2 votes
0 answers
96 views

I'm running integration tests for an ASP.NET Core 8 Web API project, and I have a test that passes in my local IDE (Visual Studio Test Explorer) but fails in GitHub Actions with a 403 Forbidden error. ...
Hadi Soufan's user avatar
0 votes
0 answers
19 views

I’m trying to write a unit test for the renderCart function in my orderSummary.js file using Jasmine. However, I’m encountering an issue where the paymentSummary.js module, which is imported in ...
Aditya Gautam's user avatar
0 votes
0 answers
32 views

Let's assume we have a desktop application that implements the CreateMyFile function and this function is tested via unit tests. On the other hand, we have a Make file menu item that, when selected, ...
Joe J's user avatar
  • 1,349
1 vote
2 answers
145 views

I’m trying to create integration tests in .NET 9 C# using xUnit and TestContainers. However, whenever I run the tests, a new database container is created for each test class. I want to initialize ...
BrePi's user avatar
  • 49
0 votes
0 answers
91 views

Since two days I am struggling with this issue. I have 4 Microservices all running with Quarkus (for now they are all running with differenct ports on localhost). In a local Maven Module I run ...
Veilchen4ever's user avatar
2 votes
0 answers
92 views

I have the following structure of microservices with Apollo Gateway: Each microservice shares its GraphQL schema with the gateway. Types in these schemas refer to types from neighboring microservice ...
Ivan Ivanchuk's user avatar
0 votes
1 answer
183 views

How to empty all Queues for a RabbitMQ Testcontainer in Java? Scenario We're in an Integration Test scenario where we hand around a reusable RabbitMQ Testcontainer. Between test runs, we want to clear ...
Georg Muehlenberg's user avatar

1
2 3 4 5
142