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/decorated/app/test/src/ExampleTests.scala | 27 +++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 example/decorated/app/test/src/ExampleTests.scala (limited to 'example/decorated/app/test/src/ExampleTests.scala') diff --git a/example/decorated/app/test/src/ExampleTests.scala b/example/decorated/app/test/src/ExampleTests.scala new file mode 100644 index 0000000..9aea3bc --- /dev/null +++ b/example/decorated/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{ + 'Decorated - test(Decorated){ host => + requests.get(s"$host/hello/woo").text() ==> "woo31337" + requests.get(s"$host/internal/boo").text() ==> "boo[haoyi]" + requests.get(s"$host/internal-extra/goo").text() ==> "goo[haoyi]31337" + + } + } +} -- cgit v1.2.3