summaryrefslogtreecommitdiffstats
path: root/src/test/scala/optional.scala
blob: 7832ba90f446d72de1ceaefbd4f9848367be35ac (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
import org.scalatest.FunSuite

import router.Router

class Optional extends FunSuite with RouterHelpers {
  val router = new Router[Boolean]

  router addRoute (
    ":controller/?:action",
    true,
    defaults = Map(
      "action" -> "index"
    ),
    validations = Map(
      "action" -> """\D+""".r
    )
  )

  router addRoute (
    ":controller/:id/?:action",
    true,
    defaults = Map(
      "action" -> "show"
    ),
    validations = Map(
      "id" -> """\d+""".r
    )
  )

  test ("routes match properly") {
    testRoute(
      router, "people", Map(
        "controller" -> "people",
        "action"     -> "index"
      )
    )

    testRoute(
      router, "people/new", Map(
        "controller" -> "people",
        "action"     -> "new"
      )
    )

    testRoute(
      router, "people/create", Map(
        "controller" -> "people",
        "action"     -> "create"
      )
    )

    testRoute(
      router, "people/56", Map(
        "controller" -> "people",
        "action"     -> "show",
        "id"         -> "56"
      )
    )

    testRoute(
      router, "people/56/edit", Map(
        "controller" -> "people",
        "action"     -> "edit",
        "id"         -> "56"
      )
    )

    testRoute(
      router, "people/56/remove", Map(
        "controller" -> "people",
        "action"     -> "remove",
        "id"         -> "56"
      )
    )

    testRoute(
      router, "people/56/update", Map(
        "controller" -> "people",
        "action"     -> "update",
        "id"         -> "56"
      )
    )
  }
}