Skip to content

Commit 7463ce6

Browse files
authored
Merge pull request #1 from sjrd/import-from-core
Import the JS Envs projects from the Scala.js core repository.
2 parents e9d986c + f3a156c commit 7463ce6

File tree

28 files changed

+3246
-0
lines changed

28 files changed

+3246
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
target/

.travis.yml

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
sudo: false
2+
language: scala
3+
script:
4+
- sbt ++$TRAVIS_SCALA_VERSION scalajs-js-envs/test
5+
- sbt ++$TRAVIS_SCALA_VERSION scalajs-js-envs/doc
6+
- sbt ++$TRAVIS_SCALA_VERSION scalajs-js-envs/mimaReportBinaryIssues
7+
- sbt ++$TRAVIS_SCALA_VERSION scalajs-js-envs/headerCheck scalajs-js-envs/test:headerCheck
8+
- sbt ++$TRAVIS_SCALA_VERSION scalajs-js-envs-test-kit/test
9+
- sbt ++$TRAVIS_SCALA_VERSION scalajs-js-envs-test-kit/doc
10+
- sbt ++$TRAVIS_SCALA_VERSION scalajs-js-envs-test-kit/mimaReportBinaryIssues
11+
- sbt ++$TRAVIS_SCALA_VERSION scalajs-js-envs-test-kit/headerCheck scalajs-js-envs-test-kit/test:headerCheck
12+
- sbt ++$TRAVIS_SCALA_VERSION scalajs-env-nodejs/test
13+
- sbt ++$TRAVIS_SCALA_VERSION scalajs-env-nodejs/doc
14+
- sbt ++$TRAVIS_SCALA_VERSION scalajs-env-nodejs/mimaReportBinaryIssues
15+
- sbt ++$TRAVIS_SCALA_VERSION scalajs-env-nodejs/headerCheck scalajs-env-nodejs/test:headerCheck
16+
scala:
17+
- 2.11.12
18+
- 2.12.11
19+
- 2.13.2
20+
jdk:
21+
- openjdk8
22+
23+
cache:
24+
directories:
25+
- "$HOME/.cache/coursier"
26+
- "$HOME/.ivy2/cache"
27+
- "$HOME/.sbt"
28+
before_cache:
29+
- rm -fv $HOME/.ivy2/.sbt.ivy.lock
30+
- find $HOME/.ivy2/cache -name "ivydata-*.properties" -print -delete
31+
- find $HOME/.sbt -name "*.lock" -print -delete

build.sbt

+143
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,143 @@
1+
val previousVersion: Option[String] = Some("1.1.0")
2+
val newScalaBinaryVersionsInThisRelease: Set[String] = Set()
3+
4+
inThisBuild(Def.settings(
5+
version := "1.1.1-SNAPSHOT",
6+
organization := "org.scala-js",
7+
scalaVersion := "2.12.11",
8+
crossScalaVersions := Seq("2.11.12", "2.12.11", "2.13.2"),
9+
scalacOptions ++= Seq(
10+
"-deprecation",
11+
"-feature",
12+
"-Xfatal-warnings",
13+
"-encoding", "utf-8",
14+
),
15+
16+
// Licensing
17+
homepage := Some(url("https://github.com/scala-js/scala-js-js-envs")),
18+
startYear := Some(2013),
19+
licenses += (("Apache-2.0", url("https://www.apache.org/licenses/LICENSE-2.0"))),
20+
scmInfo := Some(ScmInfo(
21+
url("https://github.com/scala-js/scala-js-js-envs"),
22+
"scm:git:[email protected]:scala-js/scala-js-js-envs.git",
23+
Some("scm:git:[email protected]:scala-js/scala-js-js-envs.git"))),
24+
25+
// Publishing
26+
publishMavenStyle := true,
27+
publishTo := {
28+
val nexus = "https://oss.sonatype.org/"
29+
if (version.value.endsWith("-SNAPSHOT"))
30+
Some("snapshots" at nexus + "content/repositories/snapshots")
31+
else
32+
Some("releases" at nexus + "service/local/staging/deploy/maven2")
33+
},
34+
pomExtra := (
35+
<developers>
36+
<developer>
37+
<id>sjrd</id>
38+
<name>Sébastien Doeraene</name>
39+
<url>https://github.com/sjrd/</url>
40+
</developer>
41+
<developer>
42+
<id>gzm0</id>
43+
<name>Tobias Schlatter</name>
44+
<url>https://github.com/gzm0/</url>
45+
</developer>
46+
<developer>
47+
<id>nicolasstucki</id>
48+
<name>Nicolas Stucki</name>
49+
<url>https://github.com/nicolasstucki/</url>
50+
</developer>
51+
</developers>
52+
),
53+
pomIncludeRepository := { _ => false },
54+
))
55+
56+
val commonSettings = Def.settings(
57+
// Links to the JavaDoc do not work
58+
Compile / doc / scalacOptions -= "-Xfatal-warnings",
59+
60+
// Scaladoc linking
61+
apiURL := {
62+
val name = moduleName.value
63+
val scalaBinVer = scalaBinaryVersion.value
64+
val ver = version.value
65+
Some(url(s"https://javadoc.io/doc/org.scala-js/${name}_$scalaBinVer/$ver/"))
66+
},
67+
autoAPIMappings := true,
68+
69+
// sbt-header configuration
70+
headerLicense := Some(HeaderLicense.Custom(
71+
s"""Scala.js JS Envs (${homepage.value.get})
72+
|
73+
|Copyright EPFL.
74+
|
75+
|Licensed under Apache License 2.0
76+
|(https://www.apache.org/licenses/LICENSE-2.0).
77+
|
78+
|See the NOTICE file distributed with this work for
79+
|additional information regarding copyright ownership.
80+
|""".stripMargin
81+
)),
82+
83+
// MiMa auto-configuration
84+
mimaPreviousArtifacts ++= {
85+
val scalaV = scalaVersion.value
86+
val scalaBinaryV = scalaBinaryVersion.value
87+
val thisProjectID = projectID.value
88+
previousVersion match {
89+
case None =>
90+
Set.empty
91+
case _ if newScalaBinaryVersionsInThisRelease.contains(scalaBinaryV) =>
92+
// New in this release, no binary compatibility to comply to
93+
Set.empty
94+
case Some(prevVersion) =>
95+
/* Filter out e:info.apiURL as it expects 1.1.1-SNAPSHOT, whereas the
96+
* artifact we're looking for has 1.1.0 (for example).
97+
*/
98+
val prevExtraAttributes =
99+
thisProjectID.extraAttributes.filterKeys(_ != "e:info.apiURL")
100+
val prevProjectID =
101+
(thisProjectID.organization % thisProjectID.name % prevVersion)
102+
.cross(thisProjectID.crossVersion)
103+
.extra(prevExtraAttributes.toSeq: _*)
104+
Set(prevProjectID)
105+
}
106+
},
107+
)
108+
109+
lazy val root = project
110+
.in(file("."))
111+
112+
lazy val `scalajs-js-envs` = project
113+
.in(file("js-envs"))
114+
.settings(
115+
commonSettings,
116+
libraryDependencies ++= Seq(
117+
"org.scala-js" %% "scalajs-logging" % "1.1.1",
118+
"com.novocode" % "junit-interface" % "0.11" % "test",
119+
),
120+
)
121+
122+
lazy val `scalajs-js-envs-test-kit` = project
123+
.in(file("js-envs-test-kit"))
124+
.settings(
125+
commonSettings,
126+
libraryDependencies ++= Seq(
127+
"com.google.jimfs" % "jimfs" % "1.1",
128+
"junit" % "junit" % "4.12",
129+
"com.novocode" % "junit-interface" % "0.11" % "test"
130+
),
131+
)
132+
.dependsOn(`scalajs-js-envs`)
133+
134+
lazy val `scalajs-env-nodejs` = project
135+
.in(file("nodejs-env"))
136+
.settings(
137+
commonSettings,
138+
libraryDependencies ++= Seq(
139+
"com.google.jimfs" % "jimfs" % "1.1",
140+
"com.novocode" % "junit-interface" % "0.11" % "test"
141+
),
142+
)
143+
.dependsOn(`scalajs-js-envs`, `scalajs-js-envs-test-kit` % "test")
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,151 @@
1+
/*
2+
* Scala.js JS Envs (https://github.com/scala-js/scala-js-js-envs)
3+
*
4+
* Copyright EPFL.
5+
*
6+
* Licensed under Apache License 2.0
7+
* (https://www.apache.org/licenses/LICENSE-2.0).
8+
*
9+
* See the NOTICE file distributed with this work for
10+
* additional information regarding copyright ownership.
11+
*/
12+
13+
package org.scalajs.jsenv.test
14+
15+
import org.junit.{Before, Test, AssumptionViolatedException}
16+
import org.junit.Assume._
17+
18+
import org.scalajs.jsenv._
19+
import org.scalajs.jsenv.test.kit.TestKit
20+
21+
private[test] class ComTests(config: JSEnvSuiteConfig) {
22+
private val kit = new TestKit(config.jsEnv, config.awaitTimeout)
23+
24+
@Before
25+
def before: Unit = {
26+
assumeTrue("JSEnv needs com support", config.supportsCom)
27+
}
28+
29+
@Test
30+
def basicTest: Unit = {
31+
kit.withComRun("""
32+
scalajsCom.init(function(msg) { scalajsCom.send("received: " + msg); });
33+
scalajsCom.send("Hello World");
34+
""") { run =>
35+
36+
run.expectMsg("Hello World")
37+
38+
for (i <- 0 to 10) {
39+
run
40+
.send(i.toString)
41+
.expectMsg(s"received: $i")
42+
}
43+
44+
run.expectNoMsgs()
45+
.closeRun()
46+
}
47+
}
48+
49+
@Test
50+
def jsExitsOnMessageTest: Unit = {
51+
val exitStat = config.exitJSStatement.getOrElse(
52+
throw new AssumptionViolatedException("JSEnv needs exitJSStatement"))
53+
54+
kit.withComRun(s"""
55+
scalajsCom.init(function(msg) { $exitStat });
56+
for (var i = 0; i < 10; ++i)
57+
scalajsCom.send("msg: " + i);
58+
""") { run =>
59+
60+
for (i <- 0 until 10)
61+
run.expectMsg(s"msg: $i")
62+
63+
run
64+
.send("quit")
65+
.expectNoMsgs()
66+
.succeeds()
67+
}
68+
}
69+
70+
@Test
71+
def multiEnvTest: Unit = {
72+
val n = 10
73+
val runs = List.fill(5) {
74+
kit.startWithCom("""
75+
scalajsCom.init(function(msg) {
76+
scalajsCom.send("pong");
77+
});
78+
""")
79+
}
80+
81+
try {
82+
for (_ <- 0 until n) {
83+
runs.foreach(_.send("ping"))
84+
runs.foreach(_.expectMsg("pong"))
85+
}
86+
87+
runs.foreach {
88+
_.expectNoMsgs()
89+
.closeRun()
90+
}
91+
} finally {
92+
runs.foreach(_.close())
93+
}
94+
}
95+
96+
private def replyTest(msg: String) = {
97+
kit.withComRun("scalajsCom.init(scalajsCom.send);") {
98+
_.send(msg)
99+
.expectMsg(msg)
100+
.expectNoMsgs()
101+
.closeRun()
102+
}
103+
}
104+
105+
@Test
106+
def largeMessageTest: Unit = {
107+
/* 1MB data.
108+
* (i & 0x7f) limits the input to the ASCII repertoire, which will use
109+
* exactly 1 byte per Char in UTF-8. This restriction also ensures that we
110+
* do not introduce surrogate characters and therefore no invalid UTF-16
111+
* strings.
112+
*/
113+
replyTest(new String(Array.tabulate(1024 * 1024)(i => (i & 0x7f).toChar)))
114+
}
115+
116+
@Test
117+
def highCharTest: Unit = { // #1536
118+
replyTest("\uC421\u8F10\u0112\uFF32")
119+
}
120+
121+
@Test
122+
def noInitTest: Unit = {
123+
kit.withComRun("") {
124+
_.send("Dummy")
125+
.expectNoMsgs()
126+
.closeRun()
127+
}
128+
}
129+
130+
@Test
131+
def separateComStdoutTest: Unit = {
132+
// Make sure that com and stdout do not interfere with each other.
133+
kit.withComRun("""
134+
scalajsCom.init(function (msg) {
135+
console.log("got: " + msg)
136+
});
137+
console.log("a");
138+
scalajsCom.send("b");
139+
scalajsCom.send("c");
140+
console.log("d");
141+
""") {
142+
_.expectOut("a\n")
143+
.expectMsg("b")
144+
.expectMsg("c")
145+
.expectOut("d\n")
146+
.send("foo")
147+
.expectOut("got: foo\n")
148+
.closeRun()
149+
}
150+
}
151+
}

0 commit comments

Comments
 (0)