How do you automate integration testing? I use JUnit for some of these tests. This is one of the solutions or is totally wrong? What do you suggest?
|
1
|
|
|
|
|
|
JUnit works. There are no limitations that restrict it to being unit tests only. We use JUnit, Maven and CruiseControl to do CI. There may be tools that are specific for integration testing, but I would think their usefulness is dependent on what type of system components you are integrating. JUnit will work fine for non UI type testing. |
||
|
|
|
|
I also use JUnit for the purpose of integration testing, and I'm happy with it. It is a good idea to separate the unit test suite from the integration test suite though, even if both are written in JUnit. You'd want your unit test suite to run instantaneously, so that you can run it before/after any change. For integration tests this may be harder to achieve, so you'll probably run them less often (once per hour, once per day). |
||
|
|
|
|
The suggestion depends on your application and your objective. I've written integration tests in JUnit, but I've also seen people use HtmlUnit (JUnit extension), Selenium, Watir, Fit/Fitness, and even commercial tools like WinRunner and Silk. So tell us a bit more about your domain and the objectives of your tests and you can probably get a better answer. |
|||
|
|
|
I've used JUnit for doing a lot of integration testing. Integration testing can, of course, mean many different things. For more system level integration tests, I prefer to let scripts drive my testing process from outside. Here's an approach that works well for me for applications that use http and databases and I want to verify the whole stack:
This gives you integration tests that can run without any setup of database or application server and that exercises the stack from http down. Since it has no dependencies on external resources, this test runs fine on the build server. Here some of the code I use:
For those who'd like to know more, I've written an articla article about Embedded Integration Tests with Jetty and JWebUnit on Java.net. |
||
|
|
|
|
In our work here, our integration testing solution has three major parts:
The end result is that most people here never worry about integration testing: it just happens. Unit testing, on the other hand, is everyone's priority. JUnit makes it easy to construct tests, though good tests will always require thought and development time. |
||
|
|
|
|
Yes, you may use junit for integration tests, but it depends on the type of integration test you need. Testing a servlet:
Testing a spring application:
But pure Junit has its limit. Testing user interfaces is a typical case. You may use selenium for web applications, soapui for webservices or other appropriate tools. But whatever you use, it should be possible to integrate it in your continious build (cruise control, team city or whatever). |
||
|
|
|
|
When using Maven to build a project, I've had a little more luck with TestNG because it has In either case, segmenting out the tests as both TestNG and jUnit do is helpful with integration tests too. |
||
|
|
|
|
You could use JUnit to write integration tests, but I don't know how typical that is. Normally you write unit tests with JUnit, and use a tool like Maven or CruiseControl to do integration tests and automated continuous integration. I do know that it's common to re-use your unit tests as a step in your CI process. |
||||||||
|
|
|
Definitely! We use a combination of JUnit, ANT tasks to run them, and Hudson for continues integration tests. Works like a charm. |
||
|
|
