Using MBUnit in TeamCity - Stack Overflow most recent 30 from stackoverflow.com 2009-11-09T09:39:19Z http://stackoverflow.com/feeds/question/3143 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/3143/using-mbunit-in-teamcity 2 Using MBUnit in TeamCity Scott Cowan 2008-08-06T07:41:11Z 2009-05-18T23:07:43Z <p>I'm compiling a NAnt project on linux with TeamCity Continuous Integration server. I have been able to generate a test report by running NAnt on mono thru a Command Line Runner but don't have the options of using the report like a NAnt Runner. I'm also using MBUnit for the testing framework.</p> <p>How can I merge in the test report and display "Tests failed: 1 (1 new), passed: 3049" for the build?</p> <p><strong>Update:</strong> take a look at MBUnitTask its a NAnt task that uses sends messages that TeamCity expects from NUnit so it lets you use all of TeamCity's features for tests.</p> <p><a href="http://code.google.com/p/nant-extensions/wiki/MbUnitTask" rel="nofollow">MBUnitTask</a></p> <p><strong>Update:</strong> Galio has better support so you just have to reference the Galio MBUnit 3.5 dlls instead of the MBUnit 3.5 dlls and switch to the galio runner to make it work.</p> http://stackoverflow.com/questions/3143/using-mbunit-in-teamcity/4144#4144 2 Answer by Lance Fisher for Using MBUnit in TeamCity Lance Fisher 2008-08-06T23:49:46Z 2008-11-24T02:26:23Z <p>TeamCity watches the command line output from the build. You can let it know how your tests are going by inserting certain markers into that output See <a href="http://www.jetbrains.net/confluence/display/TCD3/Build+Script+Interaction+with+TeamCity" rel="nofollow">http://www.jetbrains.net/confluence/display/TCD3/Build+Script+Interaction+with+TeamCity</a>. For example </p> <pre><code>##teamcity[testSuiteStarted name='Test1'] </code></pre> <p>will let TeamCity know that a set of tests started. With MbUnit you can't output these markers while the tests are running, but you can transform the XML file that it outputs. Here is the XSL that I am using:</p> <pre><code>&lt;?xml version="1.0" encoding="UTF-8"?&gt; &lt;xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"&gt; &lt;xsl:output method="text"/&gt; &lt;xsl:template match="/"&gt; &lt;xsl:apply-templates/&gt; &lt;/xsl:template&gt; &lt;xsl:template match="assemblies/assembly"&gt; ##teamcity[testSuiteStarted name='&lt;xsl:value-of select="@name" /&gt;'] &lt;xsl:apply-templates select="//run" /&gt; ##teamcity[testSuiteFinished name='&lt;xsl:value-of select="@name" /&gt;'] &lt;/xsl:template&gt; &lt;xsl:template match="run"&gt; &lt;xsl:choose&gt; &lt;xsl:when test="@result='ignore' or @result='skip'"&gt; ##teamcity[testIgnored name='&lt;xsl:value-of select="@name" /&gt;' message='Test Ignored'] &lt;/xsl:when&gt; &lt;xsl:otherwise&gt; ##teamcity[testStarted name='&lt;xsl:value-of select="@name" /&gt;'] &lt;/xsl:otherwise&gt; &lt;/xsl:choose&gt; &lt;xsl:if test="@result='failure'"&gt; ##teamcity[testFailed name='&lt;xsl:value-of select="@name" /&gt;' message='&lt;xsl:value-of select="child::node()/message"/&gt;' details='&lt;xsl:value-of select="normalize-space(child::node()/stack-trace)"/&gt;'] &lt;/xsl:if&gt; &lt;xsl:if test="@result!='ignore' and @result!='skip'"&gt; ##teamcity[testFinished name='&lt;xsl:value-of select="@name" /&gt;'] &lt;/xsl:if&gt; &lt;/xsl:template&gt; &lt;/xsl:stylesheet&gt; </code></pre> http://stackoverflow.com/questions/3143/using-mbunit-in-teamcity/30235#30235 1 Answer by Scott Cowan for Using MBUnit in TeamCity Scott Cowan 2008-08-27T14:14:21Z 2008-10-02T18:44:21Z <p>Here's what I came up with</p> <p><strong>How can I merge in the test report?</strong></p> <p>First you'll need to get mbunit to generate both an XML and HTML report. The Command line arguments look like this</p> <pre><code>/rt:Xml /rt:Html /rnf:mbunit /rf:..\reports </code></pre> <p>this will generate the reports into a dir called reports and the file will be called mbunit.xml and mbunit.html</p> <p>next we want to add these files as artifacts on the build</p> <pre><code>build\reports\* =&gt; Reports </code></pre> <p>the last step is to tell teamcity to add it as a tab for the build</p> <p>find the .BuildServer\config\main-config.xml and add this line (on windows this is in c:\Documents and Settings\, on linux it was in the /root dir)</p> <pre><code>&lt;report-tab title="Tests" basePath="Reports" startPage="mbunit.html" /&gt; </code></pre> <p><strong>How can I display "Tests failed: 1 (1 new), passed: 3049" for the build?</strong></p> <p>TeamCity looks for a file called teamcity-info.xml where you can stick messages in to be displayed. The Actual test count is actually just plain text. I think you can just add the file as an artifact but I've also got it in the root dir of the build.</p> <p>in NAnt you'll want to use this command to do an XSLT on the MBUnit XML Report</p> <pre><code>&lt;style style="includes\teamcity-info.xsl" in="reports\mbunit.xml" out="..\teamcity-info.xml" /&gt; </code></pre> <p>the actual xsl looks like this. (Note: that the { and } are reserved in xsl so we have to use params)</p> <pre><code>&lt;?xml version="1.0" encoding="ISO-8859-1"?&gt; &lt;xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"&gt; &lt;xsl:param name="cbl" select="'{'"/&gt; &lt;xsl:param name="cbr" select="'}'"/&gt; &lt;xsl:template match="/"&gt; &lt;xsl:for-each select="report-result/counter"&gt; &lt;build number="1.0.{concat($cbl,'build.number',$cbr)}"&gt; &lt;xsl:if test="@failure-count &amp;gt; 0"&gt; &lt;statusInfo status="FAILURE"&gt; &lt;text action="append"&gt; Tests failed: &lt;xsl:value-of select="@failure-count"/&gt;, passed: &lt;xsl:value-of select="@success-count"/&gt;&lt;/text&gt; &lt;/statusInfo&gt; &lt;/xsl:if&gt; &lt;xsl:if test="@failure-count = 0"&gt; &lt;statusInfo status="SUCCESS"&gt; &lt;text action="append"&gt; Tests passed: &lt;xsl:value-of select="@success-count"/&gt;&lt;/text&gt; &lt;/statusInfo&gt; &lt;/xsl:if&gt; &lt;/build&gt; &lt;/xsl:for-each&gt; &lt;/xsl:template&gt; &lt;/xsl:stylesheet&gt; </code></pre> <p>This will give you a file that looks like this</p> <pre><code>&lt;build number="1.0.{build.number}"&gt; &lt;statusInfo status="FAILURE"&gt; &lt;text action="append"&gt;Tests failed: 16, passed: 88&lt;/text&gt; &lt;/statusInfo&gt; &lt;/build&gt; </code></pre> http://stackoverflow.com/questions/3143/using-mbunit-in-teamcity/880219#880219 2 Answer by Mauricio Scheffer for Using MBUnit in TeamCity Mauricio Scheffer 2009-05-18T23:07:43Z 2009-05-18T23:07:43Z <p><a href="http://blog.bits-in-motion.com/2008/10/announcing-gallio-and-mbunit-v304.html" rel="nofollow">Gallio now has an extension</a> to output TeamCity service messages. Just use the included Gallio.NAntTasks.dll and enable the TeamCity extension. (this <a href="http://groups.google.com/group/gallio-dev/browse%5Fthread/thread/812917adbca13d7b" rel="nofollow">won't be necessary in the next release</a>)</p>