vote up 0 vote down star
2

I'm looking for a good, preferably free tool for automating tests of a java (EJB3) application without any kind of GUI.

Tool should be capable of at least:

  • Inserting / updating / deleting data on database
  • Querying and comparing data on database
  • Reading and writing to FTP server
  • Initializing test environment, launching EJB3 bean, cleaning up test environment after the test
  • Reporting
  • Some kind of scripting interface is enough, no GUI required

Naturally this could be done using Java & JUnit but it would be pretty tedious. I would appreciate any hints of such tools.

flag

77% accept rate

3 Answers

vote up 1 vote down

Here is a HUGE list of open sources solutions.

link|flag
Almost all of them seem to be meant for testing web or GUI applications. – tputkonen Jul 13 at 13:15
A lot of them are, true, but DBMonster (dbmonster.kernelpanic.pl/index.html) is one of the many tools for DB. I didn't find a good tool for testing FTP. And JavaTestRunner can test EJB's. Plenty of choices and tools out there, I simply found a list of many (but not all) of them. – amischiefr Jul 13 at 14:41
vote up 1 vote down

It sounds like you are looking for a combination of DBUnit and Cactus (the FTP stuff might require Commons-NET or Commons-VFS). Use ANT, with its scripting support, to get the reporting on the test results and the scripting.

That hits the checklist. If you want to test those EJB's out of the container, there is EJB3Unit.

link|flag
I'm looking for something a bit more higher level. Some kind of script based system. – tputkonen Jul 13 at 13:16
vote up 0 vote down

Robot framework, Fitnesse and Concordion seem currently the most interesting candidates.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.