summaryrefslogblamecommitdiff
path: root/example/variableRoutes/app/test/src/ExampleTests.scala
blob: 1755deabfb562ff9500fb21335a9ec5bd40732ca (plain) (tree)
1
2
3
4
5
6
7





                                      
                                                                       











                                         
                                                                








                                                                    
                                     

















                                                               
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("VariableRoutes") - withServer(VariableRoutes){ host =>
      val noIndexPage = requests.get(host)
      noIndexPage.statusCode ==> 404

      requests.get(s"$host/user/lihaoyi").text() ==> "User lihaoyi"

      requests.get(s"$host/user").statusCode ==> 404


      requests.get(s"$host/post/123?param=xyz&param=abc").text() ==>
        "Post 123 ArraySeq(xyz, abc)"

      requests.get(s"$host/post/123").text() ==>
        """Missing argument: (param: Seq[String])
          |
          |Arguments provided did not match expected signature:
          |
          |showPost
          |  postId  Int
          |  param  Seq[String]
          |
          |""".stripMargin

      requests.get(s"$host/path/one/two/three").text() ==>
        "Subpath List(one, two, three)"
    }

  }
}