将PaxExam与Bndtools一起使用

时间:2012-07-31 20:26:22

标签: ant hudson osgi pax-exam bndtools

有人试过用Bndtools运行PaxExam Junit测试并且可以给我一些建议吗?我自己尝试过,但是如果没有Maven,下载所有依赖项会很痛苦。

到目前为止我做了什么:

  1. 从Central Maven下载PaxExam依赖项(有更简单的方法吗?)
  2. 在cnf / bnd.bnd
  3. 中创建包含所有依赖项的属性
  4. 将属性添加到我想编写测试的构建路径
  5. 执行测试失败,bc更多依赖项缺失,因此回到1.:D
  6. 我想使用PaxExam,因为它们只生成测试报告但是它们不是真正的“Junit测试”,因此它更容易使用Ant Junit任务作为Bndtools的集成测试。

    后期情景:

    1. 使用Hudson和Ant构建项目
    2. Hudson还应该执行Junit Ant Task,其中失败的测试也应该停止构建过程
    3. 上面的场景已经适用于正常的Junit4测试而没有运行OSGi环境,但现在我想进行整合测试。

      有人可以帮助我吗?

      问候。

1 个答案:

答案 0 :(得分:4)

即使您不使用Maven构建项目,您仍然可以使用它来下载maven-artifacts及其传递依赖项。要做到这一点,首先必须install Maven。然后,您创建一个空目录,并在该目录中创建一个名为pom.xml的文件。对于Pax考试,这应该是这样的:

<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中。