我是 Ant/Concordion 的新手,我的第一个问题是关于 Stack Overflow 的,所以希望你能温柔一点。
尝试设置一个 Ant 任务来自动运行我的 Concordion 验收测试并生成一个摘要/概述/索引 html 页面,其中列出了哪些测试通过、失败等。
我正在使用Concordion Ant Task,但遇到一个问题,我认为我的类路径不正确。
包结构镜像 test/java/spec & test/resources/spec 作为夹具和规范之间的分离。
这是我的 build.xml。
<?xml version="1.0" encoding="UTF-8"?>
<project name="Bowling" default="run.acceptance.tests">
<path id="dependencies">
<fileset dir="lib" includes="concordion-ant-task-*.jar"/>
<fileset dir="lib" includes="freemarker*.jar"/>
<fileset dir="lib" includes="junit*.jar"/>
</path>
<taskdef name="junit"
classname="org.apache.tools.ant.taskdefs.optional.junit.JUnitTask" />
<taskdef name="generate-test-overview"
classname="bad.robot.concordion.ant.GenerateTestOverviewTask"
classpathref="dependencies"/>
<target name="check.dependencies"
unless="classpath.as.supplied.by.maven">
<!-- <fail message="Missing dependencies, run using Maven instead (*blush*) or switch to use classpathref='dependencies'"/>-->
</target>
<target name="generate-overview"
depends="check.dependencies">
<generate-test-overview
template="src\test\resources\spec\bowlingGame\Overview.ftl"
output="src\test\resources\spec\bowlingGame\Overview.html">
<fileset dir="${basedir}\src\test\resources\spec\bowlingGame\">
<include name="**/*.html"/>
<exclude name="**/Overview.html" />
<exclude name="**/BowlingGame.html" />
</fileset>
</generate-test-overview>
</target>
<echo message="${basedir}" />
<target name="run.acceptance.tests"
depends="generate-overview">
<junit printsummary="on" haltonfailure="yes">
<classpath>
<pathelement location="${basedir}"/>
</classpath>
<formatter type="plain"/>
<test name="Overview"/> <!-- corresponding java fixture, must match the overview page generated -->
</junit>
</target>
</project>
这是蚂蚁的输出。
Apache Ant version 1.7.1 compiled on June 27 2008
Using C:\Documents and Settings\gafitzgerald\training\Bowling\ant.log file as build log.
Buildfile: C:\Documents and Settings\gafitzgerald\training\Bowling\build.xml
parsing buildfile C:\Documents and Settings\gafitzgerald\training\Bowling\build.xml with URI = file:/C:/Documents%20and%20Settings/gafitzgerald/training/Bowling/build.xml
Project base dir set to: C:\Documents and Settings\gafitzgerald\training\Bowling
[antlib:org.apache.tools.ant] Could not load definitions from resource org/apache/tools/ant/antlib.xml. It could not be found.
[echo] C:\Documents and Settings\gafitzgerald\training\Bowling
Build sequence for target(s) `run.acceptance.tests' is [check.dependencies, generate-overview, run.acceptance.tests]
Complete build sequence is [check.dependencies, generate-overview, run.acceptance.tests, ]
check.dependencies:
generate-overview:
[generate-test-overview] looking for files in C:\Documents and Settings\gafitzgerald\training\Bowling\src\test\resources\spec\bowlingGame...
[generate-test-overview] scoring\Scoring.html
[generate-test-overview] scoring\Spare.html
run.acceptance.tests:
修剪过的
[junit] Implicitly adding C:\Documents and Settings\gafitzgerald\training\lib\junit-4.8.2.jar;C:\java\eclipse-helios\plugins\org.apache.ant_1.7.1.v20100518-1145\lib\ant-launcher.jar;C:\java\eclipse-helios\plugins\org.apache.ant_1.7.1.v20100518-1145\lib\ant.jar;C:\java\eclipse-helios\plugins\org.apache.ant_1.7.1.v20100518-1145\lib\ant-junit.jar to CLASSPATH
[junit] Using CLASSPATH C:\Documents and Settings\gafitzgerald\training\Bowling;C:\Documents and Settings\gafitzgerald\training\lib\junit-4.8.2.jar;C:\java\eclipse-helios\plugins\org.apache.ant_1.7.1.v20100518-1145\lib\ant-launcher.jar;C:\java\eclipse-helios\plugins\org.apache.ant_1.7.1.v20100518-1145\lib\ant.jar;C:\java\eclipse-helios\plugins\org.apache.ant_1.7.1.v20100518-1145\lib\ant-junit.jar
[junit] Running Overview
[junit] Tests run: 1, Failures: 0, Errors: 1, Time elapsed: 0 sec
BUILD FAILED
C:\Documents and Settings\gafitzgerald\training\Bowling\build.xml:31: Test Overview failed
at org.apache.tools.ant.taskdefs.optional.junit.JUnitTask.actOnTestResult(JUnitTask.java:1840)
at org.apache.tools.ant.taskdefs.optional.junit.JUnitTask.execute(JUnitTask.java:837)
at org.apache.tools.ant.taskdefs.optional.junit.JUnitTask.executeOrQueue(JUnitTask.java:1785)
at org.apache.tools.ant.taskdefs.optional.junit.JUnitTask.execute(JUnitTask.java:785)
at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:288)