Geb Firefox Driver:为什么我的测试运行两次?

时间:2013-01-18 18:04:28

标签: firefox grails selenium-webdriver grails-2.0 geb

很抱歉所有这些代码,但我不知道是什么问题,所以在这里。

我配置了geb插件以使用JUnit运行功能测试。所以我的 buildConfig.groovy

def seleniumVersion = "2.29.0"
def gebVersion = "0.7.0"

dependencies {
    // specify dependencies here under either 'build', 'compile', 'runtime', 'test' or 'provided' scopes eg.

    // runtime 'mysql:mysql-connector-java:5.1.5'

    provided('com.oracle:oracle:11.1.0.7.0')
    provided('com.oracle:i18n:10.2.0.5')


    test ("org.seleniumhq.selenium:selenium-chrome-driver:$seleniumVersion") {
        export = false
    }
    test("org.seleniumhq.selenium:selenium-firefox-driver:$seleniumVersion"){ 
        excludes "commons-io"
        export = false
    }
    test ("org.seleniumhq.selenium:selenium-ie-driver:$seleniumVersion") {
        export = false
    }

    test ("org.seleniumhq.selenium:selenium-support:$seleniumVersion") {
        export = false
    }
    test ("org.seleniumhq.selenium:selenium-remote-driver:$seleniumVersion") {
        export = false
    } 

    test ("org.codehaus.geb:geb-junit4:$gebVersion") {
        export = false
    }

}

plugins {
  build(":tomcat:$grailsVersion") {
  export = false
  excludes 'svn'
  }
  compile (":hibernate:$grailsVersion") {
  export = false
  excludes 'svn'
  }

  build (":release:2.0.0") {
  excludes 'commons-io','http-builder'
  export = false
  }

   compile(":spring-security-core:1.2.7.3") { excludes 'svn' }
   compile(":spring-security-ldap:1.0.6")

   compile (":remote-control:1.3") {
  export = false
   }

   test(":geb:$gebVersion") {
     export = false
   }
}

我的conf文件夹中有 GebConfig.groovy

driver = {
//def driver = new HtmlUnitDriver()
//driver.javascriptEnabled = true
//driver
def driver = new FirefoxDriver()
driver
} 

environments {
   // run as “grails -Dgeb.env=chrome test-app”
   // See: http://code.google.com/p/selenium/wiki/ChromeDriver
   chrome {
     driver = { new ChromeDriver() }
   }

   // run as “grails -Dgeb.env=firefox test-app”
   // See: http://code.google.com/p/selenium/wiki/FirefoxDriver
   firefox {
    driver = { new FirefoxDriver() }
  }
}

我对登录进行了功能测试:

class LoginTests extends GebReportingTest {


    @Test
    void login() {
        to LoginPage
        at LoginPage

        username = "SERGIO"
        password = "SERGIO"

        loginButton.click()

        assert at(IndexPage)

        link.click()

    }

}

这是我的两页:

class LoginPage extends Page {

    static url = "login/auth"

    static at = {
        title ==~ /Efetuar Login/
    }

    static content = {
        loginForm { $("form", id: "loginForm") }
        username { $("input", type:"text", id:"username") }
        password { $("input", type:"password", id:"password") }
        loginButton{ $("input", type:"submit", id:"submit") }
    }

}

class IndexPage extends Page {

    static at = {
        title ==~ /Security Service Index View/
    }

    static content = {
        description { $('h1') }
        link { $('a') } 
    }

}

出于某种原因,我的功能测试运行了两次,并且无论我如何开始这个:

grails test-app :functional

grails test-app -functional

2 个答案:

答案 0 :(得分:3)

看起来Geb插件与Grails 2.3.x完全兼容。出于某种原因,在升级到Geb插件0.9.2后,测试会被执行两次。

我认为此问题与https://jira.grails.org/browse/GRAILS-10552以及https://jira.grails.org/browse/GRAILS-6352的一部分所做的更改有关。

在Grails 2.3.x +中,GrailsS​​pecTestType负责Junit和Spock测试: https://github.com/grails/grails-core/blob/bce298f0/grails-test/src/main/groovy/org/codehaus/groovy/grails/test/spock/GrailsSpecTestType.groovy#L33

看起来Geb插件正在添加已弃用的JUnit4GrailsTestType来执行: https://github.com/geb/geb/blob/584738cb/integration/geb-grails/scripts/_Events.groovy#L60-L67

这就是功能测试执行两次的原因。

这就是我在Geb 0.9.2 / 0.9.3版本中解决问题的方法。

grails test-app functional:spock

看起来Geb版本0.9.1没有执行两次测试。

差异似乎是由此提交引起的: https://github.com/geb/geb/commit/9c71e820

您还应该知道,您不应该在Grails 2.3.x / 2.4.x中安装Spock插件。

答案 1 :(得分:0)

嗨,不是很多关于Ruby的Selenium WebDriver,但似乎是你启动Firefox两次这样的测试在两个实例中运行