无法通过ANT运行测试



我有一个测试类,如果我在eclipse中运行,这个类的所有测试都运行良好。(右键单击文件,作为jUnit运行),但当我试图使用Ant脚本运行时,它失败了。

实际上这个测试要在2个浏览器上运行。这个测试在IE浏览器上运行良好。它在IE上运行良好。但测试无法在Chrome上运行。我不知道发生了什么。所有与驱动程序相关的信息我都放在项目路径的所有资源/驱动程序/下。浏览器配置文件保存在项目的browserProfiles文件夹下。

我不知道为什么测试不能被Chrome拾起。

我已经附加了测试代码和代码,我试图在源代码中创建webdriver和seldriver。

package com.mytests;
public class MyParamTest {
private MyWrapperForBrowser browser;
@Before
public void setup(){
    b = new MyWrapperForBrowser("chrome");
    b.start();
}
@Test
public void testCURDOnEntity() {
    MyEntity e = new MyEntity(browser);
    Assert.assertTrue(e.createMessage("message", "text"));
    // more business logic..
}
}

和源代码

    package com.mysrc;
import java.util.*;
import org.openqa.selenium.*;
public class MyWrapperForBrowser {
    private final WebDriver webDriver;
    private WebDriverBackedSelenium selDriver;

public MyWrapperForBrowser(String driver) {
        if (driver.equalsIgnoreCase("IE")
        {
            // create webDriver , selDriver
        }
        else{
       System.setProperty("webdriver.chrome.driver",
                    "allresources/drivers/chromedriver.exe");
        DesiredCapabilities broserCapabilities = DesiredCapabilities.chrome();
        broserCapabilities.setCapability("chrome.switches", Arrays.asList("--start-minimized"));
        String url = this.getClass().getClassLoader().getResource("browserProfiles/ChromeProfile").getPath()
                .substring(1);
        broserCapabilities.setCapability("chrome.switches",
                Arrays.asList("--user-data-dir=" + url));
        webDriver = new ChromeDriver(broserCapabilities);
        selDriver = new WebDriverBackedSelenium(webDriver, "");
}
}
public void start() {
    webDriver.get(getURL());
    selDriver.windowMaximize();
 }
 }

我在运行ANT构建时得到的堆栈跟踪是:

[junit] java.util.zip.ZipException: error in opening zip file
[junit]     at java.util.zip.ZipFile.open(Native Method)
[junit]     at java.util.zip.ZipFile.<init>(ZipFile.java:114)
[junit]     at java.util.zip.ZipFile.<init>(ZipFile.java:131)
[junit]     at org.apache.tools.ant.AntClassLoader.getResourceURL(AntClassLoader.java:1028)
[junit]     at org.apache.tools.ant.AntClassLoader$ResourceEnumeration.findNextResource(AntClassLoader.java:147)
[junit]     at org.apache.tools.ant.AntClassLoader$ResourceEnumeration.<init>
下面是构建脚本:
<project name="MyProject" default="build-proj" basedir=".">
    <property file="./build.properties" />
    <path id="project.classpath">   
        <fileset dir="resources/drivers">
            <include name="*.*" />
        </fileset>       
    </path>
    <taskdef resource="emma_ant.properties">
        <classpath>
            <pathelement path="${lib.dir}/emma_ant-2.1.5320.jar" />
            <pathelement path="${lib.dir}/emma-2.1.5320.jar" />
        </classpath>
    </taskdef>
    <target name="build-proj">
        <antcall target="cleanup" />
        <antcall target="compile" />
        <antcall target="test" />
    </target>
    <target name="cleanup" description="clean up">
        <delete dir="${build.dir}" />
        <delete dir="${dist.dir}" />
        <delete dir="${test.report.dir}" />
        <mkdir dir="${build.dir}" />
        <mkdir dir="${build.src.dir}" />
        <mkdir dir="${build.test.dir}" />
    </target>
    <target name="compile" description="compiling all the code">
        <javac srcdir="${src.dir}" destdir="${build.src.dir}" debug="true">
            <classpath>
                <path refid="project.classpath" />
            </classpath>
        </javac>
        <javac srcdir="${test.dir}" destdir="${build.test.dir}" debug="true">
            <classpath>
                <path refid="project.classpath" />
                <path path="${build.src.dir}" />
            </classpath>
        </javac>
    </target>
    <target name="test">
        <junit haltonfailure="false" printsummary="true" fork="true" forkmode="once" >
            <classpath>
                <pathelement path="${src.dir}" />
                <pathelement path="${build.src.dir}" />
                <pathelement path="${build.test.dir}" />
                <pathelement path="${test.data.dir}" />
                <path refid="project.classpath" />
            </classpath>
            <formatter type="xml"/>
            <batchtest todir="${test.report.dir}">
                <fileset dir="${build.test.dir}">
                    <include name="**/*Test.class" />
                </fileset>
            </batchtest>
        </junit>
    </target>
</project>

可能您的类路径中不仅包含.jar文件。

ant任务"junit"只喜欢classpath元素中的.jar文件(或者用ant术语来说,最好说是Path类结构)。

你可以试着用

<include name="*.jar" />
不是

<include name="*.*" />

在"project.classpath"-fileset.

相关内容

  • 没有找到相关文章

最新更新