-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbasic.cpp
215 lines (187 loc) · 5.4 KB
/
basic.cpp
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
//
// Created by Rakesh on 15/03/2022.
//
#if __GNUC__ > 10 || defined _WIN32
#include <catch2/catch.hpp>
#else
#include <catch2/catch_test_macros.hpp>
#endif
#include "../src/router.hpp"
using namespace std::string_literals;
using namespace std::string_view_literals;
SCENARIO( "HttpRouter test suite" )
{
struct Request{} request;
GIVEN( "Router with a set of API endpoints" )
{
spt::http::router::HttpRouter<const Request&, bool> r;
r.add( "GET"sv, "/service/candy/{kind}"sv, [](const Request&, spt::http::router::HttpRouter<const Request&, bool>::MapType params)
{
REQUIRE( params.size() == 1 );
REQUIRE( params.contains( "kind"s ) );
return true;
} );
r.add( "GET"sv, "/service/shutdown"sv, [](const Request&, auto params)
{
REQUIRE( params.empty() );
return true;
} );
r.add( "GET"sv, "/"sv, [](const Request&, auto params)
{
REQUIRE( params.empty() );
return true;
} );
r.add( "GET"sv, "/{filename}"sv, [](const Request&, auto params)
{
REQUIRE( params.size() == 1 );
REQUIRE( params.contains( "filename" ) );
return true;
} );
WHEN( "Checking /service/candy/lollipop" )
{
auto url = "/service/candy/lollipop"s;
auto resp = r.route( "GET"s, url, request );
REQUIRE( resp );
REQUIRE( *resp );
auto [p, m] = r.canRoute( "GET", url );
CHECK( p );
CHECK( m );
}
AND_WHEN( "Checking /service/candy/gum" )
{
auto url = "/service/candy/gum"s;
auto resp = r.route( "GET"s, url, request );
REQUIRE( resp );
REQUIRE( *resp );
auto [p, m] = r.canRoute( "GET", url );
CHECK( p );
CHECK( m );
}
AND_WHEN( "Checking /service/candy/seg_råtta" )
{
auto url = "/service/candy/seg_råtta"s;
auto resp = r.route( "GET"s, url, request );
REQUIRE( resp );
REQUIRE( *resp );
auto [p, m] = r.canRoute( "GET", url );
CHECK( p );
CHECK( m );
}
AND_WHEN( "Checking /service/candy/lakrits" )
{
auto url = "/service/candy/lakrits"s;
auto resp = r.route( "GET"s, url, request );
REQUIRE( resp );
REQUIRE( *resp );
auto [p, m] = r.canRoute( "GET", url );
CHECK( p );
CHECK( m );
}
AND_WHEN( "Checking /service/shutdown" )
{
auto url = "/service/shutdown"s;
auto resp = r.route( "GET"s, url, request );
REQUIRE( resp );
REQUIRE( *resp );
auto [p, m] = r.canRoute( "GET", url );
CHECK( p );
CHECK( m );
}
AND_WHEN( "Checking /" )
{
auto url = "/"s;
auto resp = r.route( "GET"s, url, request );
REQUIRE( resp );
REQUIRE( *resp );
auto [p, m] = r.canRoute( "GET", url );
CHECK( p );
CHECK( m );
}
AND_WHEN( "Checking /some_file.html" )
{
auto url = "/some_file.html"s;
auto resp = r.route( "GET"s, url, request );
REQUIRE( *resp );
auto [p, m] = r.canRoute( "GET", url );
CHECK( p );
CHECK( m );
}
AND_WHEN( "Checking /another_file.jpeg" )
{
auto url = "/another_file.jpeg"s;
auto resp = r.route( "GET"s, url, request );
REQUIRE( resp );
REQUIRE( *resp );
auto [p, m] = r.canRoute( "GET", url );
CHECK( p );
CHECK( m );
}
}
GIVEN( "Router configured with paths with trailing slash" )
{
spt::http::router::HttpRouter<const Request&, bool> r;
auto method = "POST"sv;
r.add( method, "/path/entity/"sv, []( const Request&, auto&& ) { return true; } );
WHEN( "Checking root paths" )
{
auto resp = r.route( method, "/path/entity", request );
REQUIRE( resp );
REQUIRE( *resp );
{
auto [p, m] = r.canRoute( method, "/path/entity" );
CHECK( p );
CHECK( m );
}
resp = r.route( method, "/path/entity/", request );
REQUIRE( resp );
REQUIRE( *resp );
{
auto [p, m] = r.canRoute( method, "/path/entity/" );
CHECK( p );
CHECK( m );
}
resp = r.route( method, "/path/entity/id", request );
REQUIRE_FALSE( resp );
{
auto [p, m] = r.canRoute( method, "/path/entity/id" );
CHECK_FALSE( p );
CHECK_FALSE( m );
}
resp = r.route( method, "/path/entity/id/abc", request );
REQUIRE_FALSE( resp );
{
auto [p, m] = r.canRoute( method, "/path/entity/id/abc" );
CHECK_FALSE( p );
CHECK_FALSE( m );
}
resp = r.route( method, "/path/", request );
REQUIRE_FALSE( resp );
{
auto [p, m] = r.canRoute( method, "/path/" );
CHECK_FALSE( p );
CHECK_FALSE( m );
}
}
}
GIVEN( "Router configured with paths without trailing slash" )
{
spt::http::router::HttpRouter<const Request&, bool> r;
auto method = "POST"sv;
r.add( method, "/path/entity"sv, []( const Request&, auto&& ) { return true; } );
WHEN( "Checking root paths" )
{
auto resp = r.route( method, "/path/entity", request );
REQUIRE( resp );
REQUIRE( *resp );
resp = r.route( method, "/path/entity/", request, true );
REQUIRE( resp );
REQUIRE( *resp );
resp = r.route( method, "/path/entity/id", request );
REQUIRE_FALSE( resp );
resp = r.route( method, "/path/entity/id/abc", request );
REQUIRE_FALSE( resp );
resp = r.route( method, "/path/", request );
REQUIRE_FALSE( resp );
}
}
}