10

我正在使用 httpunit 访问服务器。

我需要为此配置代理设置(http 和 https)。

我在settings.xml文件中设置了配置,但是surefire似乎忽略了它!?

我想尽可能避免重复配置。

在我尝试过的surefire插件配置中:

<systemPropertyVariables>
    <http.proxyHost>${http.proxyHost}</http.proxyHost>
</systemPropertyVariables>

<argLine>-Dhttp.proxyHost=${http.proxyHost}</argLine>

<argLine>-Dhttp.proxyHost=${settings.proxies[protocol=http].host}</argLine>

和其他几种组合。

我在单元测试中打印系统属性:

for (String propertyName : new TreeSet<String>(System.getProperties().stringPropertyNames())){
        System.out.println(propertyName + ": " + System.getProperty(propertyName));
    }

到目前为止唯一有效的是显式值,例如:

<systemPropertyVariables>
    <http.proxyHost>myProxy</http.proxyHost>
</systemPropertyVariables>

或者

<argLine>-Dhttp.proxyHost=myProxy</argLine>

但正如我所说,如果可能的话,我不想复制配置。

如何在单元测试中使用 settings.xml 文件中设置的代理设置?

4

3 回答 3

3

我通过在需要时通过系统属性向 Maven 提供所有与代理相关的设置来解决这个问题,加上一些调整以在运行时检测这些设置是否存在于我的父 POM 中。

1)在需要代理设置的环境中,为Maven("~/.mavenrc""%PROFILE%\mavenrc_pre.bat")创建RC文件MAVEN_OPTS。例如:

set MAVEN_OPTS=-Dhttp.proxyHost=10.0.1.250 -Dhttp.proxyPort=3128 -Dhttp.nonProxyHosts="localhost|*.local|*.mylab.com"

2) 检测是否提供了代理设置并为 Surefire 构建参数:

<plugin>
    <groupId>org.codehaus.gmaven</groupId>
    <artifactId>groovy-maven-plugin</artifactId>
    <version>2.0</version>
    <executions>
        <execution>
            <phase>initialize</phase>
            <goals>
                <goal>execute</goal>
            </goals>
        </execution>
    </executions>
    <configuration>
        <source>
            <![CDATA[
                // Collect proxy settings to use in Surefire and Failsafe plugins
                def settings = "";
                System.properties.each { k,v ->
                    if ( k.startsWith("http.") || k.startsWith("https.") )
                    {
                        // We have to escape pipe char in 'nonProxyHosts' on Windows
                        if (System.properties['os.name'].toLowerCase().contains('windows'))
                            v = v.replaceAll( "\\|", "^|" );
                        settings += "-D$k=$v ";
                    }
                }
                project.properties["proxy.settings"] = settings;
            ]]>
        </source>
    </configuration>
</plugin>

3) 在 Surefire 和 Failsafe 插件中使用准备好的参数:

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-surefire-plugin</artifactId>
    <version>2.18.1</version>
    <configuration>
        <argLine>${proxy.settings}</argLine>
        <redirectTestOutputToFile>true</redirectTestOutputToFile>
    </configuration>
</plugin>
<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-failsafe-plugin</artifactId>
    <version>2.18.1</version>
    <configuration>
        <argLine>${proxy.settings}</argLine>
        <redirectTestOutputToFile>true</redirectTestOutputToFile>
    </configuration>
</plugin>

享受 :)

于 2015-08-30T09:04:24.847 回答
1

Maven Surefire 插件的 forkMode 默认为“一次”。我建议将其设置为“从不”,然后尝试再次运行构建。我的理论是你正在失去系统属性,因为 Surefire 插件正在分叉一个新的 JVM。

于 2012-12-26T18:59:00.763 回答
0

编辑 Maven 的 settings.xml 文件以添加代理对我来说工作正常。在 Ubuntu 和 AWS Linux 中,路径是/var/lib/jenkins/tools/hudson.tasks.Maven_MavenInstallation/maven/conf

<!-- proxy
 | Specification for one proxy, to be used in connecting to the network.
 |
<proxy>
  <id>optional</id>
  <active>true</active>
  <protocol>http</protocol>
  <username>proxyuser</username>
  <password>proxypass</password>
  <host>proxy.host.net</host>
  <port>80</port>
  <nonProxyHosts>local.net|some.host.com</nonProxyHosts>
</proxy>
-->
于 2014-10-07T20:39:36.567 回答