Merge: model: is_accessor
[nit.git] / lib / popcorn / tests / test_popcorn.nit
1 # This file is part of NIT ( http://www.nitlanguage.org ).
2 #
3 # Copyright 2016 Alexandre Terrasa <alexandre@moz-code.org>
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 # http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16
17 module test_popcorn is test
18
19 import pop_tests
20 import popcorn
21
22 class TestHandler
23 super Handler
24
25 var marker: String
26
27 redef fun get(req, res) do res.send marker
28 end
29
30 class TestPopcornRouter
31 super TestPopcorn
32 test
33
34 redef fun client_test do
35 system "curl -s {host}:{port}"
36 system "curl -s {host}:{port}/"
37 system "curl -s {host}:{port}/user"
38 system "curl -s {host}:{port}/user/"
39 system "curl -s {host}:{port}/user/settings"
40 system "curl -s {host}:{port}/products"
41 system "curl -s {host}:{port}/products/"
42 system "curl -s {host}:{port}/products/list"
43 system "curl -s {host}:{port}/not_found"
44 system "curl -s {host}:{port}/user/not_found"
45 system "curl -s {host}:{port}/products/not_found"
46 end
47
48 fun test_router is test do
49 var app = new App
50 app.use("/", new TestHandler("/"))
51 app.use("/about", new TestHandler("/about"))
52
53 var router1 = new App
54 router1.use("/", new TestHandler("/user"))
55 router1.use("/settings", new TestHandler("/user/settings"))
56 app.use("/user", router1)
57
58 var router2 = new App
59 router2.use("/", new TestHandler("/products"))
60 router2.use("/list", new TestHandler("/products/list"))
61 app.use("/products", router2)
62
63 run_test(app)
64 end
65 end
66
67 class TestPopcornRoutes
68 super TestPopcorn
69 test
70
71 redef fun client_test do
72 system "curl -s {host}:{port}"
73 system "curl -s {host}:{port}/"
74 system "curl -s {host}:{port}/misc"
75 system "curl -s {host}:{port}/misc/foo"
76 system "curl -s {host}:{port}/misc/foo/bar"
77 system "curl -s {host}:{port}/misc/foo/baz"
78 system "curl -s {host}:{port}/user"
79 system "curl -s {host}:{port}/user/"
80 system "curl -s {host}:{port}/user/id"
81 system "curl -s {host}:{port}/user/id/profile"
82 system "curl -s {host}:{port}/user/id/misc/foo"
83 system "curl -s {host}:{port}/user/id/misc/foo/bar"
84 system "curl -s {host}:{port}/user/id/misc/foo/bar/baz"
85 system "curl -s {host}:{port}/not_found"
86 system "curl -s {host}:{port}/user/id/not_found"
87 end
88
89 fun test_routes is test do
90 var app = new App
91 app.use("/", new TestHandler("/"))
92 app.use("/user", new TestHandler("/user"))
93 app.use("/misc/*", new TestHandler("/misc/everything"))
94 app.use("/user/:id", new TestHandler("/user/id"))
95 app.use("/user/:id/profile", new TestHandler("/user/id/profile"))
96 app.use("/user/:id/misc/*", new TestHandler("/user/id/misc/everything"))
97 run_test(app)
98 end
99 end