summaryrefslogtreecommitdiff
path: root/example/decorated/app/test/src/ExampleTests.scala
blob: c2c19a64080f2d9620fbd6bc1999a9a35c947646 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package app
import io.undertow.Undertow

import utest._

object ExampleTests extends TestSuite{
  def withServer[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{
    test("Decorated") - withServer(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"

    }
  }
}