Use Firefox instead of Chrome for selenium tests (#3732)
* Debug gwt failure * show debug log * show debug log * replace chrome with firefox * remove debugging * remove unneccessary change
This commit is contained in:
parent
cbd8bb29fd
commit
080b8cd25b
|
@ -91,10 +91,6 @@ tasks {
|
|||
}
|
||||
|
||||
named<Test>("test") {
|
||||
// TODO(anuraaga): Reenable after fixing
|
||||
// https://github.com/open-telemetry/opentelemetry-java-instrumentation/issues/3724
|
||||
enabled = gradle.startParameter.taskNames.any { it.contains(":gwt-2.0") }
|
||||
|
||||
dependsOn(sourceSets["testapp"].output)
|
||||
dependsOn(copyTestWebapp)
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@ import java.util.concurrent.TimeUnit
|
|||
import org.eclipse.jetty.server.Server
|
||||
import org.eclipse.jetty.util.resource.Resource
|
||||
import org.eclipse.jetty.webapp.WebAppContext
|
||||
import org.openqa.selenium.chrome.ChromeOptions
|
||||
import org.openqa.selenium.firefox.FirefoxOptions
|
||||
import org.slf4j.Logger
|
||||
import org.slf4j.LoggerFactory
|
||||
import org.testcontainers.Testcontainers
|
||||
|
@ -24,7 +24,7 @@ class GwtTest extends AgentInstrumentationSpecification implements HttpServerTes
|
|||
private static final Logger logger = LoggerFactory.getLogger(GwtTest)
|
||||
|
||||
@Shared
|
||||
BrowserWebDriverContainer<?> chrome
|
||||
BrowserWebDriverContainer<?> browser
|
||||
|
||||
@Override
|
||||
Server startServer(int port) {
|
||||
|
@ -52,16 +52,16 @@ class GwtTest extends AgentInstrumentationSpecification implements HttpServerTes
|
|||
def setupSpec() {
|
||||
Testcontainers.exposeHostPorts(port)
|
||||
|
||||
chrome = new BrowserWebDriverContainer<>()
|
||||
.withCapabilities(new ChromeOptions())
|
||||
browser = new BrowserWebDriverContainer<>()
|
||||
.withCapabilities(new FirefoxOptions())
|
||||
.withLogConsumer(new Slf4jLogConsumer(logger))
|
||||
chrome.start()
|
||||
browser.start()
|
||||
|
||||
address = new URI("http://host.testcontainers.internal:$port" + getContextPath() + "/")
|
||||
}
|
||||
|
||||
def cleanupSpec() {
|
||||
chrome?.stop()
|
||||
browser?.stop()
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -70,7 +70,7 @@ class GwtTest extends AgentInstrumentationSpecification implements HttpServerTes
|
|||
}
|
||||
|
||||
def getDriver() {
|
||||
def driver = chrome.getWebDriver()
|
||||
def driver = browser.getWebDriver()
|
||||
driver.manage().timeouts().implicitlyWait(30, TimeUnit.SECONDS)
|
||||
return driver
|
||||
}
|
||||
|
@ -94,14 +94,14 @@ class GwtTest extends AgentInstrumentationSpecification implements HttpServerTes
|
|||
trace(1, 1) {
|
||||
serverSpan(it, 0, getContextPath() + "/*")
|
||||
}
|
||||
// /xyz/greeting/1B105441581A8F41E49D5DF3FB5B55BA.cache.html
|
||||
trace(2, 1) {
|
||||
serverSpan(it, 0, getContextPath() + "/*")
|
||||
}
|
||||
// /favicon.ico
|
||||
trace(3, 1) {
|
||||
trace(2, 1) {
|
||||
serverSpan(it, 0, "HTTP GET")
|
||||
}
|
||||
// /xyz/greeting/1B105441581A8F41E49D5DF3FB5B55BA.cache.html
|
||||
trace(3, 1) {
|
||||
serverSpan(it, 0, getContextPath() + "/*")
|
||||
}
|
||||
}
|
||||
clearExportedData()
|
||||
|
||||
|
|
|
@ -41,12 +41,6 @@ tasks {
|
|||
val vaadin16Test by existing
|
||||
val vaadin14LatestTest by existing
|
||||
|
||||
withType<Test>().configureEach {
|
||||
// TODO(anuraaga): Reenable after fixing
|
||||
// https://github.com/open-telemetry/opentelemetry-java-instrumentation/issues/3724
|
||||
enabled = gradle.startParameter.taskNames.any { it.contains(":vaadin-14.2") }
|
||||
}
|
||||
|
||||
named<Test>("test") {
|
||||
dependsOn(vaadin142Test)
|
||||
dependsOn(vaadin16Test)
|
||||
|
|
|
@ -12,7 +12,7 @@ import io.opentelemetry.instrumentation.test.AgentInstrumentationSpecification
|
|||
import io.opentelemetry.instrumentation.test.asserts.TraceAssert
|
||||
import io.opentelemetry.instrumentation.test.base.HttpServerTestTrait
|
||||
import java.util.concurrent.TimeUnit
|
||||
import org.openqa.selenium.chrome.ChromeOptions
|
||||
import org.openqa.selenium.firefox.FirefoxOptions
|
||||
import org.slf4j.Logger
|
||||
import org.slf4j.LoggerFactory
|
||||
import org.springframework.boot.SpringApplication
|
||||
|
@ -27,7 +27,7 @@ abstract class AbstractVaadinTest extends AgentInstrumentationSpecification impl
|
|||
private static final Logger logger = LoggerFactory.getLogger(AbstractVaadinTest)
|
||||
|
||||
@Shared
|
||||
BrowserWebDriverContainer<?> chrome
|
||||
BrowserWebDriverContainer<?> browser
|
||||
|
||||
@SpringBootApplication
|
||||
@EnableVaadin("test.vaadin")
|
||||
|
@ -46,16 +46,16 @@ abstract class AbstractVaadinTest extends AgentInstrumentationSpecification impl
|
|||
def setupSpec() {
|
||||
Testcontainers.exposeHostPorts(port)
|
||||
|
||||
chrome = new BrowserWebDriverContainer<>()
|
||||
.withCapabilities(new ChromeOptions())
|
||||
browser = new BrowserWebDriverContainer<>()
|
||||
.withCapabilities(new FirefoxOptions())
|
||||
.withLogConsumer(new Slf4jLogConsumer(logger))
|
||||
chrome.start()
|
||||
browser.start()
|
||||
|
||||
address = new URI("http://host.testcontainers.internal:$port" + getContextPath() + "/")
|
||||
}
|
||||
|
||||
def cleanupSpec() {
|
||||
chrome?.stop()
|
||||
browser?.stop()
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -91,7 +91,7 @@ abstract class AbstractVaadinTest extends AgentInstrumentationSpecification impl
|
|||
}
|
||||
|
||||
def getWebDriver() {
|
||||
return chrome.getWebDriver()
|
||||
return browser.getWebDriver()
|
||||
}
|
||||
|
||||
abstract List<String> getRequestHandlers()
|
||||
|
|
Loading…
Reference in New Issue