gpt4 book ai didi

ant - 将 PaxExam 与 Bndtools 一起使用

转载 作者:行者123 更新时间:2023-12-04 18:15:50 27 4
gpt4 key购买 nike

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

到目前为止我所做的:

  • 从 Central Maven 下载 PaxExam 依赖项(还有更简单的方法吗?)
  • 在 cnf/bnd.bnd
  • 中创建包含所有依赖项的属性
  • 将属性添加到我要编写测试的 buildpath
  • 执行测试失败,因为缺少更多依赖项,所以回到 1。:D

  • 我想使用 PaxExam,因为它们只生成测试报告,但它们并不是真正的“Junit 测试”,因此更容易将 Ant Junit 任务用作 Bndtools 的集成测试。

    后期场景:
  • 与 Hudson 和 Ant 一起 build 项目
  • Hudson 还应该执行 Junit Ant 任务,失败的测试也应该停止构建过程

  • 上面的场景已经可以在没有运行 OSGi 环境的情况下使用普通的 Junit4 测试,但现在我想做集成测试。

    有人能帮我吗?

    问候。

    最佳答案

    即使您不使用 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默认。

    关于ant - 将 PaxExam 与 Bndtools 一起使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11748444/

    27 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com