summaryrefslogtreecommitdiff
path: root/example/formJsonPost/app/test/src/ExampleTests.scala
blob: 4178497313dadc66544e8a0d56856c2435e4f91a (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
32
33
34
35
36
37
38
39
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("FormJsonPost") - withServer(FormJsonPost){ host =>
      val response1 = requests.post(s"$host/json", data = """{"value1": true, "value2": [3]}""")
      ujson.read(response1.text()) ==> ujson.Str("OK true List(3)")

      val response2 = requests.post(
        s"$host/form",
        data = Seq("value1" -> "hello", "value2" -> "1", "value2" -> "2")
      )
      response2.text() ==> "OK FormValue(hello,null) List(1, 2)"

      val response3 = requests.post(
        s"$host/upload",
        data = requests.MultiPart(
          requests.MultiItem("image", "...", "my-best-image.txt")
        )
      )
      response3.text() ==> "my-best-image.txt"
    }
  }
}