summaryrefslogtreecommitdiff
path: root/example/staticFiles
diff options
context:
space:
mode:
Diffstat (limited to 'example/staticFiles')
-rw-r--r--example/staticFiles/app/src/StaticFiles.scala12
-rw-r--r--example/staticFiles/app/test/src/ExampleTests.scala27
-rw-r--r--example/staticFiles/build.sc18
3 files changed, 57 insertions, 0 deletions
diff --git a/example/staticFiles/app/src/StaticFiles.scala b/example/staticFiles/app/src/StaticFiles.scala
new file mode 100644
index 0000000..0d3bebc
--- /dev/null
+++ b/example/staticFiles/app/src/StaticFiles.scala
@@ -0,0 +1,12 @@
+package app
+object StaticFiles extends cask.MainRoutes{
+ @cask.get("/")
+ def index() = {
+ "Hello!"
+ }
+
+ @cask.static("/static")
+ def staticRoutes() = "cask/resources/cask"
+
+ initialize()
+}
diff --git a/example/staticFiles/app/test/src/ExampleTests.scala b/example/staticFiles/app/test/src/ExampleTests.scala
new file mode 100644
index 0000000..ddf7de3
--- /dev/null
+++ b/example/staticFiles/app/test/src/ExampleTests.scala
@@ -0,0 +1,27 @@
+package app
+import io.undertow.Undertow
+
+import utest._
+
+object ExampleTests extends TestSuite{
+ def test[T](example: cask.main.BaseMain)(f: String => T): T = {
+ val server = Undertow.builder
+ .addHttpListener(8080, "localhost")
+ .setHandler(example.defaultHandler)
+ .build
+ server.start()
+ val res =
+ try f("http://localhost:8080")
+ finally server.stop()
+ res
+ }
+
+ val tests = Tests{
+
+ 'StaticFiles - test(StaticFiles){ host =>
+ requests.get(s"$host/static/example.txt").text() ==>
+ "the quick brown fox jumps over the lazy dog"
+ }
+
+ }
+}
diff --git a/example/staticFiles/build.sc b/example/staticFiles/build.sc
new file mode 100644
index 0000000..6b3ab3f
--- /dev/null
+++ b/example/staticFiles/build.sc
@@ -0,0 +1,18 @@
+import mill._, scalalib._
+
+
+trait AppModule extends ScalaModule{
+ def scalaVersion = "2.12.6"
+ def ivyDeps = Agg(
+ ivy"com.lihaoyi::cask:0.0.1",
+ )
+
+ object test extends Tests{
+ def testFrameworks = Seq("utest.runner.Framework")
+ def forkArgs = Seq("--illegal-access=deny")
+ def ivyDeps = Agg(
+ ivy"com.lihaoyi::utest::0.6.3",
+ ivy"com.lihaoyi::requests::0.1.2",
+ )
+ }
+} \ No newline at end of file