私は Ant/Concordion を初めて使用し、スタック オーバーフローに関する最初の質問ですので、お手柔らかにお願いします。
Concordion Acceptance Tests を自動的に実行する Ant タスクをセットアップし、成功したテスト、失敗したテストなどを一覧表示する概要/概要/インデックス 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)