Files
spring-net/common-project.include

457 lines
19 KiB
XML

<?xml version="1.0" ?>
<project xmlns="http://nant.sf.net/schemas/nant.xsd">
<description>
<![CDATA[
Credits for this shared build script go to the NHibernate Team
This file contains common tasks tailored specifically for the Spring
build process. The goal was to define all the actions in this file, so
that actual project build files only have to configure a few variables
and call tasks in this file.
Usage
<property name="root.dir" value="../.." />;
<include buildfile="${root.dir}/build-common/common-project.xml" />;
These lines should be placed at the top level under the <project>
element. Property root.dir defines a relative path to the root of the
distribution, that is, NHibernate directory.
After including the file, a target should be defined to initialize
configuration variables according to the project being built.
The standard name of this target is init (but any other name can be chosen).
The init target should depend on (or call) target common.init defined
in this file.
Other predefined targets are:
- common.compile-dll
compile a DLL, generating the documentation file (.xml) and using Clover
if enabled.
- common.run-tests
run compiled NUnit tests.
All compile/run targets put the output in ${current.bin.dir}.
common.compile* targets use source fileset with id="project.sources",
assembly fileset
with id="project.references" and resource fileset with id="project.resources"
to compile the project. The source and resource filesets are optional and
default to **/*.cs files and no files respectively.
]]>
</description>
<echo message="global common-project.xml" />
<!--
*******************************************************************************
Arguments:
${root.dir}: root dir
${current.bin.dir}: the binary directory to output the assembly + app.config to
-->
<target name="common.init" description="Initializes build properties">
<property name="assembly.is-cls-compliant" value="false" />
<property name="assembly.version" value="1.0.0.0" />
<property name="assembly.version.informational" value="1.0" />
<patternset id="project.references.default">
<include name="System.dll" />
<include name="System.Xml.dll" />
<include name="System.Drawing.dll" />
<include name="System.Windows.Forms.dll" />
<include name="System.Drawing.Design.dll" />
<include name="System.Design.dll" />
<include name="System.Data.dll" />
<include name="*.dll" />
</patternset>
<patternset id="project.references.test" />
<patternset id="project.references.additional" />
<fileset id="project.sources" failonempty="true">
<include name="**/*.cs" />
</fileset>
<resourcefileset id="project.resources" />
<patternset id="project.content" />
</target>
<!--
*******************************************************************************
Arguments:
${root.dir}: root dir
${current.bin.dir}: the binary directory to output the assembly + app.config to
-->
<target name="common.init-test" description="Initializes build properties" depends="common.init">
</target>
<!--
*******************************************************************************
Arguments:
${current.bin.dir}: the binary directory to output the assembly + app.config to
${current.build.nowarn}: list of disabled warnings
${current.build.debug}
${current.build.optimize}
${current.build.defines}
-->
<target name="common.compile-dll" description="compiles sources">
<property name="compile.bin.dir" value="${current.bin.dir}" if="${not property::exists('compile.bin.dir')}" />
<echo message="copying libs from ${lib.dir} to ${compile.bin.dir}" />
<property name="compile.lib.dir.tmp" value="${lib.dir}/${framework::get-family(framework::get-target-framework())}/${framework::get-version(framework::get-target-framework())}" dynamic="true" />
<echo message="copying libs from ${compile.lib.dir.tmp}" />
<copy todir="${compile.bin.dir}" verbose="${copy-verbose}">
<fileset>
<include name="${compile.lib.dir.tmp}/*.dll" />
</fileset>
</copy>
<property name="compile.lib.dir.tmp" value="${lib.dir}/${framework::get-family(framework::get-target-framework())}" dynamic="true" />
<echo message="copying libs from ${compile.lib.dir.tmp}" />
<copy todir="${compile.bin.dir}" verbose="${copy-verbose}">
<fileset>
<include name="${compile.lib.dir.tmp}/*.dll" />
</fileset>
</copy>
<property name="compile.lib.dir.tmp" value="${lib.dir}" dynamic="true" />
<echo message="copying libs from ${compile.lib.dir.tmp}" />
<copy todir="${compile.bin.dir}" verbose="${copy-verbose}">
<fileset>
<include name="${compile.lib.dir.tmp}/*.dll" />
</fileset>
</copy>
<property name="compile.lib.dir.tmp" value="${current.bin.dir}" dynamic="true" />
<echo message="copying libs from ${compile.lib.dir.tmp}" />
<copy todir="${compile.bin.dir}" verbose="${copy-verbose}">
<fileset>
<!-- exclude name="${current.lib.dir}/*.Tests.dll" / -->
<include name="${compile.lib.dir.tmp}/*.dll" />
</fileset>
</copy>
<csc target="library"
verbose="true" warnaserror="false"
output="${compile.bin.dir}/${project::get-name()}.dll"
debug="${current.build.debug}"
optimize="${current.build.optimize}"
unsafe="true"
checked="false"
define="${current.build.defines.csc}"
doc="${current.bin.dir}/${project::get-name()}.xml"
>
<nowarn>
<warning number="${current.build.nowarn}" />
</nowarn>
<sources refid="project.sources" />
<references basedir="${compile.bin.dir}">
<patternset refid="project.references.default" />
<patternset refid="project.references.test" />
<patternset refid="project.references.additional" />
</references>
<resources refid="project.resources" />
</csc>
<!--
<if test="${file::exists(project::get-base-directory() + '/app.config')}">
<copy file="${project::get-base-directory()}/app.config" tofile="${current.bin.dir}/${project::get-name()}.dll.config" />
</if>
-->
<!-- copy app.config -->
<copy file="${project::get-base-directory()}/app.config"
tofile="${current.bin.dir}/${project::get-name()}.dll.config" failonerror="false"/>
<!-- copy 'TestData' directory -->
<copy todir="${current.bin.dir}/TestData" failonerror="false" verbose="${copy-verbose}">
<fileset basedir="${project::get-base-directory()}/TestData">
<include name="**/*.*"/>
</fileset>
</copy>
</target>
<!--
*******************************************************************************
Runs standard unit test configuration of the current ${project::get-name()}.dll
Arguments:
${current.bin.dir} : the binary directory to pick the assembly + app.config from
${project.name} : (optional), the name of the assembly
${tool.dir} : dir for tools
${test.withcoverage}: flag indicating whether to invoke tests with test-coverage profiler or not
-->
<target name="common.run-tests">
<if test="${not test.withcoverage}" >
<call target="common.run-tests.nunit" />
</if>
<!-- if coverage, don't run ANY tests at all b/c all tests will be invoked AFTER all compilation is completed...
<if test="${test.withcoverage}" >
<call target="common.run-tests.ncover" />
</if>
-->
</target>
<!--
*******************************************************************************
Runs Microsoft unit test configuration of the current ${project::get-name()}.dll
Currently assumes you have installed VS.NET on the machine
Arguments:
${current.bin.dir}: the binary directory to pick the assembly + app.config from
${project.name} : (optional), the name of the assembly
${tool.dir} : dir for tools
-->
<target name="common.run-tests.mstest">
<property name="test.assemblyname" value="${project::get-name()}" overwrite="false" />
<property name="test.bin.dir" value="${current.bin.dir}" if="${not property::exists('test.bin.dir')}" />
<echo message="Unit Testing ${project.name} in ${test.bin.dir}" />
<exec program="${mstest.exe.current}" workingdir="${test.bin.dir}" verbose="false">
<arg value="/testcontainer:${test.bin.dir}/${test.assemblyname}.dll"/>
<arg value="/resultsfile:${test.assemblyname}.dll-MsTestResults.trx"/>
<arg value="/nologo" />
</exec>
</target>
<!--
*******************************************************************************
Runs NUnit unit test configuration of the current ${project::get-name()}.dll
Arguments:
${current.bin.dir}: the binary directory to pick the assembly + app.config from
${project.name} : (optional), the name of the assembly
${tool.dir} : dir for tools
-->
<target name="common.run-tests.nunit">
<property name="test.assemblyname" value="${project::get-name()}" overwrite="false" />
<property name="test.assemblyfile" value="${test.assemblyname}.dll" overwrite="false" />
<property name="test.bin.dir" value="${current.bin.dir}" if="${not property::exists('test.bin.dir')}" />
<echo message="Unit Testing ${project.name}, ${test.assemblyname} in ${test.bin.dir}" />
<exec program="${tool.dir}\nunit\net-2.0\nunit-console-x86.exe" workingdir="${test.bin.dir}" verbose="true">
<arg line="${test.assemblyfile}" />
<arg value="/xml:${test.assemblyname}.dll-TestResults.xml" />
<arg value="/framework:${nant.settings.currentframework}" />
<arg value="/nologo" />
</exec>
</target>
<!--
*******************************************************************************
Runs coverage unit test configuration of the current ${project::get-name()}.dll
Arguments:
${current.bin.dir}: the binary directory to pick the assembly + app.config from
${project.name} : (optional), the name of the assembly
${tool.dir} : dir for tools
-->
<target name="common.run-tests.ncover" description="Run NUnit tests">
<property name="test.assemblyname" value="${project::get-name()}" overwrite="false" />
<property name="test.assemblyfile" value="${test.assemblyname}.dll" overwrite="false" />
<property name="test.assemblyname.tocover" value="${string::substring(test.assemblyname,0,string::last-index-of(test.assemblyname, '.Tests') )}" overwrite="false" />
<property name="test.bin.dir" value="${current.bin.dir}" if="${not property::exists('test.bin.dir')}" />
<echo message="Coverage Testing ${test.assemblyname} in ${test.bin.dir}" />
<exec program="${tool.dir}/ncover/ncover.console.exe" workingdir="${test.bin.dir}" verbose="true">
<arg value="//q" />
<arg value="//reg" />
<arg value="//w" />
<arg path="${test.bin.dir}" />
<arg value="//x" />
<arg path="${test.bin.dir}/${test.assemblyname}.dll-TestCoverage.xml" />
<arg value="//a" />
<arg value="${test.assemblyname.tocover}" />
<arg value="//ea" />
<arg value="CoverageExcludeAttribute" />
<arg value="//q" />
<arg path="${tool.dir}/nunit/net-2.0/nunit-console-x86.exe" />
<arg line="${test.assemblyfile}" />
<arg value="/xml:${test.assemblyname}.dll-TestResults.xml" />
<arg value="/nologo" />
<arg value="/framework:${nant.settings.currentframework}" />
</exec>
<!--
<loadtasks assembly="${tool.dir}/ncoverexplorer/NCoverExplorer.NAntTasks.dll" />
<ncoverexplorer program="${tool.dir}/ncoverexplorer/ncoverexplorer.console.exe"
projectName="CCNet"
configName="${tool.dir}/ncoverexplorer/ncoverexplorer.console.config"
outputDir="${current.bin.dir}"
satisfactoryCoverage="80" reportType="4"
xmlReportName="${current.bin.dir}/${project.name}.dll-CoverageSummary.xml">
<fileset>
<include name="${current.bin.dir}/${project.name}.dll-Coverage.xml" />
</fileset>
</ncoverexplorer>
-->
</target>
<target name="common.run-tests.opencover" description="Run NUnit tests">
<property name="test.assemblyname" value="${project::get-name()}" overwrite="false" />
<property name="test.assemblyfile" value="${test.assemblyname}.dll" overwrite="false" />
<property name="test.assemblyname.tocover" value="${string::substring(test.assemblyname,0,string::last-index-of(test.assemblyname, '.Tests') )}" overwrite="false" />
<property name="test.bin.dir" value="${current.bin.dir}" if="${not property::exists('test.bin.dir')}" />
<echo message="Coverage Testing ${test.assemblyname} in ${test.bin.dir}" />
<exec program="${tool.dir}/opencover/OpenCover.Console.exe" workingdir="${test.bin.dir}" verbose="true">
<arg value="-register:user" />
<arg value="-target:${tool.dir}/nunit/net-2.0/nunit-console-x86.exe" />
<arg value="-targetargs:${test.assemblyfile} /xml:${test.assemblyname}.dll-TestResults.xml /noshadow /nologo /framework:${nant.settings.currentframework}" />
<arg value="-filter:&quot;+[Spring*]* -[*Test*]* -[*nunit*]*&quot;" />
<arg value="-output:${test.bin.dir}/${test.assemblyname}.dll-TestCoverage.xml" />
</exec>
<exec program="${tool.dir}\ReportGenerator\bin\ReportGenerator.exe" workingdir="${test.bin.dir}" verbose="true">
<arg value="${test.assemblyname}.dll-TestCoverage.xml" />
<arg path="${test.bin.dir}\CoverageReport\${test.assemblyname}" />
</exec>
</target>
<target name="common.run-tests.partcover" description="Run NUnit tests">
<exec program="${tool.dir}\partcover\partcover.exe"
workingdir="${current.bin.dir}"
verbose="true"
append="true"
>
<arg value="--target" /><arg path="${tool.dir}\nunit\nunit-console-x86.exe" />
<arg value="--target-work-dir" /><arg path="${current.bin.dir}" />
<arg value="--exclude" /><arg value="[nunit*]*" />
<arg value="--exclude" /><arg value="[NAnt*]*" />
<arg value="--include" /><arg value="[NDoc3*]*" />
<arg value="--exclude" /><arg value="[${project::get-name()}*]*" /><!-- exclude the test-assembly itself -->
<arg value="--log" /><arg value="251" />
<arg value="--output" /><arg path="${current.bin.dir}/${project::get-name()}.dll-coverage.xml" />
<arg value="--target-args" /><arg value="${project::get-name()}.dll /process=Single /domain=None /xml=${project::get-name()}.dll-testresults.xml" />
</exec>
</target>
<!-- NOTE: Depends on XmlInsertNode custom task to function properly -->
<target name="common.run-tests.aggregated.opencover" description="Run all NUnit Tests together with OpenCover coverage">
<property name="test.bin.dir" value="${current.bin.dir}" if="${not property::exists('test.bin.dir')}" />
<property name="spring.tests.nunit.filename" value="${test.bin.dir}/Spring.Tests.nunit" />
<!-- write the empty NUNIT project file contents to disk -->
<echo file="${spring.tests.nunit.filename}">
&lt;NUnitProject&gt;
&lt;Settings activeconfig="Default" /&gt;
&lt;Config name="Default" binpathtype="Auto"&gt;
&lt;/Config&gt;
&lt;/NUnitProject&gt;
</echo>
<!-- append the node for each test assembly to the NUNIT project file -->
<foreach item="File" property="filename">
<in>
<items basedir="${test.bin.dir}">
<include name="*.Tests.dll" />
</items>
</in>
<do>
<echo message="Adding file to NUNIT project file ${spring.tests.nunit.filename}: ${filename}" />
<xmlinsertnode filename="${spring.tests.nunit.filename}" xpath="//NUnitProject/Config" fragment="&lt;assembly path=&quot;${filename}&quot; /&gt;" />
</do>
</foreach>
<!-- invoke OpenCover passing the NUNIT project file to the NUNIT test runner -->
<exec program="${tool.dir}/opencover/OpenCover.Console.exe" workingdir="${test.bin.dir}" verbose="true">
<arg value="-register:user" />
<arg value="-mergebyhash" />
<arg value="-target:${tool.dir}/nunit/net-2.0/nunit-console-x86.exe" />
<arg value="-targetargs:&quot;${spring.tests.nunit.filename} /xml:Spring.Tests-TestResults.xml /noshadow /nologo /framework:${nant.settings.currentframework}&quot;" />
<arg value="-filter:&quot;+[Spring*]* -[*Tests*]*&quot;" />
<arg value="-output:${test.bin.dir}/Spring.Tests-TestCoverage.xml" />
</exec>
<!-- invoke the report generator to convert the aggregated test coverage results into a single HTML report -->
<exec program="${tool.dir}\ReportGenerator\bin\ReportGenerator.exe" workingdir="${test.bin.dir}" verbose="true">
<arg value="${test.bin.dir}/Spring.Tests-TestCoverage.xml" />
<arg path="${test.bin.dir}/CoverageReport" />
</exec>
</target>
<!-- script that appends new XML nodes to an existing xml file -->
<script language="C#" prefix="test" >
<references>
<include name="System.Xml.dll" />
</references>
<code>
<![CDATA[
[TaskName("xmlinsertnode")]
public class TestTask : Task {
#region Private Instance Fields
private string _filename;
private string _xpath;
private string _fragment;
#endregion Private Instance Fields
#region Public Instance Properties
[TaskAttribute("filename", Required=true)]
public string FileName {
get { return _filename; }
set { _filename = value; }
}
[TaskAttribute("xpath", Required=true)]
public string XPath {
get { return _xpath; }
set { _xpath = value; }
}
[TaskAttribute("fragment", Required=true)]
public string Fragment {
get { return _fragment; }
set { _fragment = value; }
}
#endregion Public Instance Properties
#region Override implementation of Task
protected override void ExecuteTask() {
System.Xml.XmlDocument document = new System.Xml.XmlDocument();
document.Load(_filename);
System.Xml.XPath.XPathNavigator navigator = document.CreateNavigator();
navigator.SelectSingleNode(_xpath).AppendChild(_fragment);
document.Save(_filename);
}
#endregion Override implementation of Task
}
]]>
</code>
</script>
<readregistry property="net35.install.dir" key="SOFTWARE\Microsoft\NET Framework Setup\NDP\v3.5\InstallPath" hive="LocalMachine" failonerror="true"/>
<property name="msbuild.exe" value="${net35.install.dir}\msbuild.exe"/>
</project>