Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm working on a Java decompiler with correctness(*) as a primary design goal. To test it, I'm looking for some Java Open Source projects with fine-grained unit test coverage. These projects can be large or small, but test should exist which cover individual classes or methods. I plan to compile these projects with various compilers/settings, decompile them, recompile them, and run the projects' unit tests. Any suggestions would be appreciated. I'd like a combination of JDK1.5+ and JDK1.4 (or prior) codebases.

(*) correctness meaning that the decompiled class files can be recompiled into functionally equivalent object code.

In case anyone's wondering, my goal is to produce a tool to help IT shops support Java abandonware -- systems no longer supported but without source code available.

share|improve this question
Are you suggesting that JAD and other Java decompilers product incorrect code? Wouldn't your definition of correctness be the primary design goal of every decompiler out there? What's the point if it's not? – duffymo May 2 '09 at 17:32
I tested several decompilers on a piece of abandonware important to a large company. None of them even produced recompilable code, so I couldn't even evaluate correctness. With that said, I've had success with JAD on some smaller, simpler codebases. This seems to be a really nice tool: java.decompiler.free.fr However, it's broken for my need. The author is not making source code available, so I can't fix it. – ShabbyDoo May 2 '09 at 17:48
They don't always even produce code that compiles, especially if the bytecode has been processed with an obfuscator. Also decompiling some JVM languages might be hard - for example DJ (based on Jad) is not able to decompile some of the methods in Scala case classes (it produces syntactically incorrect code with GOTOs). – Esko Luontola May 2 '09 at 17:49
As an aside, this is my primary use case: - Decompile jars - Recompile - Test in QA environment, etc. - Put recompiled jars into production Now, one can debug issues, interpret stack traces, etc. And, the code can be commented/modified just like in-house code. – ShabbyDoo May 2 '09 at 17:50
Decompiling projects reminds me of thedailywtf.com/Articles/The_Call_of_Codethulhu.aspx ;D – Esko Luontola May 2 '09 at 18:07

1 Answer

up vote 3 down vote accepted

One good place for finding such projects might be http://www.testabilityexplorer.org/ - They have metrics for the testability of open source projects. I'm not 100% sure, but maybe they also record code coverage (or at least you can reason that projects with a good testability score probably have tests).

As for some specific project, FitNesse should have a good test suite. Also, here is my shameless plug - it has a good test suite. :)

share|improve this answer
This is an awesome meta-answer. – ShabbyDoo May 2 '09 at 17:53

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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