Skip to content

Commit 7499b42

Browse files
committed
Fix #115: Add ESModule support
1 parent fe57fdb commit 7499b42

File tree

5 files changed

+57
-24
lines changed

5 files changed

+57
-24
lines changed

build.sbt

+12-8
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,16 @@ val testSettings: Seq[Setting[_]] = commonSettings ++ Seq(
6464
scalaJSUseMainModuleInitializer := true
6565
)
6666

67+
val httpTestSettings: Seq[Setting[_]] = testSettings ++ Seq(
68+
jsEnv := {
69+
new SeleniumJSEnv(
70+
jsEnvCapabilities.value,
71+
SeleniumJSEnv.Config()
72+
.withMaterializeInServer("tmp", "http://localhost:8080/tmp/")
73+
)
74+
}
75+
)
76+
6777
// We'll need the name scalajs-env-selenium for the `seleniumJSEnv` project
6878
name := "root"
6979

@@ -127,13 +137,7 @@ lazy val seleniumJSEnvTest: Project = project.
127137
lazy val seleniumJSHttpEnvTest: Project = project.
128138
enablePlugins(ScalaJSPlugin).
129139
enablePlugins(ScalaJSJUnitPlugin).
130-
settings(testSettings).
140+
settings(httpTestSettings).
131141
settings(
132-
jsEnv := {
133-
new SeleniumJSEnv(
134-
jsEnvCapabilities.value,
135-
SeleniumJSEnv.Config()
136-
.withMaterializeInServer("tmp", "http://localhost:8080/tmp/")
137-
)
138-
}
142+
scalaJSLinkerConfig ~= { _.withModuleKind(ModuleKind.ESModule) }
139143
)

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

+20-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 setupJsUrl = m.materialize("setup.js", JSSetup.setupCode(enableCom))
137+
val page = m.materialize("scalajsRun.html", htmlPage(setupJsUrl, input, m))
146138
withCleanup(newDriver())(maybeCleanupDriver(_, config)) { driver =>
147139
driver.navigate().to(page)
148140

@@ -171,13 +163,25 @@ 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(setupJsUrl: URL, input: Seq[Input], materializer: FileMaterializer): String = {
167+
val setupJs = s"<script src='${setupJsUrl.toString}'></script>"
168+
169+
val tags = input.map {
170+
case Input.Script(path) =>
171+
val url = materializer.materialize(path)
172+
s"<script src='${url.toString}'></script>"
173+
case Input.ESModule(path) =>
174+
val url = materializer.materialize(path)
175+
s"<script type='module' src='${url.toString}'></script>"
176+
case _ => throw new UnsupportedInputException(input)
177+
}
178+
179+
val allTags = setupJs +: tags
180+
177181
s"""<html>
178182
| <meta charset="UTF-8">
179183
| <body>
180-
| ${scriptTags.mkString("\n ")}
184+
| ${allTags.mkString("\n ")}
181185
| </body>
182186
|</html>
183187
""".stripMargin
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
package org.scalajs.jsenv.selenium
2+
3+
object CamelCase {
4+
def hello(input: String): String = s"Hello ${CamelcaseEsModule(input)}!"
5+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
package org.scalajs.jsenv.selenium
2+
3+
import scala.scalajs.js
4+
import scala.scalajs.js.annotation.JSImport
5+
6+
@JSImport("https://cdn.skypack.dev/camelcase@^6.0.0", JSImport.Default)
7+
@js.native
8+
object CamelcaseEsModule extends js.Object {
9+
def apply(input: String): String = js.native
10+
}
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 CamelCaseTest {
7+
@Test def CamelCaseTest(): Unit = {
8+
assertEquals("Hello scalaJsSelenium!", CamelCase.hello("scala js selenium"))
9+
}
10+
}

0 commit comments

Comments
 (0)