summaryrefslogtreecommitdiff
path: root/example/cookies/app/test/src/ExampleTests.scala
blob: 150f59a39fa10c124715ebc906e424251ba8d458 (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
28
29
30
31
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("Cookies") - withServer(Cookies){ host =>
      val sess = requests.Session()
      sess.get(s"$host/read-cookie").statusCode ==> 400
      sess.get(s"$host/store-cookie")
      sess.get(s"$host/read-cookie").text() ==> "the username"
      sess.get(s"$host/read-cookie").statusCode ==> 200
      sess.get(s"$host/delete-cookie")
      sess.get(s"$host/read-cookie").statusCode ==> 400

    }
  }
}