summaryrefslogtreecommitdiffstats
path: root/test/gtester.xsl
diff options
context:
space:
mode:
authorMatthias Vogelgesang <matthias.vogelgesang@gmail.com>2012-08-10 16:38:28 +0200
committerMatthias Vogelgesang <matthias.vogelgesang@gmail.com>2012-08-10 16:38:28 +0200
commit60030e462fe9f3081cfa8e9e0d176593eb1bcde3 (patch)
tree1c387b113e3c419a841c9637ca318cd550b3f4db /test/gtester.xsl
parentcf25d9373bb2148e86e46e9c25e245ffe9ec4026 (diff)
downloaduca-60030e462fe9f3081cfa8e9e0d176593eb1bcde3.tar.gz
uca-60030e462fe9f3081cfa8e9e0d176593eb1bcde3.tar.bz2
uca-60030e462fe9f3081cfa8e9e0d176593eb1bcde3.tar.xz
uca-60030e462fe9f3081cfa8e9e0d176593eb1bcde3.zip
Add gtester xsl
Diffstat (limited to 'test/gtester.xsl')
-rw-r--r--test/gtester.xsl70
1 files changed, 70 insertions, 0 deletions
diff --git a/test/gtester.xsl b/test/gtester.xsl
new file mode 100644
index 0000000..e8236d6
--- /dev/null
+++ b/test/gtester.xsl
@@ -0,0 +1,70 @@
+<?xml version="1.0"?>
+
+<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
+
+ <!-- I can't believe I have to do this -->
+ <!-- Based on this code:
+ http://geekswithblogs.net/Erik/archive/2008/04/01/120915.aspx
+ -->
+ <xsl:template name="strreplace">
+ <xsl:param name="string"/>
+ <xsl:param name="token"/>
+ <xsl:param name="newtoken"/>
+ <xsl:choose>
+ <xsl:when test="contains($string, $token)">
+ <xsl:value-of select="substring-before($string, $token)"/>
+ <xsl:value-of select="$newtoken"/>
+ <xsl:call-template name="strreplace">
+ <xsl:with-param name="string" select="substring-after($string, $token)"/>
+ <xsl:with-param name="token" select="$token"/>
+ <xsl:with-param name="newtoken" select="$newtoken"/>
+ </xsl:call-template>
+ </xsl:when>
+ <xsl:otherwise>
+ <xsl:value-of select="$string"/>
+ </xsl:otherwise>
+ </xsl:choose>
+ </xsl:template>
+
+ <xsl:template match="/">
+ <xsl:for-each select="gtester">
+ <testsuite>
+ <xsl:attribute name="name">
+ <xsl:value-of select="testbinary[1]/@path"/>
+ </xsl:attribute>
+ <xsl:attribute name="tests">
+ <xsl:value-of select="count(testbinary[1]/testcase)"/>
+ </xsl:attribute>
+ <xsl:attribute name="time">
+ <xsl:value-of select="sum(testbinary[1]/testcase/duration)"/>
+ </xsl:attribute>
+ <xsl:attribute name="failures">
+ <xsl:value-of select="count(testbinary[1]/testcase/status[@result='failed'])"/>
+ </xsl:attribute>
+ <xsl:for-each select="testbinary[1]/testcase">
+ <testcase>
+ <xsl:variable name="classname">
+ <xsl:call-template name="strreplace">
+ <xsl:with-param name="string" select="substring-after(@path, '/')"/>
+ <xsl:with-param name="token" select="'/'"/>
+ <xsl:with-param name="newtoken" select="'.'"/>
+ </xsl:call-template>
+ </xsl:variable>
+ <xsl:attribute name="classname">
+ <xsl:value-of select="$classname"/>
+ </xsl:attribute>
+ <xsl:attribute name="name">g_test</xsl:attribute>
+ <xsl:attribute name="time">
+ <xsl:value-of select="duration"/>
+ </xsl:attribute>
+ <xsl:if test="status[@result = 'failed']">
+ <failure>
+ <xsl:value-of select="error"/>
+ </failure>
+ </xsl:if>
+ </testcase>
+ </xsl:for-each>
+ </testsuite>
+ </xsl:for-each>
+ </xsl:template>
+</xsl:stylesheet>