summaryrefslogtreecommitdiff
path: root/contrib/playlib/test
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/playlib/test')
-rw-r--r--contrib/playlib/test/resources/hello-world/core/conf/routes2
-rw-r--r--contrib/playlib/test/resources/hello-world/core/views/hello.scala.html6
-rw-r--r--contrib/playlib/test/src/mill/playlib/HelloWorldRouterTests.scala77
3 files changed, 85 insertions, 0 deletions
diff --git a/contrib/playlib/test/resources/hello-world/core/conf/routes b/contrib/playlib/test/resources/hello-world/core/conf/routes
new file mode 100644
index 00000000..7d5e5498
--- /dev/null
+++ b/contrib/playlib/test/resources/hello-world/core/conf/routes
@@ -0,0 +1,2 @@
+GET / controllers.HomeController.index
+GET /assets/*file controllers.Assets.versioned(path="/public", file: Asset)
diff --git a/contrib/playlib/test/resources/hello-world/core/views/hello.scala.html b/contrib/playlib/test/resources/hello-world/core/views/hello.scala.html
new file mode 100644
index 00000000..3603fe07
--- /dev/null
+++ b/contrib/playlib/test/resources/hello-world/core/views/hello.scala.html
@@ -0,0 +1,6 @@
+@this(title: String)
+<html>
+ <body>
+ <h1>@title</h1>
+ </body>
+</html> \ No newline at end of file
diff --git a/contrib/playlib/test/src/mill/playlib/HelloWorldRouterTests.scala b/contrib/playlib/test/src/mill/playlib/HelloWorldRouterTests.scala
new file mode 100644
index 00000000..03742714
--- /dev/null
+++ b/contrib/playlib/test/src/mill/playlib/HelloWorldRouterTests.scala
@@ -0,0 +1,77 @@
+package mill.playlib
+
+import ammonite.ops.{Path, cp, ls, mkdir, pwd, rm, _}
+import mill.util.{TestEvaluator, TestUtil}
+import utest.framework.TestPath
+import utest.{TestSuite, Tests, assert, _}
+
+object HelloWorldRouterTests extends TestSuite {
+
+ trait HelloBase extends TestUtil.BaseModule {
+ override def millSourcePath: Path = TestUtil.getSrcPathBase() / millOuterCtx.enclosing.split('.')
+ }
+
+ trait HelloWorldModule extends mill.playlib.RouterModule {
+ def playVersion = "2.6.15"
+ }
+
+ object HelloWorld extends HelloBase {
+
+ object core extends HelloWorldModule {
+ override def playVersion = "2.6.14"
+ }
+ }
+
+ val resourcePath: Path = pwd / 'contrib / 'playlib / 'test / 'resources / "hello-world"
+
+ def workspaceTest[T, M <: TestUtil.BaseModule](m: M, resourcePath: Path = resourcePath)
+ (t: TestEvaluator[M] => T)
+ (implicit tp: TestPath): T = {
+ val eval = new TestEvaluator(m)
+ rm(m.millSourcePath)
+ rm(eval.outPath)
+ mkdir(m.millSourcePath / up)
+ cp(resourcePath, m.millSourcePath)
+ t(eval)
+ }
+
+ def tests: Tests = Tests {
+ 'twirlVersion - {
+
+ 'fromBuild - workspaceTest(HelloWorld) { eval =>
+ val Right((result, evalCount)) = eval.apply(HelloWorld.core.playVersion)
+
+ assert(
+ result == "2.6.14",
+ evalCount > 0
+ )
+ }
+ }
+ 'compileRouter - workspaceTest(HelloWorld) { eval =>
+ val Right((result, evalCount)) = eval.apply(HelloWorld.core.compileRouter)
+
+ val outputFiles = ls.rec(result.classes.path).filter(_.isFile)
+ val expectedClassfiles = Seq[RelPath](
+ RelPath("controllers/ReverseRoutes.scala"),
+ RelPath("controllers/routes.java"),
+ RelPath("router/Routes.scala"),
+ RelPath("router/RoutesPrefix.scala"),
+ RelPath("controllers/javascript/JavaScriptReverseRoutes.scala")
+ ).map(
+ eval.outPath / 'core / 'compileRouter / 'dest / _
+ )
+ assert(
+ result.classes.path == eval.outPath / 'core / 'compileRouter / 'dest,
+ outputFiles.nonEmpty,
+ outputFiles.forall(expectedClassfiles.contains),
+ outputFiles.size == 5,
+ evalCount > 0
+ )
+
+ // don't recompile if nothing changed
+ val Right((_, unchangedEvalCount)) = eval.apply(HelloWorld.core.compileRouter)
+
+ assert(unchangedEvalCount == 0)
+ }
+ }
+}