我正在尝试使用FIT创建集成/验收测试。这是文件夹结构:
-src
--main
---fit
----"html files"
---java
----fit
-----"FIT Fixtures files"
----my
-----package
------"business logic files"
这是我的pom.xml(maven2):
<project ...>
<modelVersion>4.0.0</modelVersion>
<groupId>test</groupId>
<artifactId>Test</artifactId>
<version>1.0-SNAPSHOT</version>
<dependencies>
...
<dependency>
<groupId>org.codehaus.mojo</groupId>
<artifactId>fit-maven-plugin</artifactId>
<version>2.0-beta-3</version>
</dependency>
</dependencies>
<build>
<sourceDirectory>src/main/java</sourceDirectory>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>fit-maven-plugin</artifactId>
<version>2.0-beta-3</version>
<executions>
<execution>
<configuration>
<sourceDirectory>src/main/fit</sourceDirectory>
<sourceIncludes>*.html</sourceIncludes>
<outputDirectory>${project.basedir}\target</outputDirectory>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<repositories>
...
</repositories>
</project>
使用mvn integration-test -X
运行FIT测试,我收到错误:
java.lang.IllegalStateException:Fixture失败了 计数:0表示正确,0表示错误,0表示忽略,4表示异常
仍然会生成C:\JavaTest\target\customer-bills.html
中的FIT输出并包含错误说:
java.lang.RuntimeException: The fixture GivenTheFollowingCustomers was not found.
“GivenTheFollowingCustomers”是HTML中的表格标题:
<table>
<tr>
<td colspan="3" class="title">GivenTheFollowingCustomers</td>
</tr>
...
</table>
我以为系统一直在寻找名为GivenTheFollowingCustomers
的夹具?为什么它无法找到它?
非常感谢!
更新
系统现在能够找到第一个表的夹具,但只能找到第一个!我遇到了问题,因为表标题是GivenTheFollowingCustomers
而不是fit.GivenTheFollowingCustomers
。不过,我对该HTML文件中的所有其他表/装置都收到了同样的错误。这很奇怪,因为它不依赖于特定的表格。例如,如果我将第一个表(GivenTheFollowingCustomers
)移动到第二个位置,它将停止工作,而第一个表开始工作。任何线索..?
Update2:我尝试使用FIT库(没有maven)手动运行测试,它运行正常!另外,其他人写了这个:http://osdir.com/ml/java.maven-plugins.mojo.user/2007-07/msg00000.html但没有答案。 FIT maven插件中可能存在错误..?
答案 0 :(得分:1)
这是一个带有FIT maven插件的known bug。该修复程序应该已在2.0-beta-4版本中发布,但它从未发布过。事实上,似乎开发在2007年12月停止了(哎哟!)。无论如何,可以通过创建以下类来解决问题(如补丁中所示):
/**
* Extends ColumnFixture to allow a custom ClassLoader to be used for loading fixtures
*
* @author Mauro Talevi
*/
public class ClassLoaderColumnFixture
extends ColumnFixture
implements FixtureClassLoaderEnabled
{
private FixtureClassLoader classLoader;
public ClassLoaderColumnFixture()
{
this( new FixtureClassLoader() );
}
public ClassLoaderColumnFixture()
{
this( new FixtureClassLoader() );
}
public ClassLoaderColumnFixture( FixtureClassLoader classLoader )
{
this.classLoader = classLoader;
}
public void enableClassLoader( FixtureClassLoader classLoader )
{
this.classLoader = classLoader;
}
public Fixture loadFixture( String fixtureName )
throws InstantiationException, IllegalAccessException
{
return classLoader.newFixture( fixtureName );
}
}
在灯具中从ClassLoaderColumnFixture
而不是ColumnFixtures
延伸。
这解决了我的问题,希望对其他人有帮助。
答案 1 :(得分:0)
你可以使用一个新的maven插件。只需用以下内容替换插件:
<plugin>
<groupId>com.github.cradloff</groupId>
<artifactId>fit-maven-plugin</artifactId>
<version>3.0</version>
<executions>
<execution>
<id>fixture</id>
<phase>test</phase>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
然后不需要特殊的类装载机夹具。