summaryrefslogtreecommitdiff
path: root/example/staticFiles2/app/test/src/ExampleTests.scala
diff options
context:
space:
mode:
Diffstat (limited to 'example/staticFiles2/app/test/src/ExampleTests.scala')
-rw-r--r--example/staticFiles2/app/test/src/ExampleTests.scala35
1 files changed, 35 insertions, 0 deletions
diff --git a/example/staticFiles2/app/test/src/ExampleTests.scala b/example/staticFiles2/app/test/src/ExampleTests.scala
new file mode 100644
index 0000000..514f534
--- /dev/null
+++ b/example/staticFiles2/app/test/src/ExampleTests.scala
@@ -0,0 +1,35 @@
+package app
+import io.undertow.Undertow
+
+import utest._
+
+object ExampleTests extends TestSuite{
+ def withServer[T](example: cask.main.Main)(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{
+
+ test("StaticFiles") - withServer(StaticFiles2){ host =>
+ requests.get(s"$host/static/file/example.txt").text() ==>
+ "the quick brown fox jumps over the lazy dog"
+
+ requests.get(s"$host/static/resource/example.txt").text() ==>
+ "the quick brown fox jumps over the lazy dog"
+
+ requests.get(s"$host/static/resource2/cask/example.txt").text() ==>
+ "the quick brown fox jumps over the lazy dog"
+
+ requests.get(s"$host/static/file/../../../build.sc").statusCode ==> 404
+ }
+
+ }
+}