Geb Firefox driver: why is my test running twice?

Sorry for all this code, but I have no idea what is doing my problem, so here it is.

I have configured the geb plugin to run functional tests with JUnit. So I have 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
   }
}

      

And I have GebConfig.groovy in my conf folder:

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() }
  }
}

      

I have a functional test for login:

class LoginTests extends GebReportingTest {


    @Test
    void login() {
        to LoginPage
        at LoginPage

        username = "SERGIO"
        password = "SERGIO"

        loginButton.click()

        assert at(IndexPage)

        link.click()

    }

}

      

And these are my two pages:

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') } 
    }

}

      

For some reason, my functional test runs twice and it doesn't matter how I start this:

grails test-app :functional

grails test-app -functional

      

+3


source to share


2 answers


It looks like the Geb plugin is not fully compatible with Grails 2.3.x. For some reason, tests are run twice after upgrading to Geb plugin 0.9.2.

I believe this issue is related to https://jira.grails.org/browse/GRAILS-10552 and changes made as part of https://jira.grails.org/browse/GRAILS-6352 .

In Grails 2.3.x +, GrailsSpecTestType will take care of Junit and Spock tests: https://github.com/grails/grails-core/blob/bce298f0/grails-test/src/main/groovy/org/codehaus/groovy/grails /test/spock/GrailsSpecTestType.groovy#L33

It looks like the Geb plugin is adding the deprecated JUnit4GrailsTestType to execution: https://github.com/geb/geb/blob/584738cb/integration/geb-grails/scripts/_Events.groovy#L60-L67

This is why functional tests are run twice.



This is how I ran into the problem in Geb 0.9.2 / 0.9.3 versions.

grails test-app functional:spock

      

It looks like Geb version 0.9.1 didn't run tests twice.

The difference seems to be caused by this commit: https://github.com/geb/geb/commit/9c71e820

You should also be aware that the Spock plugin is not installed in Grails 2.3.x / 2.4.x.

+3


source


Hi, Not much of Selenium WebDriver is in Ruby, but it looks like you are starting Firefox twice as the test passes in duplicate



0


source







All Articles