将 PaxExam 与 Bndtools 一起使用
Posted
技术标签:
【中文标题】将 PaxExam 与 Bndtools 一起使用【英文标题】:Using PaxExam with Bndtools 【发布时间】:2012-07-29 17:04:32 【问题描述】:是否有人曾尝试使用 Bndtools 运行 PaxExam Junit 测试并可以给我一些建议?我自己试过了,但是没有 Maven,下载所有依赖项很痛苦。
到目前为止我做了什么:
-
从 Central Maven 下载 PaxExam 依赖项(还有更简单的方法吗?)
在 cnf/bnd.bnd 中创建包含所有依赖项的属性
将属性添加到我要编写测试的构建路径
执行测试失败,因为缺少更多依赖项,所以回到 1。:D
我想使用 PaxExam,因为它更容易与 Ant Junit 任务一起用作 Bndtools 的集成测试,因为它们只生成测试报告,但它们并不是真正的“Junit 测试”。
后期场景:
-
与 Hudson 和 Ant 一起构建项目
Hudson 还应该执行 Junit Ant 任务,失败的测试也应该停止构建过程
上面的场景已经可以在没有运行 OSGi 环境的情况下使用普通的 Junit4 测试,但现在我想做集成测试。
有人可以帮我吗?
您好。
【问题讨论】:
您是否考虑过简单地使用带有 Maven Bundle 插件的 Maven 而不是 ant+bndtools?它对我很有用。 在我看来,Bndtools 比 MBP 好得多,因为它在某些情况下使开发更容易。所以是的,我看了看,但决定使用 Bndtools ;) 为什么 bnd 的测试报告不是“真正的”单元测试? 嗨,彼得,我真的不能给你答案,因为我不记得我为什么遇到问题并要求我为 PaxExam 提供建议。也许这是我当时唯一的可能性,或者我没有现在的经验;)(可能是我错过了 Bndtools 和 JUnit 视图之间的套接字通信以在那里产生输出,不仅“失败”和“成功”的控制台输出 - 但不记得确切):) 【参考方案1】:即使您不使用 Maven 来构建项目,您仍然可以使用它来下载 maven-artifacts 及其传递依赖项。为此,您首先必须install Maven。然后,创建一个空目录,并在该目录中创建一个名为pom.xml
的文件。对于 Pax Exam,应该如下所示:
<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>
我从Pax Exam documentation 中获取了依赖项列表。然后,打开命令行,导航到创建 pom.xml
的目录,然后执行以下命令:
mvn dependencies:copy-dependencies
(假设您已经安装了 Maven,因此命令 mvn
可从命令行使用)。现在maven会获取你在pom.xml
中指定的依赖的所有传递依赖,并默认存储在target/dependency
中。
【讨论】:
有趣的故事:我已经想过像你在回答中描述的那样去做;)所以你从我这里得到 +1 :) 但尽管如此,也许还有其他方法。希望 我接受了你的回答,因为这似乎是唯一的方法:) 所以对我来说这是最有帮助的一个。恭喜;) 您可以悬赏您的问题以获得更多观点并鼓励人们更加努力地思考。以上是关于将 PaxExam 与 Bndtools 一起使用的主要内容,如果未能解决你的问题,请参考以下文章