Forum Discussion

ChristianB's avatar
ChristianB
Contributor
12 years ago

Is there a Jenkins plugin that visualises SoapUI test result

Is there a Jenkins plugin that visualises SoapUI test results by giving you a graphical report?

I'm basically looking for something like this, but for SoapUI:



SoapUI displays results in a really nice way in it's GUI. Any chance of getting something similar for/when it runs on Jenkins?


Regards,
Christian

P.S.: This is a cross post from http://sqa.stackexchange.com/q/9174/6846

6 Replies

  • nmrao's avatar
    nmrao
    Community Hero
    Not sure what kind of soapui reporting your using and how the tests are run from Jenkins.

    Soap UI tests can be invoked using ant(for instance using Junit reporting style) from Jenkins which will show the Test result Trend in a graph as shown in the link below. Please see if that helps.
    http://softwaretestersforum.blogspot.in ... nkins.html
  • That gives you results over time; I'm more interested in results per TestCase, TestSuit etc.
    Also, the JUnit plugin seems to require a SoapUI Pro license?
  • nmrao's avatar
    nmrao
    Community Hero
    SoapUI generates the results in Junit test style. No plug in required.
  • Hi Rao, that feature still requires a pro license, doesn't it? And it doesn't give you HTML reports that look roughly like the screenshot above, or SoapUI's own GUI, correct?
  • nmrao's avatar
    nmrao
    Community Hero
    Here is the link where you can see how reports look like.
    http://www.soapui.org/Reporting/junit-s ... ports.html

    I believe that I got what you mean to say, i.e., you do not see the same screen(which is in the above link) in free editon, then how do we generate reports? - is may be your question.

    But you can run the tests using ant scripts which internally uses testrunner soapui's utility. Please see
    http://stackoverflow.com/questions/6648 ... ins-hudson
    http://my.safaribooksonline.com/book/pr ... 5_d1e26332 -- this link also shows how to create report in html.

    Hope this is helpful.
  • redfish4ktc2's avatar
    redfish4ktc2
    Super Contributor
    Hi,
    about the link http://www.soapui.org/Reporting/junit-s ... ports.html, it shows you output generate by the soapui reporting which is a pro feature. But you can have the same result with the OSS version: you generate junit style output files and use a html generator to produce the report (for example, ant junitreport task)

    You can also use the maven plugin to run the test and generate the report.

    About the output html report, as suggested by rao, you won't get the same as with cucumber, but this is something which could be done: as SoapUI generates junit xml files, what you need is a html generator able to transform the xml file into the desired report.