Skip to main content

Questions tagged [integration-testing]

Integration testing is a phase in software testing where individual software modules (or components) are combined and tested in a group. Integration testing happens after unit testing, and before system testing.

8 votes
3 answers
129 views

I am writing tests for legacy software which has a dependency on CGI scripts on a remote machine. Mocking the dependency would entail modifying the code under test, which is a thing I cannot do at the ...
Afelium's user avatar
  • 133
3 votes
3 answers
615 views

I have a script bin/create_workflow_input.py that is part of a larger application that launches bioinformatics workflows. The script itself (not shown) writes into ...
Timur Shtatland's user avatar
4 votes
1 answer
166 views

I am making a base test class that bootstraps database Test cases ...
Dimitrios Desyllas's user avatar
1 vote
1 answer
91 views

Here's a suite of integration tests for my REST controller. Among other things, it reflects my efforts to reduce code duplication First, I introduced some class fields. ...
Sergey's user avatar
  • 739
3 votes
1 answer
176 views

I am interested in any kind of possible improvement to this method of testing a Rust program with user interaction in an end-to-end manner (simulating user input and asserting a certain program output ...
Caridorc's user avatar
  • 28.2k
4 votes
2 answers
2k views

While running unit tests (most of them integration tests) with Python I create some directories. They need to be deleted after the test or when the test fails. The execution of the cleanup code need ...
buhtz's user avatar
  • 219
1 vote
1 answer
92 views

I have a volunteer registration website that I wrote some end-to-end tests for in Selenium. Selenium is of course software that lets you automate clicking around a browser, which makes it great for ...
RedDragonWebDesign's user avatar
0 votes
0 answers
543 views

I'm writing some function tests and wrapping a Microsoft Playwright (it's similar to Selenium for those unfamiliar) IPage with a page object containing some helper ...
agartee's user avatar
  • 109
1 vote
2 answers
134 views

I am trying to use Selenium for website automation testing tasks and I am new to Selenium testing framework. The the situation I faced is to wait the website components loading and then do the related ...
JimmyHu's user avatar
  • 7,575
3 votes
1 answer
105 views

I've created an on-demand class that can be initiated to collected any new data written to file from start_recording call until ...
Zohar81's user avatar
  • 153
1 vote
1 answer
73 views

I'm reading on how to write proper testing suites here. So I'm trying to follow the selenium example in the docs which is in Java; I'm trying to translate it to Python since my app is written in ...
Tom's user avatar
  • 241
5 votes
0 answers
120 views

I was thinking about how unit tests require you to manually instantiate all your dependencies, even though many of them are the same for every test or don't really matter (such as logging, where ...
Hosch250's user avatar
5 votes
0 answers
181 views

I'm writing integration for a project, but our framework doesn't provide any ability to inject dependencies, so I've written tests with a unit testing framework (GTest) and used a mock (GMock) in an ...
Matt's user avatar
  • 151
6 votes
1 answer
4k views

I have this simple setup for a .NET Core project which is just a very basic HttpClient usage to do some simple integration tests to a RESTful API. For now the test project remains separated from the ...
Felipe's user avatar
  • 61
3 votes
1 answer
186 views

I created a test-server for RESTful integration-tests that I call TeapotServer because I like the status-code 418 that the ...
t3chb0t's user avatar
  • 44.7k

15 30 50 per page