Merge: Added contributing guidelines and link from readme
[nit.git] / lib / popcorn / 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_suite
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
33 redef fun client_test do
34 system "curl -s {host}:{port}"
35 system "curl -s {host}:{port}/"
36 system "curl -s {host}:{port}/user"
37 system "curl -s {host}:{port}/user/"
38 system "curl -s {host}:{port}/user/settings"
39 system "curl -s {host}:{port}/products"
40 system "curl -s {host}:{port}/products/"
41 system "curl -s {host}:{port}/products/list"
42 system "curl -s {host}:{port}/not_found"
43 system "curl -s {host}:{port}/user/not_found"
44 system "curl -s {host}:{port}/products/not_found"
45 end
46
47 fun test_router do
48 var app = new App
49 app.use("/", new TestHandler("/"))
50 app.use("/about", new TestHandler("/about"))
51
52 var router1 = new App
53 router1.use("/", new TestHandler("/user"))
54 router1.use("/settings", new TestHandler("/user/settings"))
55 app.use("/user", router1)
56
57 var router2 = new App
58 router2.use("/", new TestHandler("/products"))
59 router2.use("/list", new TestHandler("/products/list"))
60 app.use("/products", router2)
61
62 run_test(app)
63 end
64 end
65
66 class TestPopcornRoutes
67 super TestPopcorn
68
69 redef fun client_test do
70 system "curl -s {host}:{port}"
71 system "curl -s {host}:{port}/"
72 system "curl -s {host}:{port}/misc"
73 system "curl -s {host}:{port}/misc/foo"
74 system "curl -s {host}:{port}/misc/foo/bar"
75 system "curl -s {host}:{port}/misc/foo/baz"
76 system "curl -s {host}:{port}/user"
77 system "curl -s {host}:{port}/user/"
78 system "curl -s {host}:{port}/user/id"
79 system "curl -s {host}:{port}/user/id/profile"
80 system "curl -s {host}:{port}/user/id/misc/foo"
81 system "curl -s {host}:{port}/user/id/misc/foo/bar"
82 system "curl -s {host}:{port}/user/id/misc/foo/bar/baz"
83 system "curl -s {host}:{port}/not_found"
84 system "curl -s {host}:{port}/user/id/not_found"
85 end
86
87 fun test_routes do
88 var app = new App
89 app.use("/", new TestHandler("/"))
90 app.use("/user", new TestHandler("/user"))
91 app.use("/misc/*", new TestHandler("/misc/everything"))
92 app.use("/user/:id", new TestHandler("/user/id"))
93 app.use("/user/:id/profile", new TestHandler("/user/id/profile"))
94 app.use("/user/:id/misc/*", new TestHandler("/user/id/misc/everything"))
95 run_test(app)
96 end
97 end