Skip to content

Commit

Permalink
scan for duplicates
Browse files Browse the repository at this point in the history
  • Loading branch information
Mailaender committed Jul 5, 2015
1 parent a753a11 commit 3b03abc
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 1 deletion.
15 changes: 14 additions & 1 deletion appveyor.yml
Expand Up @@ -38,6 +38,17 @@ after_build:
--codeVersion "$version"
}
before_test:
- ps: |
if ($env:APPVEYOR_SCHEDULED_BUILD -eq "True")
{
choco install resharper-clt -y
dupFinder /output=dupReport.xml /show-text OpenRA.sln
choco install xmlstarlet -y
xml transform dupFinder.xslt dupReport.xml > dupReport.html
choco install pandoc -y
}
test_script:
- nunit-console-x86.exe OpenRA.Test.dll

Expand All @@ -63,4 +74,6 @@ artifacts:
- path: OpenRA-$(APPVEYOR_REPO_TAG_NAME).exe
name: Installer
- path: coverity.zip
name: Coverity Build
name: Coverity Build
- path: dupReport.html
name: dupFinder Report
24 changes: 24 additions & 0 deletions dupFinder.xslt
@@ -0,0 +1,24 @@
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="html" indent="yes" />
<xsl:template match="/">
<html>
<body>
<h1>Statistics</h1>
<p>Total codebase size: <xsl:value-of select="//CodebaseCost"/></p>
<p>Code to analyze: <xsl:value-of select="//TotalDuplicatesCost"/></p>
<p>Total size of duplicated fragments: <xsl:value-of select="//TotalFragmentsCost" /></p>
<h1>Detected Duplicates</h1>
<xsl:for-each select="//Duplicates/Duplicate">
<h2>Duplicated Code. Size: <xsl:value-of select="@Cost"/></h2>
<h3>Duplicated Fragments:</h3>
<xsl:for-each select="Fragment">
<xsl:variable name="i" select="position()"/>
<p>Fragment <xsl:value-of select="$i"/> in file <xsl:value-of select="FileName"/></p>
<pre><xsl:value-of select="Text"/></pre>
</xsl:for-each>
</xsl:for-each>
</body>
</html>
</xsl:template>
</xsl:stylesheet>

0 comments on commit 3b03abc

Please sign in to comment.