-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathKeepAliveTest.scala
119 lines (92 loc) · 2.91 KB
/
KeepAliveTest.scala
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
package org.scalajs.jsenv.selenium
import scala.concurrent.Await
import scala.concurrent.duration._
import java.net.URL
import org.openqa.selenium._
import org.openqa.selenium.remote.DesiredCapabilities
import org.junit._
import org.junit.Assert._
import org.scalajs.jsenv._
import org.scalajs.jsenv.selenium.SeleniumJSEnv.DriverFactory
class KeepAliveTest {
private final class MockWebDriver extends WebDriver with JavascriptExecutor {
var closed = false
def quit(): Unit = closed = true
def executeScript(code: String, args: Object*): Object =
new java.util.HashMap[String, java.util.List[String]]()
def get(url: String): Unit = ()
def navigate(): WebDriver.Navigation = new WebDriver.Navigation {
def back(): Unit = ()
def forward(): Unit = ()
def refresh(): Unit = ()
def to(url: String): Unit = ()
def to(url: URL): Unit = ()
}
// Stuff we won't need.
def close(): Unit = ???
def executeAsyncScript(code: String, args: Object*): Object = ???
def findElement(x1: By): WebElement = ???
def findElements(x1: By): java.util.List[WebElement] = ???
def getTitle(): String = ???
def getWindowHandle(): String = ???
def getWindowHandles(): java.util.Set[String] = ???
def manage(): WebDriver.Options = ???
def getCurrentUrl(): String = ???
def getPageSource(): String = ???
def switchTo(): WebDriver.TargetLocator = ???
}
private final class MockInjector(driver: WebDriver) extends DriverFactory {
var used = false
def apply(): WebDriver = {
require(!used)
used = true
driver
}
}
private def setup(keepAlive: Boolean) = {
val driver = new MockWebDriver
val factory = new MockInjector(driver)
val config = SeleniumJSEnv.Config()
.withKeepAlive(keepAlive)
val env = new SeleniumJSEnv(factory, config)
(driver, factory, env)
}
private def runNoCom(env: JSEnv) = {
val run = env.start(Nil, RunConfig())
run.close()
Await.ready(run.future, 1.minute)
}
private def runWithCom(env: JSEnv) = {
val run = env.startWithCom(Nil, RunConfig(), _ => ())
run.close()
Await.ready(run.future, 1.minute)
}
@Test
def runClosesWithoutKeepAlive: Unit = {
val (driver, factory, env) = setup(keepAlive = false)
runNoCom(env)
assertTrue(factory.used)
assertTrue(driver.closed)
}
@Test
def runNoCloseWithKeepAlive: Unit = {
val (driver, factory, env) = setup(keepAlive = true)
runNoCom(env)
assertTrue(factory.used)
assertFalse(driver.closed)
}
@Test
def comRunClosesWithoutKeepAlive: Unit = {
val (driver, factory, env) = setup(keepAlive = false)
runWithCom(env)
assertTrue(factory.used)
assertTrue(driver.closed)
}
@Test
def comRunNoCloseWithKeepAlive: Unit = {
val (driver, factory, env) = setup(keepAlive = true)
runWithCom(env)
assertTrue(factory.used)
assertFalse(driver.closed)
}
}