We use Hudson (well, Jenkins now) for CI. I have just started a project based on Node.js, and am investigating Expresso and Gently (testing and mocking). I really like the fact that Expresso works with node-jscoverage to generate code coverage reports.

Has anybody started a project to display Expresso and node-jscoverage reports (or JScoveage) in Hudson? Failing that, is there some documantation on what kind of output Hudson is expecting, short of inventing an entire new plugin?

In summary, I'm looking for two types of output here. Test results (like junit) and coverage reports (like Cobertura).

link|improve this question

71% accept rate
1  
I've found similar questions here, and here. – abendigo Jun 11 '11 at 17:36
this is rough. I've spent the last few hours trying to integrate expresso with Jenkins ..... fail. Adding a bounty. – ddopson Nov 10 '11 at 4:06
feedback

2 Answers

Do Expresso and node-jscoverage produce xml output? If so,

Jenkins and cFix unit testing (C++)

Following the above, you could convert your xml output to formats that junit understand (for tests, using an XSLT), and convert your coverage xml output into cobertura format (again, using XSLT).

See this also: http://www.van-porten.de/2009/05/cunit-tests-in-hudson/

for a sample XSLT.

link|improve this answer
currently, its all text output, with some color codes thrown in. I path would need to be created to generate this kind of output. I was hoping some one else had started it. – abendigo Jun 10 '11 at 18:04
oops, "I path" should read "a patch", but I can't edit my comments. – abendigo Jun 10 '11 at 18:24
I guess that makes it harder then, trying to convert the text output into xml... – Sagar Jun 10 '11 at 18:40
I forked expresso, and am writing a patch. I'll update this question when I finalize the changes. – abendigo Jun 16 '11 at 2:57
expresso has a JSON exporting option. – nalply Sep 25 '11 at 11:42
show 1 more comment
feedback

You could try the xUnit plugin. On their wiki page it says that it can handle txt and csv files using custom style sheets. In theory this should work for your test reports t least. I have never tried that though.

As for coverage I am not aware of any plugins that can deal with arbitrary coverage tools.

If the HTML reports the tools produce are usable you could use the HTML Publisher plugin to link those reports in your job, and make them accessible from Jenkins. Not as nice an integration as a test tool plugin can provide, but depending on your expectations it might be enough.

Otherwise you will probably be forced to write a custom plugins. You could also try a request on the Jenkins Mailing List, maybe someone is working on such a plugin already.

link|improve this answer
Yeah. I've looked at xUnit. Any idea how to write that stylesheet? I haven't found any good docs yet ... – ddopson Nov 10 '11 at 19:03
1  
There is an stylesheet linked on the Wiki page under github.com/versionone/webui-plugin, you might be able to work off that. – pushy Nov 11 '11 at 7:44
I'm voting this answer +1 for the ref to HTML Publisher..... that's a pretty cool piece of kit. I'm going to play with that a bit and see what it can do. – ddopson Nov 13 '11 at 6:41
feedback

Your Answer

 
or
required, but never shown

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