From fd9c399db8c1c0d86cc65d5e1c41968b42a813d1 Mon Sep 17 00:00:00 2001 From: Li Haoyi Date: Sun, 12 Aug 2018 22:18:39 +0800 Subject: auto-upload examples --- example/redirectAbort/app/src/RedirectAbort.scala | 14 +++++++++++ .../redirectAbort/app/test/src/ExampleTests.scala | 27 ++++++++++++++++++++++ example/redirectAbort/build.sc | 18 +++++++++++++++ 3 files changed, 59 insertions(+) create mode 100644 example/redirectAbort/app/src/RedirectAbort.scala create mode 100644 example/redirectAbort/app/test/src/ExampleTests.scala create mode 100644 example/redirectAbort/build.sc (limited to 'example/redirectAbort') diff --git a/example/redirectAbort/app/src/RedirectAbort.scala b/example/redirectAbort/app/src/RedirectAbort.scala new file mode 100644 index 0000000..18ef2d8 --- /dev/null +++ b/example/redirectAbort/app/src/RedirectAbort.scala @@ -0,0 +1,14 @@ +package app +object RedirectAbort extends cask.MainRoutes{ + @cask.get("/") + def index() = { + cask.Redirect("/login") + } + + @cask.get("/login") + def login() = { + cask.Abort(401) + } + + initialize() +} diff --git a/example/redirectAbort/app/test/src/ExampleTests.scala b/example/redirectAbort/app/test/src/ExampleTests.scala new file mode 100644 index 0000000..f095517 --- /dev/null +++ b/example/redirectAbort/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{ + + 'RedirectAbort - test(RedirectAbort){ host => + val resp = requests.get(s"$host/") + resp.statusCode ==> 401 + resp.history.get.statusCode ==> 301 + } + } +} diff --git a/example/redirectAbort/build.sc b/example/redirectAbort/build.sc new file mode 100644 index 0000000..6b3ab3f --- /dev/null +++ b/example/redirectAbort/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 -- cgit v1.2.3