route_downcaser 1.2.1 → 1.2.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 81e101b5158e1d2e72aeb09d7ed1aca2789a1fb7
4
- data.tar.gz: 2794fd794689957c772cf30cc59a9e03ee7db2de
3
+ metadata.gz: 4b855f75d2262ba922dbb65614ac8ee7f4d2937f
4
+ data.tar.gz: 65bc40f3240225100440c32cc52321a7a6dd8dd2
5
5
  SHA512:
6
- metadata.gz: 0487b13866a4fa2b414fd03386c02020c11a1a57424f81265f65da0c76e150a6ff77f3300037346523dfa0e9478f6014e14e75e67ef0aa895261803111ad9d42
7
- data.tar.gz: 517fd343ee7d1d0d9914374df99c6e64f23f67a0dae955f470db48cc0423833fc015776386f27483e4b6239fa35eac3be0554243534123213baac9d5064fe225
6
+ metadata.gz: 36c9a801e5cca3b45014a39303af64d5bb057efff7acab3e757fa8f9a8316ab8b8287e90ce596b59d3bb8d20d41fc8e917b4690fd863123735c355fbc93ee4a2
7
+ data.tar.gz: e798586fe249683b8427b37f9c810af54a3660b3d93e2cde6ddfa1608a3cb84fba0d3a9546343cf46ac5bda4a846a0c1ca5bb7c139fc1a9df6ba8c346ff2ddc3
data/README.rdoc CHANGED
@@ -99,79 +99,3 @@ When Rails introduced Rack middleware, it suddenly became possible to hook into
99
99
  At first I just made this code as a snippet and published it {on my blog}[http://gehling.dk/2010/02/how-to-make-rails-routing-case-insensitive]. But since I found out that many people are actually using this, I finally decided to convert it into a gem.
100
100
 
101
101
  All it really does is to take the path and downcase it before dispatching. Querystring parameters are NOT touched, they keep their casing, since it may have some contextual meaning.
102
-
103
- == Changelog
104
-
105
- === 1.2.1
106
-
107
- Support for Rails 5.1, we now support most recently released versions of Rails 4.2, 5.0, and 5.1. Thanks to {pepawel}[https://github.com/pepawel].
108
-
109
- No more deprecation warnings about passing strings or symbols to the middleware builder. Thanks, {flou}[https://github.com/flou]!
110
-
111
- === 1.2.0
112
-
113
- Support for multibyte characters - dependency on ActiveSupport version 3.2 or later
114
-
115
- === 1.1.5
116
-
117
- Configuration now namespaced to avoid name clashing with other modules. Thanks goes to {tgk}[https://github.com/tgk] for this
118
-
119
- === 1.1.4
120
-
121
- Better solution to the incompatibility issue with Warden. Thank you to {l3akage}[https://github.com/l3akage]
122
-
123
- === 1.1.3
124
-
125
- Fixes issue #14. If Devise/Warden is used in the Rails app, RouteDowncaser::DowncaseRouteMiddleware needs to be inserted before Warden::Manager in the middleware list.
126
-
127
- === 1.1.2
128
-
129
- POST requests must never result in a redirect, even if the config.redirect is true
130
-
131
- More robust test-cases have been added
132
-
133
- === 1.1.1
134
-
135
- Fixed {issue #17}[https://github.com/carstengehling/route_downcaser/issues/17]. Thanks go to {TkiTDO}[https://github.com/TikiTDO]
136
-
137
- === 1.1.0
138
-
139
- Refactored main code and tests for much better structure
140
-
141
- === 1.0.1
142
-
143
- Refactored parts of the code to work with Rails 4.2.0
144
-
145
- New config for ignoring/excluding paths
146
-
147
- === 0.2.2
148
-
149
- Redirection is now possible as a configurable option. Thanks goes to {Mike Ackerman}[https://github.com/mackermedia]
150
-
151
- === 0.2.1
152
-
153
- The gem has now been tested to work with Rails 4.0 (it mostly involved changes in the test dummy-app because of deprecations between Rails 3.2 and 4.0)
154
-
155
- === 0.2.0
156
-
157
- Asset urls are now ignored - important since filesystems may be case sensitive. Thanks goes to {Casey Pugh}[https://github.com/caseypugh]
158
-
159
- === 0.1.2
160
-
161
- Removed silly dependencies (sqlite3, etc.)
162
-
163
- === 0.1.1
164
-
165
- Added documentation README
166
-
167
- === 0.1.0
168
-
169
- First version of gem
170
-
171
- == Feedback
172
-
173
- This is my first published gem, so bear with me, if I have missed some conventions. If you find anything wrong in documentation, code, dependencies, etc. please let me know at mailto:carsten@sarum.dk.
174
-
175
- == License
176
-
177
- MIT License. Copyright 2013 Carsten Gehling. http://gehling.dk
@@ -76,11 +76,11 @@ module RouteDowncaser
76
76
  end
77
77
 
78
78
  def uri_items(uri)
79
- uri.split('?')
79
+ uri.split('?', 2)
80
80
  end
81
81
 
82
82
  def redirect_header(uri)
83
- [301, {'Location' => uri, 'Content-Type' => 'text/html'}, []]
83
+ [301, {'Location' => uri.to_s, 'Content-Type' => 'text/html'}, []]
84
84
  end
85
85
  end
86
86
 
@@ -1,5 +1,4 @@
1
1
  module RouteDowncaser
2
-
3
2
  class OriginalDowncaseRouteMiddleware
4
3
  def initialize(app)
5
4
  @app = app
@@ -14,9 +13,7 @@ module RouteDowncaser
14
13
  path_info = env['PATH_INFO']
15
14
 
16
15
  # Don't touch anything, if uri/path is part of exclude_patterns
17
- if excluded?([request_uri, path_info])
18
- return @app.call(env)
19
- end
16
+ return @app.call(env) if excluded?([request_uri, path_info])
20
17
 
21
18
  # Downcase request_uri and/or path_info if applicable
22
19
  request_uri = downcased_uri(request_uri)
@@ -24,7 +21,7 @@ module RouteDowncaser
24
21
 
25
22
  # If redirect configured, then return redirect request,
26
23
  # if either request_uri or path_info has changed
27
- if RouteDowncaser.redirect && env['REQUEST_METHOD'] == "GET"
24
+ if RouteDowncaser.redirect && env['REQUEST_METHOD'] == 'GET'
28
25
  if request_uri.present? && request_uri != env['REQUEST_URI']
29
26
  return redirect_header(request_uri)
30
27
  end
@@ -45,13 +42,13 @@ module RouteDowncaser
45
42
  private
46
43
 
47
44
  def exclude_patterns_match?(uri)
48
- uri.match(Regexp.union(RouteDowncaser.exclude_patterns)) if uri and RouteDowncaser.exclude_patterns
45
+ uri.match(Regexp.union(RouteDowncaser.exclude_patterns)) if uri && RouteDowncaser.exclude_patterns
49
46
  end
50
47
 
51
48
  def excluded?(paths)
52
- paths.any? { |path|
49
+ paths.any? do |path|
53
50
  exclude_patterns_match?(path)
54
- }
51
+ end
55
52
  end
56
53
 
57
54
  def downcased_uri(uri)
@@ -80,8 +77,7 @@ module RouteDowncaser
80
77
  end
81
78
 
82
79
  def redirect_header(uri)
83
- [301, {'Location' => uri, 'Content-Type' => 'text/html'}, []]
80
+ [301, { 'Location' => uri, 'Content-Type' => 'text/html' }, []]
84
81
  end
85
82
  end
86
-
87
83
  end
@@ -1,3 +1,3 @@
1
1
  module RouteDowncaser
2
- VERSION = "1.2.1"
2
+ VERSION = "1.2.2"
3
3
  end
@@ -1,24 +1,203 @@
1
+ -----------------------------------------------------------------------
2
+ RouteDowncaserTest::BasicTests: test_REQUEST_URI_path-part_is_downcased
3
+ -----------------------------------------------------------------------
4
+ ---------------------------------------------------------------------------------------
5
+ RouteDowncaserTest::BasicTests: test_REQUEST_URI_querystring_parameters_are_not_touched
6
+ ---------------------------------------------------------------------------------------
7
+ -------------------------------------------------------------------------------------
8
+ RouteDowncaserTest::BasicTests: test_REQUEST_URI_querystring_parameters_can_contain_?
9
+ -------------------------------------------------------------------------------------
10
+ ------------------------------------------------------------------
11
+ RouteDowncaserTest::BasicTests: test_entire_PATH_INFO_is_downcased
12
+ ------------------------------------------------------------------
13
+ -----------------------------------------------------------------------------------
14
+ RouteDowncaserTest::BasicTests: test_the_call_environment_should_always_be_returned
15
+ -----------------------------------------------------------------------------------
16
+ -----------------------------------------------------
17
+ RouteMiddlewareTest: test_Assets_are_served_correctly
18
+ -----------------------------------------------------
19
+ Started GET "/assets/application.js" for 127.0.0.1 at 2018-05-10 09:35:02 +0200
20
+ -----------------------------------------------------------
21
+ RouteMiddlewareTest: test_Input_and_output_env_are_the_same
22
+ -----------------------------------------------------------
23
+ -------------------------------------------------------------
24
+ RouteMiddlewareTest: test_Middleware_is_installed_and_working
25
+ -------------------------------------------------------------
26
+ Started GET "/HELLO/WORLD" for 127.0.0.1 at 2018-05-10 09:35:02 +0200
27
+ Processing by HelloController#world as HTML
28
+ Rendering text template
29
+ Rendered text template (0.0ms)
30
+ Completed 200 OK in 10ms (Views: 3.0ms)
31
+ -------------------------------------------------------------------------------------
32
+ RouteMiddlewareTest: test_Only_GET_requests_should_be_redirected,_POST_should_rewrite
33
+ -------------------------------------------------------------------------------------
34
+ Started POST "/HELLO/WORLD" for 127.0.0.1 at 2018-05-10 09:35:02 +0200
35
+ Processing by HelloController#world as HTML
36
+ Rendering text template
37
+ Rendered text template (0.0ms)
38
+ Completed 200 OK in 1ms (Views: 0.3ms)
39
+ -----------------------------------------------------
40
+ RouteMiddlewareTest: test_Redirect_instead_of_rewrite
41
+ -----------------------------------------------------
42
+ Started GET "/HELLO/WORLD" for 127.0.0.1 at 2018-05-10 09:35:02 +0200
43
+ -------------------------------------------------------------------------------------
44
+ RouteDowncaserTest::MultibyteTests: test_Multibyte_REQUEST_URI_path-part_is_downcased
45
+ -------------------------------------------------------------------------------------
46
+ ----------------------------------------------------------------------------
47
+ RouteDowncaserTest::MultibyteTests: test_Additional_multibyte_downcase_tests
48
+ ----------------------------------------------------------------------------
49
+ -------------------------------------------------------------------------
50
+ RouteDowncaserTest::MultibyteTests: test_Multibyte_PATH_INFO_is_downcased
51
+ -------------------------------------------------------------------------
1
52
  ----------------------------------------------------------------------------------------
2
53
  RouteDowncaserTest::RedirectTrueTests: test_when_redirect_is_true_it_redirects_PATH_INFO
3
54
  ----------------------------------------------------------------------------------------
4
55
  ------------------------------------------------------------------------------------------
5
56
  RouteDowncaserTest::RedirectTrueTests: test_when_redirect_is_true_it_redirects_REQUEST_URI
6
57
  ------------------------------------------------------------------------------------------
58
+ ---------------------------------------------------------------------------------------------
59
+ RouteDowncaserTest::ExcludePatternsTests: test_the_call_environment_should_always_be_returned
60
+ ---------------------------------------------------------------------------------------------
61
+ ------------------------------------------------------------------------------------------------------
62
+ RouteDowncaserTest::ExcludePatternsTests: test_when_PATH_INFO_is_found_in_exclude_patterns,_do_nothing
63
+ ------------------------------------------------------------------------------------------------------
64
+ --------------------------------------------------------------------------------------------------------
65
+ RouteDowncaserTest::ExcludePatternsTests: test_when_REQUEST_URI_is_found_in_exclude_patterns,_do_nothing
66
+ --------------------------------------------------------------------------------------------------------
67
+ ------------------------------------------------------------------------------------------------------------------------------------------
68
+ RouteDowncaserTest::RedirectTrueExcludePatternsTests: test_when_redirect_is_true_it_does_not_redirect,_if_PATH_INFO_match_exclude_patterns
69
+ ------------------------------------------------------------------------------------------------------------------------------------------
7
70
  --------------------------------------------------------------------------------------------------------------------------------------------
8
71
  RouteDowncaserTest::RedirectTrueExcludePatternsTests: test_when_redirect_is_true_it_does_not_redirect,_if_REQUEST_URI_match_exclude_patterns
9
72
  --------------------------------------------------------------------------------------------------------------------------------------------
73
+ ------------------------------------------------------------------------------------------
74
+ RouteDowncaserTest::RedirectTrueTests: test_when_redirect_is_true_it_redirects_REQUEST_URI
75
+ ------------------------------------------------------------------------------------------
76
+ ----------------------------------------------------------------------------------------
77
+ RouteDowncaserTest::RedirectTrueTests: test_when_redirect_is_true_it_redirects_PATH_INFO
78
+ ----------------------------------------------------------------------------------------
79
+ -----------------------------------------------------------------------
80
+ RouteDowncaserTest::BasicTests: test_REQUEST_URI_path-part_is_downcased
81
+ -----------------------------------------------------------------------
82
+ ------------------------------------------------------------------
83
+ RouteDowncaserTest::BasicTests: test_entire_PATH_INFO_is_downcased
84
+ ------------------------------------------------------------------
85
+ ---------------------------------------------------------------------------------------
86
+ RouteDowncaserTest::BasicTests: test_REQUEST_URI_querystring_parameters_are_not_touched
87
+ ---------------------------------------------------------------------------------------
88
+ -----------------------------------------------------------------------------------
89
+ RouteDowncaserTest::BasicTests: test_the_call_environment_should_always_be_returned
90
+ -----------------------------------------------------------------------------------
91
+ -------------------------------------------------------------------------------------
92
+ RouteDowncaserTest::BasicTests: test_REQUEST_URI_querystring_parameters_can_contain_?
93
+ -------------------------------------------------------------------------------------
94
+ --------------------------------------------------------------------------------------------------------
95
+ RouteDowncaserTest::ExcludePatternsTests: test_when_REQUEST_URI_is_found_in_exclude_patterns,_do_nothing
96
+ --------------------------------------------------------------------------------------------------------
97
+ ---------------------------------------------------------------------------------------------
98
+ RouteDowncaserTest::ExcludePatternsTests: test_the_call_environment_should_always_be_returned
99
+ ---------------------------------------------------------------------------------------------
100
+ ------------------------------------------------------------------------------------------------------
101
+ RouteDowncaserTest::ExcludePatternsTests: test_when_PATH_INFO_is_found_in_exclude_patterns,_do_nothing
102
+ ------------------------------------------------------------------------------------------------------
103
+ -----------------------------------------------------
104
+ RouteMiddlewareTest: test_Redirect_instead_of_rewrite
105
+ -----------------------------------------------------
106
+ Started GET "/HELLO/WORLD" for 127.0.0.1 at 2018-05-10 09:40:21 +0200
107
+ -----------------------------------------------------
108
+ RouteMiddlewareTest: test_Assets_are_served_correctly
109
+ -----------------------------------------------------
110
+ Started GET "/assets/application.js" for 127.0.0.1 at 2018-05-10 09:40:21 +0200
111
+ -------------------------------------------------------------------------------------
112
+ RouteMiddlewareTest: test_Only_GET_requests_should_be_redirected,_POST_should_rewrite
113
+ -------------------------------------------------------------------------------------
114
+ Started POST "/HELLO/WORLD" for 127.0.0.1 at 2018-05-10 09:40:21 +0200
115
+ Processing by HelloController#world as HTML
116
+ Rendered text template (0.0ms)
117
+ Completed 200 OK in 13ms (Views: 5.4ms)
118
+ -------------------------------------------------------------
119
+ RouteMiddlewareTest: test_Middleware_is_installed_and_working
120
+ -------------------------------------------------------------
121
+ Started GET "/HELLO/WORLD" for 127.0.0.1 at 2018-05-10 09:40:21 +0200
122
+ Processing by HelloController#world as HTML
123
+ Rendered text template (0.0ms)
124
+ Completed 200 OK in 0ms (Views: 0.2ms)
125
+ -----------------------------------------------------------
126
+ RouteMiddlewareTest: test_Input_and_output_env_are_the_same
127
+ -----------------------------------------------------------
128
+ ----------------------------------------------------------------------------
129
+ RouteDowncaserTest::MultibyteTests: test_Additional_multibyte_downcase_tests
130
+ ----------------------------------------------------------------------------
131
+ -------------------------------------------------------------------------
132
+ RouteDowncaserTest::MultibyteTests: test_Multibyte_PATH_INFO_is_downcased
133
+ -------------------------------------------------------------------------
134
+ -------------------------------------------------------------------------------------
135
+ RouteDowncaserTest::MultibyteTests: test_Multibyte_REQUEST_URI_path-part_is_downcased
136
+ -------------------------------------------------------------------------------------
10
137
  ------------------------------------------------------------------------------------------------------------------------------------------
11
138
  RouteDowncaserTest::RedirectTrueExcludePatternsTests: test_when_redirect_is_true_it_does_not_redirect,_if_PATH_INFO_match_exclude_patterns
12
139
  ------------------------------------------------------------------------------------------------------------------------------------------
140
+ --------------------------------------------------------------------------------------------------------------------------------------------
141
+ RouteDowncaserTest::RedirectTrueExcludePatternsTests: test_when_redirect_is_true_it_does_not_redirect,_if_REQUEST_URI_match_exclude_patterns
142
+ --------------------------------------------------------------------------------------------------------------------------------------------
143
+ -----------------------------------------------------
144
+ RouteMiddlewareTest: test_Redirect_instead_of_rewrite
145
+ -----------------------------------------------------
146
+ Started GET "/HELLO/WORLD" for 127.0.0.1 at 2018-05-10 10:27:01 +0200
147
+ -----------------------------------------------------------
148
+ RouteMiddlewareTest: test_Input_and_output_env_are_the_same
149
+ -----------------------------------------------------------
150
+ -----------------------------------------------------
151
+ RouteMiddlewareTest: test_Assets_are_served_correctly
152
+ -----------------------------------------------------
153
+ Started GET "/assets/application.js" for 127.0.0.1 at 2018-05-10 10:27:01 +0200
154
+ -------------------------------------------------------------------------------------
155
+ RouteMiddlewareTest: test_Only_GET_requests_should_be_redirected,_POST_should_rewrite
156
+ -------------------------------------------------------------------------------------
157
+ Started POST "/HELLO/WORLD" for 127.0.0.1 at 2018-05-10 10:27:01 +0200
158
+ Processing by HelloController#world as HTML
159
+ Rendered text template (0.0ms)
160
+ Completed 200 OK in 13ms (Views: 5.5ms)
161
+ -------------------------------------------------------------
162
+ RouteMiddlewareTest: test_Middleware_is_installed_and_working
163
+ -------------------------------------------------------------
164
+ Started GET "/HELLO/WORLD" for 127.0.0.1 at 2018-05-10 10:27:01 +0200
165
+ Processing by HelloController#world as HTML
166
+ Rendered text template (0.0ms)
167
+ Completed 200 OK in 0ms (Views: 0.2ms)
168
+ -------------------------------------------------------------------------------------
169
+ RouteDowncaserTest::BasicTests: test_REQUEST_URI_querystring_parameters_can_contain_?
170
+ -------------------------------------------------------------------------------------
171
+ ------------------------------------------------------------------
172
+ RouteDowncaserTest::BasicTests: test_entire_PATH_INFO_is_downcased
173
+ ------------------------------------------------------------------
174
+ -----------------------------------------------------------------------
175
+ RouteDowncaserTest::BasicTests: test_REQUEST_URI_path-part_is_downcased
176
+ -----------------------------------------------------------------------
177
+ ---------------------------------------------------------------------------------------
178
+ RouteDowncaserTest::BasicTests: test_REQUEST_URI_querystring_parameters_are_not_touched
179
+ ---------------------------------------------------------------------------------------
180
+ -----------------------------------------------------------------------------------
181
+ RouteDowncaserTest::BasicTests: test_the_call_environment_should_always_be_returned
182
+ -----------------------------------------------------------------------------------
183
+ ------------------------------------------------------------------------------------------------------
184
+ RouteDowncaserTest::ExcludePatternsTests: test_when_PATH_INFO_is_found_in_exclude_patterns,_do_nothing
185
+ ------------------------------------------------------------------------------------------------------
13
186
  ---------------------------------------------------------------------------------------------
14
187
  RouteDowncaserTest::ExcludePatternsTests: test_the_call_environment_should_always_be_returned
15
188
  ---------------------------------------------------------------------------------------------
16
189
  --------------------------------------------------------------------------------------------------------
17
190
  RouteDowncaserTest::ExcludePatternsTests: test_when_REQUEST_URI_is_found_in_exclude_patterns,_do_nothing
18
191
  --------------------------------------------------------------------------------------------------------
19
- ------------------------------------------------------------------------------------------------------
20
- RouteDowncaserTest::ExcludePatternsTests: test_when_PATH_INFO_is_found_in_exclude_patterns,_do_nothing
21
- ------------------------------------------------------------------------------------------------------
192
+ ----------------------------------------------------------------------------------------
193
+ RouteDowncaserTest::RedirectTrueTests: test_when_redirect_is_true_it_redirects_PATH_INFO
194
+ ----------------------------------------------------------------------------------------
195
+ ---------------------------------------------------------------------------------------------------
196
+ RouteDowncaserTest::RedirectTrueTests: test_when_redirect_is_true_it_redirecs_Multibyte_REQUEST_URI
197
+ ---------------------------------------------------------------------------------------------------
198
+ ------------------------------------------------------------------------------------------
199
+ RouteDowncaserTest::RedirectTrueTests: test_when_redirect_is_true_it_redirects_REQUEST_URI
200
+ ------------------------------------------------------------------------------------------
22
201
  ----------------------------------------------------------------------------
23
202
  RouteDowncaserTest::MultibyteTests: test_Additional_multibyte_downcase_tests
24
203
  ----------------------------------------------------------------------------
@@ -28,42 +207,842 @@ RouteDowncaserTest::MultibyteTests: test_Multibyte_REQUEST_URI_path-part_is_down
28
207
  -------------------------------------------------------------------------
29
208
  RouteDowncaserTest::MultibyteTests: test_Multibyte_PATH_INFO_is_downcased
30
209
  -------------------------------------------------------------------------
210
+ ------------------------------------------------------------------------------------------------------------------------------------------
211
+ RouteDowncaserTest::RedirectTrueExcludePatternsTests: test_when_redirect_is_true_it_does_not_redirect,_if_PATH_INFO_match_exclude_patterns
212
+ ------------------------------------------------------------------------------------------------------------------------------------------
213
+ --------------------------------------------------------------------------------------------------------------------------------------------
214
+ RouteDowncaserTest::RedirectTrueExcludePatternsTests: test_when_redirect_is_true_it_does_not_redirect,_if_REQUEST_URI_match_exclude_patterns
215
+ --------------------------------------------------------------------------------------------------------------------------------------------
216
+ ------------------------------------------------------------------------------------------------------
217
+ RouteDowncaserTest::ExcludePatternsTests: test_when_PATH_INFO_is_found_in_exclude_patterns,_do_nothing
218
+ ------------------------------------------------------------------------------------------------------
219
+ --------------------------------------------------------------------------------------------------------
220
+ RouteDowncaserTest::ExcludePatternsTests: test_when_REQUEST_URI_is_found_in_exclude_patterns,_do_nothing
221
+ --------------------------------------------------------------------------------------------------------
222
+ ---------------------------------------------------------------------------------------------
223
+ RouteDowncaserTest::ExcludePatternsTests: test_the_call_environment_should_always_be_returned
224
+ ---------------------------------------------------------------------------------------------
225
+ ----------------------------------------------------------------------------
226
+ RouteDowncaserTest::MultibyteTests: test_Additional_multibyte_downcase_tests
227
+ ----------------------------------------------------------------------------
228
+ -------------------------------------------------------------------------
229
+ RouteDowncaserTest::MultibyteTests: test_Multibyte_PATH_INFO_is_downcased
230
+ -------------------------------------------------------------------------
31
231
  -------------------------------------------------------------------------------------
32
- RouteMiddlewareTest: test_Only_GET_requests_should_be_redirected,_POST_should_rewrite
232
+ RouteDowncaserTest::MultibyteTests: test_Multibyte_REQUEST_URI_path-part_is_downcased
33
233
  -------------------------------------------------------------------------------------
34
- Started POST "/HELLO/WORLD" for 127.0.0.1 at 2017-05-27 20:48:14 +0200
35
- Processing by HelloController#world as HTML
36
- Rendering text template
37
- Rendered text template (0.0ms)
38
- Completed 200 OK in 12ms (Views: 4.7ms)
234
+ -----------------------------------------------------------------------
235
+ RouteDowncaserTest::BasicTests: test_REQUEST_URI_path-part_is_downcased
236
+ -----------------------------------------------------------------------
237
+ ---------------------------------------------------------------------------------------
238
+ RouteDowncaserTest::BasicTests: test_REQUEST_URI_querystring_parameters_are_not_touched
239
+ ---------------------------------------------------------------------------------------
240
+ -------------------------------------------------------------------------------------
241
+ RouteDowncaserTest::BasicTests: test_REQUEST_URI_querystring_parameters_can_contain_?
242
+ -------------------------------------------------------------------------------------
243
+ -----------------------------------------------------------------------------------
244
+ RouteDowncaserTest::BasicTests: test_the_call_environment_should_always_be_returned
245
+ -----------------------------------------------------------------------------------
246
+ ------------------------------------------------------------------
247
+ RouteDowncaserTest::BasicTests: test_entire_PATH_INFO_is_downcased
248
+ ------------------------------------------------------------------
249
+ ------------------------------------------------------------------------------------------------------------------------------------------
250
+ RouteDowncaserTest::RedirectTrueExcludePatternsTests: test_when_redirect_is_true_it_does_not_redirect,_if_PATH_INFO_match_exclude_patterns
251
+ ------------------------------------------------------------------------------------------------------------------------------------------
252
+ --------------------------------------------------------------------------------------------------------------------------------------------
253
+ RouteDowncaserTest::RedirectTrueExcludePatternsTests: test_when_redirect_is_true_it_does_not_redirect,_if_REQUEST_URI_match_exclude_patterns
254
+ --------------------------------------------------------------------------------------------------------------------------------------------
255
+ ------------------------------------------------------------------------------------------
256
+ RouteDowncaserTest::RedirectTrueTests: test_when_redirect_is_true_it_redirects_REQUEST_URI
257
+ ------------------------------------------------------------------------------------------
258
+ ---------------------------------------------------------------------------------------------------
259
+ RouteDowncaserTest::RedirectTrueTests: test_when_redirect_is_true_it_redirecs_Multibyte_REQUEST_URI
260
+ ---------------------------------------------------------------------------------------------------
261
+ ----------------------------------------------------------------------------------------
262
+ RouteDowncaserTest::RedirectTrueTests: test_when_redirect_is_true_it_redirects_PATH_INFO
263
+ ----------------------------------------------------------------------------------------
39
264
  -----------------------------------------------------
40
265
  RouteMiddlewareTest: test_Assets_are_served_correctly
41
266
  -----------------------------------------------------
42
- Started GET "/assets/application.js" for 127.0.0.1 at 2017-05-27 20:48:15 +0200
43
- -------------------------------------------------------------
44
- RouteMiddlewareTest: test_Middleware_is_installed_and_working
45
- -------------------------------------------------------------
46
- Started GET "/HELLO/WORLD" for 127.0.0.1 at 2017-05-27 20:48:15 +0200
47
- Processing by HelloController#world as HTML
48
- Rendering text template
49
- Rendered text template (0.0ms)
50
- Completed 200 OK in 1ms (Views: 0.3ms)
267
+ Started GET "/assets/application.js" for 127.0.0.1 at 2018-05-10 10:27:48 +0200
51
268
  -----------------------------------------------------
52
269
  RouteMiddlewareTest: test_Redirect_instead_of_rewrite
53
270
  -----------------------------------------------------
54
- Started GET "/HELLO/WORLD" for 127.0.0.1 at 2017-05-27 20:48:15 +0200
271
+ Started GET "/HELLO/WORLD" for 127.0.0.1 at 2018-05-10 10:27:48 +0200
55
272
  -----------------------------------------------------------
56
273
  RouteMiddlewareTest: test_Input_and_output_env_are_the_same
57
274
  -----------------------------------------------------------
275
+ -------------------------------------------------------------
276
+ RouteMiddlewareTest: test_Middleware_is_installed_and_working
277
+ -------------------------------------------------------------
278
+ Started GET "/HELLO/WORLD" for 127.0.0.1 at 2018-05-10 10:27:48 +0200
279
+ Processing by HelloController#world as HTML
280
+ Rendered text template (0.0ms)
281
+ Completed 200 OK in 13ms (Views: 5.3ms)
282
+ -------------------------------------------------------------------------------------
283
+ RouteMiddlewareTest: test_Only_GET_requests_should_be_redirected,_POST_should_rewrite
284
+ -------------------------------------------------------------------------------------
285
+ Started POST "/HELLO/WORLD" for 127.0.0.1 at 2018-05-10 10:27:48 +0200
286
+ Processing by HelloController#world as HTML
287
+ Rendered text template (0.0ms)
288
+ Completed 200 OK in 0ms (Views: 0.2ms)
289
+ ---------------------------------------------------------------------------------------------------
290
+ RouteDowncaserTest::RedirectTrueTests: test_when_redirect_is_true_it_redirecs_Multibyte_REQUEST_URI
291
+ ---------------------------------------------------------------------------------------------------
292
+ ------------------------------------------------------------------------------------------
293
+ RouteDowncaserTest::RedirectTrueTests: test_when_redirect_is_true_it_redirects_REQUEST_URI
294
+ ------------------------------------------------------------------------------------------
295
+ ----------------------------------------------------------------------------------------
296
+ RouteDowncaserTest::RedirectTrueTests: test_when_redirect_is_true_it_redirects_PATH_INFO
297
+ ----------------------------------------------------------------------------------------
298
+ ------------------------------------------------------------------------------------------------------
299
+ RouteDowncaserTest::ExcludePatternsTests: test_when_PATH_INFO_is_found_in_exclude_patterns,_do_nothing
300
+ ------------------------------------------------------------------------------------------------------
301
+ ---------------------------------------------------------------------------------------------
302
+ RouteDowncaserTest::ExcludePatternsTests: test_the_call_environment_should_always_be_returned
303
+ ---------------------------------------------------------------------------------------------
304
+ --------------------------------------------------------------------------------------------------------
305
+ RouteDowncaserTest::ExcludePatternsTests: test_when_REQUEST_URI_is_found_in_exclude_patterns,_do_nothing
306
+ --------------------------------------------------------------------------------------------------------
58
307
  ------------------------------------------------------------------
59
308
  RouteDowncaserTest::BasicTests: test_entire_PATH_INFO_is_downcased
60
309
  ------------------------------------------------------------------
61
310
  -----------------------------------------------------------------------------------
62
311
  RouteDowncaserTest::BasicTests: test_the_call_environment_should_always_be_returned
63
312
  -----------------------------------------------------------------------------------
64
- ---------------------------------------------------------------------------------------
65
- RouteDowncaserTest::BasicTests: test_REQUEST_URI_querystring_parameters_are_not_touched
66
- ---------------------------------------------------------------------------------------
313
+ -------------------------------------------------------------------------------------
314
+ RouteDowncaserTest::BasicTests: test_REQUEST_URI_querystring_parameters_can_contain_?
315
+ -------------------------------------------------------------------------------------
67
316
  -----------------------------------------------------------------------
68
317
  RouteDowncaserTest::BasicTests: test_REQUEST_URI_path-part_is_downcased
69
318
  -----------------------------------------------------------------------
319
+ ---------------------------------------------------------------------------------------
320
+ RouteDowncaserTest::BasicTests: test_REQUEST_URI_querystring_parameters_are_not_touched
321
+ ---------------------------------------------------------------------------------------
322
+ -------------------------------------------------------------
323
+ RouteMiddlewareTest: test_Middleware_is_installed_and_working
324
+ -------------------------------------------------------------
325
+ Started GET "/HELLO/WORLD" for 127.0.0.1 at 2018-05-10 10:28:14 +0200
326
+ Processing by HelloController#world as HTML
327
+ Rendered text template (0.0ms)
328
+ Completed 200 OK in 13ms (Views: 5.6ms)
329
+ -------------------------------------------------------------------------------------
330
+ RouteMiddlewareTest: test_Only_GET_requests_should_be_redirected,_POST_should_rewrite
331
+ -------------------------------------------------------------------------------------
332
+ Started POST "/HELLO/WORLD" for 127.0.0.1 at 2018-05-10 10:28:14 +0200
333
+ Processing by HelloController#world as HTML
334
+ Rendered text template (0.0ms)
335
+ Completed 200 OK in 0ms (Views: 0.3ms)
336
+ -----------------------------------------------------
337
+ RouteMiddlewareTest: test_Assets_are_served_correctly
338
+ -----------------------------------------------------
339
+ Started GET "/assets/application.js" for 127.0.0.1 at 2018-05-10 10:28:14 +0200
340
+ -----------------------------------------------------------
341
+ RouteMiddlewareTest: test_Input_and_output_env_are_the_same
342
+ -----------------------------------------------------------
343
+ -----------------------------------------------------
344
+ RouteMiddlewareTest: test_Redirect_instead_of_rewrite
345
+ -----------------------------------------------------
346
+ Started GET "/HELLO/WORLD" for 127.0.0.1 at 2018-05-10 10:28:14 +0200
347
+ ----------------------------------------------------------------------------
348
+ RouteDowncaserTest::MultibyteTests: test_Additional_multibyte_downcase_tests
349
+ ----------------------------------------------------------------------------
350
+ -------------------------------------------------------------------------
351
+ RouteDowncaserTest::MultibyteTests: test_Multibyte_PATH_INFO_is_downcased
352
+ -------------------------------------------------------------------------
353
+ -------------------------------------------------------------------------------------
354
+ RouteDowncaserTest::MultibyteTests: test_Multibyte_REQUEST_URI_path-part_is_downcased
355
+ -------------------------------------------------------------------------------------
356
+ --------------------------------------------------------------------------------------------------------------------------------------------
357
+ RouteDowncaserTest::RedirectTrueExcludePatternsTests: test_when_redirect_is_true_it_does_not_redirect,_if_REQUEST_URI_match_exclude_patterns
358
+ --------------------------------------------------------------------------------------------------------------------------------------------
359
+ ------------------------------------------------------------------------------------------------------------------------------------------
360
+ RouteDowncaserTest::RedirectTrueExcludePatternsTests: test_when_redirect_is_true_it_does_not_redirect,_if_PATH_INFO_match_exclude_patterns
361
+ ------------------------------------------------------------------------------------------------------------------------------------------
362
+ -----------------------------------------------------
363
+ RouteMiddlewareTest: test_Assets_are_served_correctly
364
+ -----------------------------------------------------
365
+ Started GET "/assets/application.js" for 127.0.0.1 at 2018-05-10 10:29:05 +0200
366
+ -------------------------------------------------------------
367
+ RouteMiddlewareTest: test_Middleware_is_installed_and_working
368
+ -------------------------------------------------------------
369
+ Started GET "/HELLO/WORLD" for 127.0.0.1 at 2018-05-10 10:29:05 +0200
370
+ Processing by HelloController#world as HTML
371
+ Rendered text template (0.0ms)
372
+ Completed 200 OK in 13ms (Views: 5.3ms)
373
+ -------------------------------------------------------------------------------------
374
+ RouteMiddlewareTest: test_Only_GET_requests_should_be_redirected,_POST_should_rewrite
375
+ -------------------------------------------------------------------------------------
376
+ Started POST "/HELLO/WORLD" for 127.0.0.1 at 2018-05-10 10:29:05 +0200
377
+ Processing by HelloController#world as HTML
378
+ Rendered text template (0.0ms)
379
+ Completed 200 OK in 0ms (Views: 0.2ms)
380
+ -----------------------------------------------------
381
+ RouteMiddlewareTest: test_Redirect_instead_of_rewrite
382
+ -----------------------------------------------------
383
+ Started GET "/HELLO/WORLD" for 127.0.0.1 at 2018-05-10 10:29:05 +0200
384
+ -----------------------------------------------------------
385
+ RouteMiddlewareTest: test_Input_and_output_env_are_the_same
386
+ -----------------------------------------------------------
387
+ ------------------------------------------------------------------------------------------
388
+ RouteDowncaserTest::RedirectTrueTests: test_when_redirect_is_true_it_redirects_REQUEST_URI
389
+ ------------------------------------------------------------------------------------------
390
+ ----------------------------------------------------------------------------------------
391
+ RouteDowncaserTest::RedirectTrueTests: test_when_redirect_is_true_it_redirects_PATH_INFO
392
+ ----------------------------------------------------------------------------------------
393
+ ---------------------------------------------------------------------------------------------------
394
+ RouteDowncaserTest::RedirectTrueTests: test_when_redirect_is_true_it_redirecs_Multibyte_REQUEST_URI
395
+ ---------------------------------------------------------------------------------------------------
396
+ ------------------------------------------------------------------
397
+ RouteDowncaserTest::BasicTests: test_entire_PATH_INFO_is_downcased
398
+ ------------------------------------------------------------------
399
+ ---------------------------------------------------------------------------------------
400
+ RouteDowncaserTest::BasicTests: test_REQUEST_URI_querystring_parameters_are_not_touched
401
+ ---------------------------------------------------------------------------------------
402
+ -----------------------------------------------------------------------
403
+ RouteDowncaserTest::BasicTests: test_REQUEST_URI_path-part_is_downcased
404
+ -----------------------------------------------------------------------
405
+ -------------------------------------------------------------------------------------
406
+ RouteDowncaserTest::BasicTests: test_REQUEST_URI_querystring_parameters_can_contain_?
407
+ -------------------------------------------------------------------------------------
408
+ -----------------------------------------------------------------------------------
409
+ RouteDowncaserTest::BasicTests: test_the_call_environment_should_always_be_returned
410
+ -----------------------------------------------------------------------------------
411
+ ------------------------------------------------------------------------------------------------------------------------------------------
412
+ RouteDowncaserTest::RedirectTrueExcludePatternsTests: test_when_redirect_is_true_it_does_not_redirect,_if_PATH_INFO_match_exclude_patterns
413
+ ------------------------------------------------------------------------------------------------------------------------------------------
414
+ --------------------------------------------------------------------------------------------------------------------------------------------
415
+ RouteDowncaserTest::RedirectTrueExcludePatternsTests: test_when_redirect_is_true_it_does_not_redirect,_if_REQUEST_URI_match_exclude_patterns
416
+ --------------------------------------------------------------------------------------------------------------------------------------------
417
+ --------------------------------------------------------------------------------------------------------
418
+ RouteDowncaserTest::ExcludePatternsTests: test_when_REQUEST_URI_is_found_in_exclude_patterns,_do_nothing
419
+ --------------------------------------------------------------------------------------------------------
420
+ ------------------------------------------------------------------------------------------------------
421
+ RouteDowncaserTest::ExcludePatternsTests: test_when_PATH_INFO_is_found_in_exclude_patterns,_do_nothing
422
+ ------------------------------------------------------------------------------------------------------
423
+ ---------------------------------------------------------------------------------------------
424
+ RouteDowncaserTest::ExcludePatternsTests: test_the_call_environment_should_always_be_returned
425
+ ---------------------------------------------------------------------------------------------
426
+ -------------------------------------------------------------------------
427
+ RouteDowncaserTest::MultibyteTests: test_Multibyte_PATH_INFO_is_downcased
428
+ -------------------------------------------------------------------------
429
+ ----------------------------------------------------------------------------
430
+ RouteDowncaserTest::MultibyteTests: test_Additional_multibyte_downcase_tests
431
+ ----------------------------------------------------------------------------
432
+ -------------------------------------------------------------------------------------
433
+ RouteDowncaserTest::MultibyteTests: test_Multibyte_REQUEST_URI_path-part_is_downcased
434
+ -------------------------------------------------------------------------------------
435
+ ------------------------------------------------------------------------------------------------------------------------------------------
436
+ RouteDowncaserTest::RedirectTrueExcludePatternsTests: test_when_redirect_is_true_it_does_not_redirect,_if_PATH_INFO_match_exclude_patterns
437
+ ------------------------------------------------------------------------------------------------------------------------------------------
438
+ --------------------------------------------------------------------------------------------------------------------------------------------
439
+ RouteDowncaserTest::RedirectTrueExcludePatternsTests: test_when_redirect_is_true_it_does_not_redirect,_if_REQUEST_URI_match_exclude_patterns
440
+ --------------------------------------------------------------------------------------------------------------------------------------------
441
+ -------------------------------------------------------------
442
+ RouteMiddlewareTest: test_Middleware_is_installed_and_working
443
+ -------------------------------------------------------------
444
+ Started GET "/HELLO/WORLD" for 127.0.0.1 at 2018-05-10 10:34:14 +0200
445
+ Processing by HelloController#world as HTML
446
+ Rendered text template (0.0ms)
447
+ Completed 200 OK in 13ms (Views: 5.2ms)
448
+ -----------------------------------------------------------
449
+ RouteMiddlewareTest: test_Input_and_output_env_are_the_same
450
+ -----------------------------------------------------------
451
+ -----------------------------------------------------
452
+ RouteMiddlewareTest: test_Assets_are_served_correctly
453
+ -----------------------------------------------------
454
+ Started GET "/assets/application.js" for 127.0.0.1 at 2018-05-10 10:34:14 +0200
455
+ -------------------------------------------------------------------------------------
456
+ RouteMiddlewareTest: test_Only_GET_requests_should_be_redirected,_POST_should_rewrite
457
+ -------------------------------------------------------------------------------------
458
+ Started POST "/HELLO/WORLD" for 127.0.0.1 at 2018-05-10 10:34:14 +0200
459
+ Processing by HelloController#world as HTML
460
+ Rendered text template (0.0ms)
461
+ Completed 200 OK in 0ms (Views: 0.2ms)
462
+ -----------------------------------------------------
463
+ RouteMiddlewareTest: test_Redirect_instead_of_rewrite
464
+ -----------------------------------------------------
465
+ Started GET "/HELLO/WORLD" for 127.0.0.1 at 2018-05-10 10:34:14 +0200
466
+ -----------------------------------------------------------------------
467
+ RouteDowncaserTest::BasicTests: test_REQUEST_URI_path-part_is_downcased
468
+ -----------------------------------------------------------------------
469
+ ---------------------------------------------------------------------------------------
470
+ RouteDowncaserTest::BasicTests: test_REQUEST_URI_querystring_parameters_are_not_touched
471
+ ---------------------------------------------------------------------------------------
472
+ ------------------------------------------------------------------
473
+ RouteDowncaserTest::BasicTests: test_entire_PATH_INFO_is_downcased
474
+ ------------------------------------------------------------------
475
+ -----------------------------------------------------------------------------------
476
+ RouteDowncaserTest::BasicTests: test_the_call_environment_should_always_be_returned
477
+ -----------------------------------------------------------------------------------
478
+ -------------------------------------------------------------------------------------
479
+ RouteDowncaserTest::BasicTests: test_REQUEST_URI_querystring_parameters_can_contain_?
480
+ -------------------------------------------------------------------------------------
481
+ ---------------------------------------------------------------------------------------------------
482
+ RouteDowncaserTest::RedirectTrueTests: test_when_redirect_is_true_it_redirecs_Multibyte_REQUEST_URI
483
+ ---------------------------------------------------------------------------------------------------
484
+ ------------------------------------------------------------------------------------------
485
+ RouteDowncaserTest::RedirectTrueTests: test_when_redirect_is_true_it_redirects_REQUEST_URI
486
+ ------------------------------------------------------------------------------------------
487
+ ----------------------------------------------------------------------------------------
488
+ RouteDowncaserTest::RedirectTrueTests: test_when_redirect_is_true_it_redirects_PATH_INFO
489
+ ----------------------------------------------------------------------------------------
490
+ -------------------------------------------------------------------------------------------------
491
+ RouteDowncaserTest::RedirectTrueTests: test_when_redirect_is_true_it_redirecs_Multibyte_PATH_INFO
492
+ -------------------------------------------------------------------------------------------------
493
+ ----------------------------------------------------------------------------
494
+ RouteDowncaserTest::MultibyteTests: test_Additional_multibyte_downcase_tests
495
+ ----------------------------------------------------------------------------
496
+ -------------------------------------------------------------------------
497
+ RouteDowncaserTest::MultibyteTests: test_Multibyte_PATH_INFO_is_downcased
498
+ -------------------------------------------------------------------------
499
+ -------------------------------------------------------------------------------------
500
+ RouteDowncaserTest::MultibyteTests: test_Multibyte_REQUEST_URI_path-part_is_downcased
501
+ -------------------------------------------------------------------------------------
502
+ ---------------------------------------------------------------------------------------------
503
+ RouteDowncaserTest::ExcludePatternsTests: test_the_call_environment_should_always_be_returned
504
+ ---------------------------------------------------------------------------------------------
505
+ ------------------------------------------------------------------------------------------------------
506
+ RouteDowncaserTest::ExcludePatternsTests: test_when_PATH_INFO_is_found_in_exclude_patterns,_do_nothing
507
+ ------------------------------------------------------------------------------------------------------
508
+ --------------------------------------------------------------------------------------------------------
509
+ RouteDowncaserTest::ExcludePatternsTests: test_when_REQUEST_URI_is_found_in_exclude_patterns,_do_nothing
510
+ --------------------------------------------------------------------------------------------------------
511
+ -----------------------------------------------------------------------------------
512
+ RouteDowncaserTest::BasicTests: test_the_call_environment_should_always_be_returned
513
+ -----------------------------------------------------------------------------------
514
+ -----------------------------------------------------------------------
515
+ RouteDowncaserTest::BasicTests: test_REQUEST_URI_path-part_is_downcased
516
+ -----------------------------------------------------------------------
517
+ ---------------------------------------------------------------------------------------
518
+ RouteDowncaserTest::BasicTests: test_REQUEST_URI_querystring_parameters_are_not_touched
519
+ ---------------------------------------------------------------------------------------
520
+ -------------------------------------------------------------------------------------
521
+ RouteDowncaserTest::BasicTests: test_REQUEST_URI_querystring_parameters_can_contain_?
522
+ -------------------------------------------------------------------------------------
523
+ ------------------------------------------------------------------
524
+ RouteDowncaserTest::BasicTests: test_entire_PATH_INFO_is_downcased
525
+ ------------------------------------------------------------------
526
+ ------------------------------------------------------------------------------------------------------------------------------------------
527
+ RouteDowncaserTest::RedirectTrueExcludePatternsTests: test_when_redirect_is_true_it_does_not_redirect,_if_PATH_INFO_match_exclude_patterns
528
+ ------------------------------------------------------------------------------------------------------------------------------------------
529
+ --------------------------------------------------------------------------------------------------------------------------------------------
530
+ RouteDowncaserTest::RedirectTrueExcludePatternsTests: test_when_redirect_is_true_it_does_not_redirect,_if_REQUEST_URI_match_exclude_patterns
531
+ --------------------------------------------------------------------------------------------------------------------------------------------
532
+ ---------------------------------------------------------------------------------------------
533
+ RouteDowncaserTest::ExcludePatternsTests: test_the_call_environment_should_always_be_returned
534
+ ---------------------------------------------------------------------------------------------
535
+ ------------------------------------------------------------------------------------------------------
536
+ RouteDowncaserTest::ExcludePatternsTests: test_when_PATH_INFO_is_found_in_exclude_patterns,_do_nothing
537
+ ------------------------------------------------------------------------------------------------------
538
+ --------------------------------------------------------------------------------------------------------
539
+ RouteDowncaserTest::ExcludePatternsTests: test_when_REQUEST_URI_is_found_in_exclude_patterns,_do_nothing
540
+ --------------------------------------------------------------------------------------------------------
541
+ -------------------------------------------------------------
542
+ RouteMiddlewareTest: test_Middleware_is_installed_and_working
543
+ -------------------------------------------------------------
544
+ Started GET "/HELLO/WORLD" for 127.0.0.1 at 2018-05-10 10:35:07 +0200
545
+ Processing by HelloController#world as HTML
546
+ Rendered text template (0.0ms)
547
+ Completed 200 OK in 12ms (Views: 4.8ms)
548
+ -------------------------------------------------------------------------------------
549
+ RouteMiddlewareTest: test_Only_GET_requests_should_be_redirected,_POST_should_rewrite
550
+ -------------------------------------------------------------------------------------
551
+ Started POST "/HELLO/WORLD" for 127.0.0.1 at 2018-05-10 10:35:07 +0200
552
+ Processing by HelloController#world as HTML
553
+ Rendered text template (0.0ms)
554
+ Completed 200 OK in 0ms (Views: 0.2ms)
555
+ -----------------------------------------------------------
556
+ RouteMiddlewareTest: test_Input_and_output_env_are_the_same
557
+ -----------------------------------------------------------
558
+ -----------------------------------------------------
559
+ RouteMiddlewareTest: test_Assets_are_served_correctly
560
+ -----------------------------------------------------
561
+ Started GET "/assets/application.js" for 127.0.0.1 at 2018-05-10 10:35:07 +0200
562
+ -----------------------------------------------------
563
+ RouteMiddlewareTest: test_Redirect_instead_of_rewrite
564
+ -----------------------------------------------------
565
+ Started GET "/HELLO/WORLD" for 127.0.0.1 at 2018-05-10 10:35:07 +0200
566
+ -------------------------------------------------------------------------
567
+ RouteDowncaserTest::MultibyteTests: test_Multibyte_PATH_INFO_is_downcased
568
+ -------------------------------------------------------------------------
569
+ ------------------------------------------------------------------------------------------------
570
+ RouteDowncaserTest::MultibyteTests: test_when_redirect_is_true_it_redirecs_Multibyte_REQUEST_URI
571
+ ------------------------------------------------------------------------------------------------
572
+ -------------------------------------------------------------------------------------
573
+ RouteDowncaserTest::MultibyteTests: test_Multibyte_REQUEST_URI_path-part_is_downcased
574
+ -------------------------------------------------------------------------------------
575
+ ----------------------------------------------------------------------------------------------
576
+ RouteDowncaserTest::MultibyteTests: test_when_redirect_is_true_it_redirecs_Multibyte_PATH_INFO
577
+ ----------------------------------------------------------------------------------------------
578
+ ----------------------------------------------------------------------------
579
+ RouteDowncaserTest::MultibyteTests: test_Additional_multibyte_downcase_tests
580
+ ----------------------------------------------------------------------------
581
+ ----------------------------------------------------------------------------------------
582
+ RouteDowncaserTest::RedirectTrueTests: test_when_redirect_is_true_it_redirects_PATH_INFO
583
+ ----------------------------------------------------------------------------------------
584
+ ------------------------------------------------------------------------------------------
585
+ RouteDowncaserTest::RedirectTrueTests: test_when_redirect_is_true_it_redirects_REQUEST_URI
586
+ ------------------------------------------------------------------------------------------
587
+ -------------------------------------------------------------------------------------------------
588
+ RouteDowncaserTest::MultibyteTests: test_when_redirect_is_true_it_redirects_Multibyte_REQUEST_URI
589
+ -------------------------------------------------------------------------------------------------
590
+ -------------------------------------------------------------------------------------
591
+ RouteDowncaserTest::MultibyteTests: test_Multibyte_REQUEST_URI_path-part_is_downcased
592
+ -------------------------------------------------------------------------------------
593
+ -----------------------------------------------------------------------------------------------
594
+ RouteDowncaserTest::MultibyteTests: test_when_redirect_is_true_it_redirects_Multibyte_PATH_INFO
595
+ -----------------------------------------------------------------------------------------------
596
+ ----------------------------------------------------------------------------
597
+ RouteDowncaserTest::MultibyteTests: test_Additional_multibyte_downcase_tests
598
+ ----------------------------------------------------------------------------
599
+ -------------------------------------------------------------------------
600
+ RouteDowncaserTest::MultibyteTests: test_Multibyte_PATH_INFO_is_downcased
601
+ -------------------------------------------------------------------------
602
+ ------------------------------------------------------------------------------------------------------------------------------------------
603
+ RouteDowncaserTest::RedirectTrueExcludePatternsTests: test_when_redirect_is_true_it_does_not_redirect,_if_PATH_INFO_match_exclude_patterns
604
+ ------------------------------------------------------------------------------------------------------------------------------------------
605
+ --------------------------------------------------------------------------------------------------------------------------------------------
606
+ RouteDowncaserTest::RedirectTrueExcludePatternsTests: test_when_redirect_is_true_it_does_not_redirect,_if_REQUEST_URI_match_exclude_patterns
607
+ --------------------------------------------------------------------------------------------------------------------------------------------
608
+ -----------------------------------------------------------------------------------
609
+ RouteDowncaserTest::BasicTests: test_the_call_environment_should_always_be_returned
610
+ -----------------------------------------------------------------------------------
611
+ -------------------------------------------------------------------------------------
612
+ RouteDowncaserTest::BasicTests: test_REQUEST_URI_querystring_parameters_can_contain_?
613
+ -------------------------------------------------------------------------------------
614
+ ---------------------------------------------------------------------------------------
615
+ RouteDowncaserTest::BasicTests: test_REQUEST_URI_querystring_parameters_are_not_touched
616
+ ---------------------------------------------------------------------------------------
617
+ ------------------------------------------------------------------
618
+ RouteDowncaserTest::BasicTests: test_entire_PATH_INFO_is_downcased
619
+ ------------------------------------------------------------------
620
+ -----------------------------------------------------------------------
621
+ RouteDowncaserTest::BasicTests: test_REQUEST_URI_path-part_is_downcased
622
+ -----------------------------------------------------------------------
623
+ ------------------------------------------------------------------------------------------------------
624
+ RouteDowncaserTest::ExcludePatternsTests: test_when_PATH_INFO_is_found_in_exclude_patterns,_do_nothing
625
+ ------------------------------------------------------------------------------------------------------
626
+ ---------------------------------------------------------------------------------------------
627
+ RouteDowncaserTest::ExcludePatternsTests: test_the_call_environment_should_always_be_returned
628
+ ---------------------------------------------------------------------------------------------
629
+ --------------------------------------------------------------------------------------------------------
630
+ RouteDowncaserTest::ExcludePatternsTests: test_when_REQUEST_URI_is_found_in_exclude_patterns,_do_nothing
631
+ --------------------------------------------------------------------------------------------------------
632
+ -----------------------------------------------------
633
+ RouteMiddlewareTest: test_Assets_are_served_correctly
634
+ -----------------------------------------------------
635
+ Started GET "/assets/application.js" for 127.0.0.1 at 2018-05-10 10:36:37 +0200
636
+ -------------------------------------------------------------------------------------
637
+ RouteMiddlewareTest: test_Only_GET_requests_should_be_redirected,_POST_should_rewrite
638
+ -------------------------------------------------------------------------------------
639
+ Started POST "/HELLO/WORLD" for 127.0.0.1 at 2018-05-10 10:36:38 +0200
640
+ Processing by HelloController#world as HTML
641
+ Rendered text template (0.0ms)
642
+ Completed 200 OK in 12ms (Views: 4.9ms)
643
+ -----------------------------------------------------
644
+ RouteMiddlewareTest: test_Redirect_instead_of_rewrite
645
+ -----------------------------------------------------
646
+ Started GET "/HELLO/WORLD" for 127.0.0.1 at 2018-05-10 10:36:38 +0200
647
+ -----------------------------------------------------------
648
+ RouteMiddlewareTest: test_Input_and_output_env_are_the_same
649
+ -----------------------------------------------------------
650
+ -------------------------------------------------------------
651
+ RouteMiddlewareTest: test_Middleware_is_installed_and_working
652
+ -------------------------------------------------------------
653
+ Started GET "/HELLO/WORLD" for 127.0.0.1 at 2018-05-10 10:36:38 +0200
654
+ Processing by HelloController#world as HTML
655
+ Rendered text template (0.0ms)
656
+ Completed 200 OK in 0ms (Views: 0.2ms)
657
+ ------------------------------------------------------------------------------------------
658
+ RouteDowncaserTest::RedirectTrueTests: test_when_redirect_is_true_it_redirects_REQUEST_URI
659
+ ------------------------------------------------------------------------------------------
660
+ ----------------------------------------------------------------------------------------
661
+ RouteDowncaserTest::RedirectTrueTests: test_when_redirect_is_true_it_redirects_PATH_INFO
662
+ ----------------------------------------------------------------------------------------
663
+ ------------------------------------------------------------------------------------------------------
664
+ RouteDowncaserTest::ExcludePatternsTests: test_when_PATH_INFO_is_found_in_exclude_patterns,_do_nothing
665
+ ------------------------------------------------------------------------------------------------------
666
+ ---------------------------------------------------------------------------------------------
667
+ RouteDowncaserTest::ExcludePatternsTests: test_the_call_environment_should_always_be_returned
668
+ ---------------------------------------------------------------------------------------------
669
+ --------------------------------------------------------------------------------------------------------
670
+ RouteDowncaserTest::ExcludePatternsTests: test_when_REQUEST_URI_is_found_in_exclude_patterns,_do_nothing
671
+ --------------------------------------------------------------------------------------------------------
672
+ ----------------------------------------------------------------------------
673
+ RouteDowncaserTest::MultibyteTests: test_Additional_multibyte_downcase_tests
674
+ ----------------------------------------------------------------------------
675
+ -------------------------------------------------------------------------
676
+ RouteDowncaserTest::MultibyteTests: test_Multibyte_PATH_INFO_is_downcased
677
+ -------------------------------------------------------------------------
678
+ -------------------------------------------------------------------------------------
679
+ RouteDowncaserTest::MultibyteTests: test_Multibyte_REQUEST_URI_path-part_is_downcased
680
+ -------------------------------------------------------------------------------------
681
+ -------------------------------------------------------------------------------------------------
682
+ RouteDowncaserTest::MultibyteTests: test_when_redirect_is_true_it_redirects_Multibyte_REQUEST_URI
683
+ -------------------------------------------------------------------------------------------------
684
+ -----------------------------------------------------------------------------------------------
685
+ RouteDowncaserTest::MultibyteTests: test_when_redirect_is_true_it_redirects_Multibyte_PATH_INFO
686
+ -----------------------------------------------------------------------------------------------
687
+ ---------------------------------------------------------------------------------
688
+ RouteDowncaserTest::MultibyteRedirectTests: test_it_redirects_Multibyte_PATH_INFO
689
+ ---------------------------------------------------------------------------------
690
+ -----------------------------------------------------------------------------------
691
+ RouteDowncaserTest::MultibyteRedirectTests: test_it_redirects_Multibyte_REQUEST_URI
692
+ -----------------------------------------------------------------------------------
693
+ ----------------------------------------------------------------------------------------
694
+ RouteDowncaserTest::RedirectTrueTests: test_when_redirect_is_true_it_redirects_PATH_INFO
695
+ ----------------------------------------------------------------------------------------
696
+ ------------------------------------------------------------------------------------------
697
+ RouteDowncaserTest::RedirectTrueTests: test_when_redirect_is_true_it_redirects_REQUEST_URI
698
+ ------------------------------------------------------------------------------------------
699
+ -----------------------------------------------------------------------
700
+ RouteDowncaserTest::BasicTests: test_REQUEST_URI_path-part_is_downcased
701
+ -----------------------------------------------------------------------
702
+ ---------------------------------------------------------------------------------------
703
+ RouteDowncaserTest::BasicTests: test_REQUEST_URI_querystring_parameters_are_not_touched
704
+ ---------------------------------------------------------------------------------------
705
+ -----------------------------------------------------------------------------------
706
+ RouteDowncaserTest::BasicTests: test_the_call_environment_should_always_be_returned
707
+ -----------------------------------------------------------------------------------
708
+ -------------------------------------------------------------------------------------
709
+ RouteDowncaserTest::BasicTests: test_REQUEST_URI_querystring_parameters_can_contain_?
710
+ -------------------------------------------------------------------------------------
711
+ ------------------------------------------------------------------
712
+ RouteDowncaserTest::BasicTests: test_entire_PATH_INFO_is_downcased
713
+ ------------------------------------------------------------------
714
+ --------------------------------------------------------------------------------------------------------------------------------------------
715
+ RouteDowncaserTest::RedirectTrueExcludePatternsTests: test_when_redirect_is_true_it_does_not_redirect,_if_REQUEST_URI_match_exclude_patterns
716
+ --------------------------------------------------------------------------------------------------------------------------------------------
717
+ ------------------------------------------------------------------------------------------------------------------------------------------
718
+ RouteDowncaserTest::RedirectTrueExcludePatternsTests: test_when_redirect_is_true_it_does_not_redirect,_if_PATH_INFO_match_exclude_patterns
719
+ ------------------------------------------------------------------------------------------------------------------------------------------
720
+ -----------------------------------------------------------
721
+ RouteMiddlewareTest: test_Input_and_output_env_are_the_same
722
+ -----------------------------------------------------------
723
+ -----------------------------------------------------
724
+ RouteMiddlewareTest: test_Redirect_instead_of_rewrite
725
+ -----------------------------------------------------
726
+ Started GET "/HELLO/WORLD" for 127.0.0.1 at 2018-05-10 10:37:25 +0200
727
+ -----------------------------------------------------
728
+ RouteMiddlewareTest: test_Assets_are_served_correctly
729
+ -----------------------------------------------------
730
+ Started GET "/assets/application.js" for 127.0.0.1 at 2018-05-10 10:37:25 +0200
731
+ -------------------------------------------------------------
732
+ RouteMiddlewareTest: test_Middleware_is_installed_and_working
733
+ -------------------------------------------------------------
734
+ Started GET "/HELLO/WORLD" for 127.0.0.1 at 2018-05-10 10:37:25 +0200
735
+ Processing by HelloController#world as HTML
736
+ Rendered text template (0.0ms)
737
+ Completed 200 OK in 14ms (Views: 6.0ms)
738
+ -------------------------------------------------------------------------------------
739
+ RouteMiddlewareTest: test_Only_GET_requests_should_be_redirected,_POST_should_rewrite
740
+ -------------------------------------------------------------------------------------
741
+ Started POST "/HELLO/WORLD" for 127.0.0.1 at 2018-05-10 10:37:25 +0200
742
+ Processing by HelloController#world as HTML
743
+ Rendered text template (0.0ms)
744
+ Completed 200 OK in 1ms (Views: 0.3ms)
745
+ -------------------------------------------------------------
746
+ RouteMiddlewareTest: test_Middleware_is_installed_and_working
747
+ -------------------------------------------------------------
748
+ Started GET "/HELLO/WORLD" for 127.0.0.1 at 2018-05-10 10:37:41 +0200
749
+ Processing by HelloController#world as HTML
750
+ Rendered text template (0.0ms)
751
+ Completed 200 OK in 12ms (Views: 5.3ms)
752
+ -----------------------------------------------------
753
+ RouteMiddlewareTest: test_Assets_are_served_correctly
754
+ -----------------------------------------------------
755
+ Started GET "/assets/application.js" for 127.0.0.1 at 2018-05-10 10:37:41 +0200
756
+ -----------------------------------------------------------
757
+ RouteMiddlewareTest: test_Input_and_output_env_are_the_same
758
+ -----------------------------------------------------------
759
+ -------------------------------------------------------------------------------------
760
+ RouteMiddlewareTest: test_Only_GET_requests_should_be_redirected,_POST_should_rewrite
761
+ -------------------------------------------------------------------------------------
762
+ Started POST "/HELLO/WORLD" for 127.0.0.1 at 2018-05-10 10:37:41 +0200
763
+ Processing by HelloController#world as HTML
764
+ Rendered text template (0.0ms)
765
+ Completed 200 OK in 0ms (Views: 0.2ms)
766
+ -----------------------------------------------------
767
+ RouteMiddlewareTest: test_Redirect_instead_of_rewrite
768
+ -----------------------------------------------------
769
+ Started GET "/HELLO/WORLD" for 127.0.0.1 at 2018-05-10 10:37:41 +0200
770
+ ------------------------------------------------------------------
771
+ RouteDowncaserTest::BasicTests: test_entire_PATH_INFO_is_downcased
772
+ ------------------------------------------------------------------
773
+ -----------------------------------------------------------------------------------
774
+ RouteDowncaserTest::BasicTests: test_the_call_environment_should_always_be_returned
775
+ -----------------------------------------------------------------------------------
776
+ -------------------------------------------------------------------------------------
777
+ RouteDowncaserTest::BasicTests: test_REQUEST_URI_querystring_parameters_can_contain_?
778
+ -------------------------------------------------------------------------------------
779
+ -----------------------------------------------------------------------
780
+ RouteDowncaserTest::BasicTests: test_REQUEST_URI_path-part_is_downcased
781
+ -----------------------------------------------------------------------
782
+ ---------------------------------------------------------------------------------------
783
+ RouteDowncaserTest::BasicTests: test_REQUEST_URI_querystring_parameters_are_not_touched
784
+ ---------------------------------------------------------------------------------------
785
+ ----------------------------------------------------------------------------
786
+ RouteDowncaserTest::MultibyteTests: test_Additional_multibyte_downcase_tests
787
+ ----------------------------------------------------------------------------
788
+ -------------------------------------------------------------------------
789
+ RouteDowncaserTest::MultibyteTests: test_Multibyte_PATH_INFO_is_downcased
790
+ -------------------------------------------------------------------------
791
+ -------------------------------------------------------------------------------------
792
+ RouteDowncaserTest::MultibyteTests: test_Multibyte_REQUEST_URI_path-part_is_downcased
793
+ -------------------------------------------------------------------------------------
794
+ --------------------------------------------------------------------------------------------------------------------------------------------
795
+ RouteDowncaserTest::RedirectTrueExcludePatternsTests: test_when_redirect_is_true_it_does_not_redirect,_if_REQUEST_URI_match_exclude_patterns
796
+ --------------------------------------------------------------------------------------------------------------------------------------------
797
+ ------------------------------------------------------------------------------------------------------------------------------------------
798
+ RouteDowncaserTest::RedirectTrueExcludePatternsTests: test_when_redirect_is_true_it_does_not_redirect,_if_PATH_INFO_match_exclude_patterns
799
+ ------------------------------------------------------------------------------------------------------------------------------------------
800
+ ----------------------------------------------------------------------------------------
801
+ RouteDowncaserTest::RedirectTrueTests: test_when_redirect_is_true_it_redirects_PATH_INFO
802
+ ----------------------------------------------------------------------------------------
803
+ ------------------------------------------------------------------------------------------
804
+ RouteDowncaserTest::RedirectTrueTests: test_when_redirect_is_true_it_redirects_REQUEST_URI
805
+ ------------------------------------------------------------------------------------------
806
+ --------------------------------------------------------------------------------------------------------
807
+ RouteDowncaserTest::ExcludePatternsTests: test_when_REQUEST_URI_is_found_in_exclude_patterns,_do_nothing
808
+ --------------------------------------------------------------------------------------------------------
809
+ ---------------------------------------------------------------------------------------------
810
+ RouteDowncaserTest::ExcludePatternsTests: test_the_call_environment_should_always_be_returned
811
+ ---------------------------------------------------------------------------------------------
812
+ ------------------------------------------------------------------------------------------------------
813
+ RouteDowncaserTest::ExcludePatternsTests: test_when_PATH_INFO_is_found_in_exclude_patterns,_do_nothing
814
+ ------------------------------------------------------------------------------------------------------
815
+ ---------------------------------------------------------------------------------
816
+ RouteDowncaserTest::MultibyteRedirectTests: test_it_redirects_Multibyte_PATH_INFO
817
+ ---------------------------------------------------------------------------------
818
+ -----------------------------------------------------------------------------------
819
+ RouteDowncaserTest::MultibyteRedirectTests: test_it_redirects_Multibyte_REQUEST_URI
820
+ -----------------------------------------------------------------------------------
821
+ ------------------------------------------------------------------------------------------------------------------------------------------
822
+ RouteDowncaserTest::RedirectTrueExcludePatternsTests: test_when_redirect_is_true_it_does_not_redirect,_if_PATH_INFO_match_exclude_patterns
823
+ ------------------------------------------------------------------------------------------------------------------------------------------
824
+ --------------------------------------------------------------------------------------------------------------------------------------------
825
+ RouteDowncaserTest::RedirectTrueExcludePatternsTests: test_when_redirect_is_true_it_does_not_redirect,_if_REQUEST_URI_match_exclude_patterns
826
+ --------------------------------------------------------------------------------------------------------------------------------------------
827
+ ----------------------------------------------------------------------------------------
828
+ RouteDowncaserTest::RedirectTrueTests: test_when_redirect_is_true_it_redirects_PATH_INFO
829
+ ----------------------------------------------------------------------------------------
830
+ ------------------------------------------------------------------------------------------
831
+ RouteDowncaserTest::RedirectTrueTests: test_when_redirect_is_true_it_redirects_REQUEST_URI
832
+ ------------------------------------------------------------------------------------------
833
+ ---------------------------------------------------------------------------------
834
+ RouteDowncaserTest::MultibyteRedirectTests: test_it_redirects_Multibyte_PATH_INFO
835
+ ---------------------------------------------------------------------------------
836
+ -----------------------------------------------------------------------------------
837
+ RouteDowncaserTest::MultibyteRedirectTests: test_it_redirects_Multibyte_REQUEST_URI
838
+ -----------------------------------------------------------------------------------
839
+ ----------------------------------------------------------------------------
840
+ RouteDowncaserTest::MultibyteTests: test_Additional_multibyte_downcase_tests
841
+ ----------------------------------------------------------------------------
842
+ -------------------------------------------------------------------------
843
+ RouteDowncaserTest::MultibyteTests: test_Multibyte_PATH_INFO_is_downcased
844
+ -------------------------------------------------------------------------
845
+ -------------------------------------------------------------------------------------
846
+ RouteDowncaserTest::MultibyteTests: test_Multibyte_REQUEST_URI_path-part_is_downcased
847
+ -------------------------------------------------------------------------------------
848
+ -----------------------------------------------------
849
+ RouteMiddlewareTest: test_Assets_are_served_correctly
850
+ -----------------------------------------------------
851
+ Started GET "/assets/application.js" for 127.0.0.1 at 2018-05-10 10:38:20 +0200
852
+ -------------------------------------------------------------
853
+ RouteMiddlewareTest: test_Middleware_is_installed_and_working
854
+ -------------------------------------------------------------
855
+ Started GET "/HELLO/WORLD" for 127.0.0.1 at 2018-05-10 10:38:20 +0200
856
+ Processing by HelloController#world as HTML
857
+ Rendered text template (0.0ms)
858
+ Completed 200 OK in 13ms (Views: 5.9ms)
859
+ -----------------------------------------------------
860
+ RouteMiddlewareTest: test_Redirect_instead_of_rewrite
861
+ -----------------------------------------------------
862
+ Started GET "/HELLO/WORLD" for 127.0.0.1 at 2018-05-10 10:38:20 +0200
863
+ -------------------------------------------------------------------------------------
864
+ RouteMiddlewareTest: test_Only_GET_requests_should_be_redirected,_POST_should_rewrite
865
+ -------------------------------------------------------------------------------------
866
+ Started POST "/HELLO/WORLD" for 127.0.0.1 at 2018-05-10 10:38:20 +0200
867
+ Processing by HelloController#world as HTML
868
+ Rendered text template (0.0ms)
869
+ Completed 200 OK in 1ms (Views: 0.3ms)
870
+ -----------------------------------------------------------
871
+ RouteMiddlewareTest: test_Input_and_output_env_are_the_same
872
+ -----------------------------------------------------------
873
+ -------------------------------------------------------------------------------------
874
+ RouteDowncaserTest::BasicTests: test_REQUEST_URI_querystring_parameters_can_contain_?
875
+ -------------------------------------------------------------------------------------
876
+ -----------------------------------------------------------------------------------
877
+ RouteDowncaserTest::BasicTests: test_the_call_environment_should_always_be_returned
878
+ -----------------------------------------------------------------------------------
879
+ -----------------------------------------------------------------------
880
+ RouteDowncaserTest::BasicTests: test_REQUEST_URI_path-part_is_downcased
881
+ -----------------------------------------------------------------------
882
+ ---------------------------------------------------------------------------------------
883
+ RouteDowncaserTest::BasicTests: test_REQUEST_URI_querystring_parameters_are_not_touched
884
+ ---------------------------------------------------------------------------------------
885
+ ------------------------------------------------------------------
886
+ RouteDowncaserTest::BasicTests: test_entire_PATH_INFO_is_downcased
887
+ ------------------------------------------------------------------
888
+ ---------------------------------------------------------------------------------------------
889
+ RouteDowncaserTest::ExcludePatternsTests: test_the_call_environment_should_always_be_returned
890
+ ---------------------------------------------------------------------------------------------
891
+ ------------------------------------------------------------------------------------------------------
892
+ RouteDowncaserTest::ExcludePatternsTests: test_when_PATH_INFO_is_found_in_exclude_patterns,_do_nothing
893
+ ------------------------------------------------------------------------------------------------------
894
+ --------------------------------------------------------------------------------------------------------
895
+ RouteDowncaserTest::ExcludePatternsTests: test_when_REQUEST_URI_is_found_in_exclude_patterns,_do_nothing
896
+ --------------------------------------------------------------------------------------------------------
897
+ -----------------------------------------------------
898
+ RouteMiddlewareTest: test_Assets_are_served_correctly
899
+ -----------------------------------------------------
900
+ Started GET "/assets/application.js" for 127.0.0.1 at 2018-05-10 10:44:06 +0200
901
+ -------------------------------------------------------------
902
+ RouteMiddlewareTest: test_Middleware_is_installed_and_working
903
+ -------------------------------------------------------------
904
+ Started GET "/HELLO/WORLD" for 127.0.0.1 at 2018-05-10 10:44:06 +0200
905
+ Processing by HelloController#world as HTML
906
+ Rendered text template (0.0ms)
907
+ Completed 200 OK in 13ms (Views: 5.3ms)
908
+ -----------------------------------------------------
909
+ RouteMiddlewareTest: test_Redirect_instead_of_rewrite
910
+ -----------------------------------------------------
911
+ Started GET "/HELLO/WORLD" for 127.0.0.1 at 2018-05-10 10:44:06 +0200
912
+ -------------------------------------------------------------------------------------
913
+ RouteMiddlewareTest: test_Only_GET_requests_should_be_redirected,_POST_should_rewrite
914
+ -------------------------------------------------------------------------------------
915
+ Started POST "/HELLO/WORLD" for 127.0.0.1 at 2018-05-10 10:44:06 +0200
916
+ Processing by HelloController#world as HTML
917
+ Rendered text template (0.0ms)
918
+ Completed 200 OK in 0ms (Views: 0.2ms)
919
+ -----------------------------------------------------------
920
+ RouteMiddlewareTest: test_Input_and_output_env_are_the_same
921
+ -----------------------------------------------------------
922
+ ---------------------------------------------------------------------------------
923
+ RouteDowncaserTest::MultibyteRedirectTests: test_it_redirects_Multibyte_PATH_INFO
924
+ ---------------------------------------------------------------------------------
925
+ -----------------------------------------------------------------------------------
926
+ RouteDowncaserTest::MultibyteRedirectTests: test_it_redirects_Multibyte_REQUEST_URI
927
+ -----------------------------------------------------------------------------------
928
+ --------------------------------------------------------------------------------------------------------
929
+ RouteDowncaserTest::ExcludePatternsTests: test_when_REQUEST_URI_is_found_in_exclude_patterns,_do_nothing
930
+ --------------------------------------------------------------------------------------------------------
931
+ ------------------------------------------------------------------------------------------------------
932
+ RouteDowncaserTest::ExcludePatternsTests: test_when_PATH_INFO_is_found_in_exclude_patterns,_do_nothing
933
+ ------------------------------------------------------------------------------------------------------
934
+ ---------------------------------------------------------------------------------------------
935
+ RouteDowncaserTest::ExcludePatternsTests: test_the_call_environment_should_always_be_returned
936
+ ---------------------------------------------------------------------------------------------
937
+ --------------------------------------------------------------------------------------------------------------------------------------------
938
+ RouteDowncaserTest::RedirectTrueExcludePatternsTests: test_when_redirect_is_true_it_does_not_redirect,_if_REQUEST_URI_match_exclude_patterns
939
+ --------------------------------------------------------------------------------------------------------------------------------------------
940
+ ------------------------------------------------------------------------------------------------------------------------------------------
941
+ RouteDowncaserTest::RedirectTrueExcludePatternsTests: test_when_redirect_is_true_it_does_not_redirect,_if_PATH_INFO_match_exclude_patterns
942
+ ------------------------------------------------------------------------------------------------------------------------------------------
943
+ -------------------------------------------------------------------------------------
944
+ RouteDowncaserTest::MultibyteTests: test_Multibyte_REQUEST_URI_path-part_is_downcased
945
+ -------------------------------------------------------------------------------------
946
+ -------------------------------------------------------------------------
947
+ RouteDowncaserTest::MultibyteTests: test_Multibyte_PATH_INFO_is_downcased
948
+ -------------------------------------------------------------------------
949
+ ----------------------------------------------------------------------------
950
+ RouteDowncaserTest::MultibyteTests: test_Additional_multibyte_downcase_tests
951
+ ----------------------------------------------------------------------------
952
+ ------------------------------------------------------------------------------------------
953
+ RouteDowncaserTest::RedirectTrueTests: test_when_redirect_is_true_it_redirects_REQUEST_URI
954
+ ------------------------------------------------------------------------------------------
955
+ ----------------------------------------------------------------------------------------
956
+ RouteDowncaserTest::RedirectTrueTests: test_when_redirect_is_true_it_redirects_PATH_INFO
957
+ ----------------------------------------------------------------------------------------
958
+ ------------------------------------------------------------------
959
+ RouteDowncaserTest::BasicTests: test_entire_PATH_INFO_is_downcased
960
+ ------------------------------------------------------------------
961
+ -----------------------------------------------------------------------
962
+ RouteDowncaserTest::BasicTests: test_REQUEST_URI_path-part_is_downcased
963
+ -----------------------------------------------------------------------
964
+ ---------------------------------------------------------------------------------------
965
+ RouteDowncaserTest::BasicTests: test_REQUEST_URI_querystring_parameters_are_not_touched
966
+ ---------------------------------------------------------------------------------------
967
+ -------------------------------------------------------------------------------------
968
+ RouteDowncaserTest::BasicTests: test_REQUEST_URI_querystring_parameters_can_contain_?
969
+ -------------------------------------------------------------------------------------
970
+ -----------------------------------------------------------------------------------
971
+ RouteDowncaserTest::BasicTests: test_the_call_environment_should_always_be_returned
972
+ -----------------------------------------------------------------------------------
973
+ -----------------------------------------------------------
974
+ RouteMiddlewareTest: test_Input_and_output_env_are_the_same
975
+ -----------------------------------------------------------
976
+ -------------------------------------------------------------
977
+ RouteMiddlewareTest: test_Middleware_is_installed_and_working
978
+ -------------------------------------------------------------
979
+ Started GET "/HELLO/WORLD" for 127.0.0.1 at 2018-05-10 11:35:55 +0200
980
+ Processing by HelloController#world as HTML
981
+ Rendered text template (0.0ms)
982
+ Completed 200 OK in 13ms (Views: 5.4ms)
983
+ -------------------------------------------------------------------------------------
984
+ RouteMiddlewareTest: test_Only_GET_requests_should_be_redirected,_POST_should_rewrite
985
+ -------------------------------------------------------------------------------------
986
+ Started POST "/HELLO/WORLD" for 127.0.0.1 at 2018-05-10 11:35:55 +0200
987
+ Processing by HelloController#world as HTML
988
+ Rendered text template (0.0ms)
989
+ Completed 200 OK in 0ms (Views: 0.2ms)
990
+ -----------------------------------------------------
991
+ RouteMiddlewareTest: test_Assets_are_served_correctly
992
+ -----------------------------------------------------
993
+ Started GET "/assets/application.js" for 127.0.0.1 at 2018-05-10 11:35:55 +0200
994
+ -----------------------------------------------------
995
+ RouteMiddlewareTest: test_Redirect_instead_of_rewrite
996
+ -----------------------------------------------------
997
+ Started GET "/HELLO/WORLD" for 127.0.0.1 at 2018-05-10 11:35:55 +0200
998
+ -----------------------------------------------------------------------
999
+ RouteDowncaserTest::BasicTests: test_REQUEST_URI_path-part_is_downcased
1000
+ -----------------------------------------------------------------------
1001
+ ---------------------------------------------------------------------------------------
1002
+ RouteDowncaserTest::BasicTests: test_REQUEST_URI_querystring_parameters_are_not_touched
1003
+ ---------------------------------------------------------------------------------------
1004
+ ------------------------------------------------------------------
1005
+ RouteDowncaserTest::BasicTests: test_entire_PATH_INFO_is_downcased
1006
+ ------------------------------------------------------------------
1007
+ -------------------------------------------------------------------------------------
1008
+ RouteDowncaserTest::BasicTests: test_REQUEST_URI_querystring_parameters_can_contain_?
1009
+ -------------------------------------------------------------------------------------
1010
+ -----------------------------------------------------------------------------------
1011
+ RouteDowncaserTest::BasicTests: test_the_call_environment_should_always_be_returned
1012
+ -----------------------------------------------------------------------------------
1013
+ ----------------------------------------------------------------------------------------
1014
+ RouteDowncaserTest::RedirectTrueTests: test_when_redirect_is_true_it_redirects_PATH_INFO
1015
+ ----------------------------------------------------------------------------------------
1016
+ ------------------------------------------------------------------------------------------
1017
+ RouteDowncaserTest::RedirectTrueTests: test_when_redirect_is_true_it_redirects_REQUEST_URI
1018
+ ------------------------------------------------------------------------------------------
1019
+ --------------------------------------------------------------------------------------------------------
1020
+ RouteDowncaserTest::ExcludePatternsTests: test_when_REQUEST_URI_is_found_in_exclude_patterns,_do_nothing
1021
+ --------------------------------------------------------------------------------------------------------
1022
+ ---------------------------------------------------------------------------------------------
1023
+ RouteDowncaserTest::ExcludePatternsTests: test_the_call_environment_should_always_be_returned
1024
+ ---------------------------------------------------------------------------------------------
1025
+ ------------------------------------------------------------------------------------------------------
1026
+ RouteDowncaserTest::ExcludePatternsTests: test_when_PATH_INFO_is_found_in_exclude_patterns,_do_nothing
1027
+ ------------------------------------------------------------------------------------------------------
1028
+ ----------------------------------------------------------------------------
1029
+ RouteDowncaserTest::MultibyteTests: test_Additional_multibyte_downcase_tests
1030
+ ----------------------------------------------------------------------------
1031
+ -------------------------------------------------------------------------------------
1032
+ RouteDowncaserTest::MultibyteTests: test_Multibyte_REQUEST_URI_path-part_is_downcased
1033
+ -------------------------------------------------------------------------------------
1034
+ -------------------------------------------------------------------------
1035
+ RouteDowncaserTest::MultibyteTests: test_Multibyte_PATH_INFO_is_downcased
1036
+ -------------------------------------------------------------------------
1037
+ --------------------------------------------------------------------------------------------------------------------------------------------
1038
+ RouteDowncaserTest::RedirectTrueExcludePatternsTests: test_when_redirect_is_true_it_does_not_redirect,_if_REQUEST_URI_match_exclude_patterns
1039
+ --------------------------------------------------------------------------------------------------------------------------------------------
1040
+ ------------------------------------------------------------------------------------------------------------------------------------------
1041
+ RouteDowncaserTest::RedirectTrueExcludePatternsTests: test_when_redirect_is_true_it_does_not_redirect,_if_PATH_INFO_match_exclude_patterns
1042
+ ------------------------------------------------------------------------------------------------------------------------------------------
1043
+ ---------------------------------------------------------------------------------
1044
+ RouteDowncaserTest::MultibyteRedirectTests: test_it_redirects_Multibyte_PATH_INFO
1045
+ ---------------------------------------------------------------------------------
1046
+ -----------------------------------------------------------------------------------
1047
+ RouteDowncaserTest::MultibyteRedirectTests: test_it_redirects_Multibyte_REQUEST_URI
1048
+ -----------------------------------------------------------------------------------