当前位置: 首页 > 面试题库 >

集成测试无法启动(故障安全,Maven)

孔欣可
2023-03-14
问题内容

我正在尝试使用Maven故障安全插件通过以下配置运行集成测试:

 <plugin>
    <artifactId>maven-failsafe-plugin</artifactId>
    <version>2.7.1</version>
    <executions>
      <execution>
        <id>integration-test</id>
        <goals>
          <goal>integration-test</goal>
        </goals>
      </execution>
      <execution>
        <id>verify</id>
        <goals>
          <goal>verify</goal>
        </goals>
      </execution>
     </executions>
</plugin>

<plugin>
    <groupId>org.mortbay.jetty</groupId>
    <artifactId>maven-jetty-plugin</artifactId>
    <version>6.1.7</version>
    <configuration>

          <connectors>
            <connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">
              <port>8080</port>
              <maxIdleTime>3600000</maxIdleTime>
            </connector>
          </connectors>

        <contextPath>/</contextPath>
        <scanIntervalSeconds>3</scanIntervalSeconds>
        <scanTargetPatterns>
            <scanTargetPattern>
                <directory>src/main/webapp/WEB-INF</directory>
                <excludes>
                    <exclude>**/*.jsp</exclude>
                    <exclude>**/*.html</exclude>
                </excludes>
                <includes>
                    <include>**/*.page</include>
                    <include>**/*.properties</include>
                    <include>**/*.xml</include>
                </includes>
            </scanTargetPattern>
        </scanTargetPatterns>
    </configuration>
    <executions>
            <execution>
                <id>start-jetty</id>
                <phase>pre-integration-test</phase>
                <goals>
                  <goal>run-war</goal>
                </goals>
                <configuration>
                  <scanIntervalSeconds>0</scanIntervalSeconds>
                  <daemon>true</daemon>
                </configuration>
            </execution>
            <execution>
                <id>stop-jetty</id>
                <phase>post-integration-test</phase>
                <goals>
                  <goal>stop</goal>
                </goals>
            </execution>
  </executions>
</plugin>

一切正常,直到Jetty在集成前测试阶段启动。然后什么也没有发生,好像它在等待什么。最后一行说:

[INFO] Started Jetty Server

我如何才能使测试立即开始?我使用运行Maven mvn verify


问题答案:

将Jetty Maven插件版本从6.1.7更改为6.1.26可以解决所有问题。



 类似资料:
  • 大家好, 我从今年1月开始开发cucumber测试,现在在Spring Boot环境中与maven(surefire和failsafe)并行运行cucumber集成测试时遇到了一个问题。 简而言之: 我想在运行Spring Boot应用程序的同时运行cucumber集成测试。我使用maven时,Surefire或Failsafe插件处于活动状态。当我注释掉代码中的每个Spring Boot组件时,

  • 问题内容: 我还不清楚如何最好地使用Maven Failsafe插件进行集成测试。我的用例是针对本地MySQL数据库测试SQL查询。 我了解应该在该阶段启动数据库,而在期间关闭数据库。但是我该如何指定呢?我应该在pom.xml中放入命令行吗?还是我应该使用特定注释进行注释的方法? 问题答案: 在常规的内置Maven生命周期(jar,war …)中,和测试阶段未绑定到任何maven插件(即,这些阶段

  • 我还不完全清楚如何最好地使用Maven Failsecurity插件进行集成测试。我的用例是针对本地MySQL数据库测试SQL查询。 我知道数据库应该在集成前测试阶段启动,在集成后测试阶段关闭。但我该如何具体说明呢?是否应该在pom中输入命令行。xml?或者一个我应该用特定注释进行注释的方法?

  • 基本上,在任何有集成测试的项目中,可响应的插件就是maven failsafe插件。默认情况下,它执行具有后缀it的所有类。每个示例:。 嗯,这是第一个问题。我发现的Spring Boot运行集成测试的大多数示例(甚至在官方文档或Spring博客中),测试类都有sufix测试。因此,我理解它们将由maven surefire插件运行,这对于集成测试来说是不可取的。 但混乱并没有结束。

  • 我加载的证书对“每个人”都有完全的特权。我已经尝试了我在互联网上看到的每一个解决方案,但仍然得到错误。 下面是我创建请求的代码: 获取证书的代码(我也尝试过使用pfx): 第二个编辑:我可以让它在SoapUI中工作,但不能在。NET应用程序中工作,只需从SOAP UI中的文件系统中加载SSL证书即可。

  • 我试图为一个Spring引导项目写一个集成测试。不幸的是,我对实现感到困惑。 下面是已尝试的示例代码段 问题 我是否需要一个单独的,带有注释以支持集成测试