Skip to content

Commit b9efc6d

Browse files
committed
Fix #115: Add ESModule support
1 parent 4ac4518 commit b9efc6d

File tree

5 files changed

+50
-18
lines changed

5 files changed

+50
-18
lines changed

build.sbt

+2-1
Original file line numberDiff line numberDiff line change
@@ -135,5 +135,6 @@ lazy val seleniumJSHttpEnvTest: Project = project.
135135
SeleniumJSEnv.Config()
136136
.withMaterializeInServer("tmp", "http://localhost:8080/tmp/")
137137
)
138-
}
138+
},
139+
scalaJSLinkerConfig ~= { _.withModuleKind(ModuleKind.ESModule) }
139140
)

seleniumJSEnv/src/main/scala/org/scalajs/jsenv/selenium/FileMaterializers.scala

+5-1
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,13 @@ private[selenium] sealed abstract class FileMaterializer {
1717
}
1818

1919
final def materialize(name: String, content: String): URL = {
20+
val tempPath = write(name, content)
21+
toURL(tempPath)
22+
}
23+
24+
final def write(name: String, content: String): Path = {
2025
val tmp = newTmp(name)
2126
Files.write(tmp, Arrays.asList(content))
22-
toURL(tmp)
2327
}
2428

2529
final def close(): Unit = {

seleniumJSEnv/src/main/scala/org/scalajs/jsenv/selenium/SeleniumRun.scala

+21-16
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ import scala.util.control.NonFatal
1010

1111
import java.util.concurrent.{ConcurrentLinkedQueue, Executors}
1212
import java.util.function.Consumer
13+
import java.nio.file.Path
14+
import java.net.URL
1315

1416
private sealed class SeleniumRun(
1517
driver: WebDriver with JavascriptExecutor,
@@ -129,20 +131,10 @@ private[selenium] object SeleniumRun {
129131
newRun: Ctor[T], failed: Throwable => T): T = {
130132
validator.validate(runConfig)
131133

132-
val scripts = input.map {
133-
case Input.Script(s) => s
134-
case _ => throw new UnsupportedInputException(input)
135-
}
136-
137134
try {
138135
withCleanup(FileMaterializer(config.materialization))(_.close()) { m =>
139-
val allScriptURLs = (
140-
m.materialize("setup.js", JSSetup.setupCode(enableCom)) +:
141-
scripts.map(m.materialize)
142-
)
143-
144-
val page = m.materialize("scalajsRun.html", htmlPage(allScriptURLs))
145-
136+
val setupJsPath = m.write("setup.js", JSSetup.setupCode(enableCom))
137+
val page = m.materialize("scalajsRun.html", htmlPage(setupJsPath, input, m))
146138
withCleanup(newDriver())(maybeCleanupDriver(_, config)) { driver =>
147139
driver.navigate().to(page)
148140

@@ -171,18 +163,31 @@ private[selenium] object SeleniumRun {
171163
private def maybeCleanupDriver(d: WebDriver, config: SeleniumJSEnv.Config) =
172164
if (!config.keepAlive) d.close()
173165

174-
private def htmlPage(scripts: Seq[java.net.URL]): String = {
175-
val scriptTags =
176-
scripts.map(path => s"<script src='${path.toString}'></script>")
166+
private def htmlPage(setupJsPath: Path, input: Seq[Input], materializer: FileMaterializer): String = {
167+
val setupJs = makeTag(setupJsPath, "text/javascript", materializer)
168+
169+
val tags = input.map {
170+
case Input.Script(path) => makeTag(path, "text/javascript", materializer)
171+
case Input.ESModule(path) => makeTag(path, "module", materializer)
172+
case _ => throw new UnsupportedInputException(input)
173+
}
174+
175+
val allTags = setupJs +: tags
176+
177177
s"""<html>
178178
| <meta charset="UTF-8">
179179
| <body>
180-
| ${scriptTags.mkString("\n ")}
180+
| ${allTags.mkString("\n ")}
181181
| </body>
182182
|</html>
183183
""".stripMargin
184184
}
185185

186+
private def makeTag(path: Path, tpe: String, materializer: FileMaterializer): String = {
187+
val url = materializer.materialize(path)
188+
s"<script defer type='$tpe' src='${url.toString}'></script>"
189+
}
190+
186191
private class WindowOnErrorException(errs: List[String]) extends Exception(s"JS error: $errs")
187192

188193
private def consumer[A](f: A => Unit): Consumer[A] = new Consumer[A] {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
package org.scalajs.jsenv.selenium
2+
3+
import scala.scalajs.js
4+
import scala.scalajs.js.annotation.JSImport
5+
6+
object CamelCase {
7+
def hello(input: String): String = s"Hello ${camelCase(input)}!"
8+
9+
@JSImport("https://cdn.skypack.dev/camelcase@^6.0.0", JSImport.Default)
10+
@js.native
11+
def camelCase(input: String): String = js.native
12+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
package org.scalajs.jsenv.selenium
2+
3+
import org.junit.Assert._
4+
import org.junit.Test
5+
6+
class ModuleSupportTest {
7+
@Test def testBasicImport(): Unit = {
8+
assertEquals("Hello scalaJsSelenium!", CamelCase.hello("scala js selenium"))
9+
}
10+
}

0 commit comments

Comments
 (0)