是否有人尝试过使用Bndtools运行PaxExam Junit测试,可以给我一些建议?我自己也试过,但如果没有Maven,下载所有的依赖项会很痛苦。
到目前为止我所做的:
- 从Central Maven下载PaxExam依赖项(还有更简单的方法吗?)
- 创建包含cnf/bnd.bnd中所有依赖项的属性
- 将属性添加到我要编写测试的构建路径
- 执行测试失败,bc缺少更多依赖项,因此返回到1。:D
我想使用PaxExam,因为它更容易与Ant Junit任务一起用作Bndtools的集成测试,因为它们只生成测试报告,但不是真正的"Junit测试"。
后期场景:
- 与Hudson和Ant合作建设项目
- Hudson还应该执行Junit Ant任务,失败的测试也应该停止构建过程
上面的场景已经可以在不运行OSGi环境的情况下进行普通的Junit4测试,但现在我想进行集成测试。
有人能帮我吗?
问候。
即使您不使用Maven来构建项目,您仍然可以使用它来下载Maven工件及其可传递依赖项。要做到这一点,首先必须安装Maven。然后,创建一个空目录,在该目录中创建一个名为pom.xml
的文件。对于帕克斯检查,应该是这样的:
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>test</groupId>
<artifactId>test</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>pom</packaging>
<properties>
<exam.version>2.5.0</exam.version>
<url.version>1.4.2</url.version>
</properties>
<dependencies>
<dependency>
<groupId>org.ops4j.pax.exam</groupId>
<artifactId>pax-exam-container-native</artifactId>
<version>${exam.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.ops4j.pax.exam</groupId>
<artifactId>pax-exam-junit4</artifactId>
<version>${exam.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.ops4j.pax.exam</groupId>
<artifactId>pax-exam-link-mvn</artifactId>
<version>${exam.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.ops4j.pax.url</groupId>
<artifactId>pax-url-aether</artifactId>
<version>${url.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.felix</groupId>
<artifactId>org.apache.felix.framework</artifactId>
<version>3.2.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
<version>0.9.29</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>0.9.29</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
我已经从帕克斯考试文档中获取了依赖项列表。然后,打开命令行,导航到创建pom.xml
的目录,并执行以下命令:
mvn dependencies:copy-dependencies
(这假设您已经安装了Maven,以便命令行中可以使用命令mvn
)。现在maven将获取您在pom.xml
中指定的依赖项的所有可传递依赖项,并默认将它们存储在target/dependency
中。