b1bc8596ae94c216be97f4a8138eeed37d4d4135
[catagits/Web-Simple.git] / t / dispatch_parser.t
1 use strict;
2 use warnings FATAL => 'all';
3
4 use Test::More qw(no_plan);
5
6 use Web::Dispatch::Parser;
7
8 my $dp = Web::Dispatch::Parser->new;
9
10 {
11   my $all = $dp->parse('');
12
13   is_deeply(
14     [ $all->({ REQUEST_METHOD => 'GET' }) ],
15     [ {} ],
16     'GET matches'
17   );
18
19   is_deeply(
20     [ $all->({ REQUEST_METHOD => 'POST' }) ],
21     [ {} ],
22     'POST matches'
23   );
24 };
25
26 {
27   my $get = $dp->parse('GET');
28
29   is_deeply(
30     [ $get->({ REQUEST_METHOD => 'GET' }) ],
31     [ {} ],
32     'GET matches'
33   );
34
35   is_deeply(
36     [ $get->({ REQUEST_METHOD => 'POST' }) ],
37     [],
38     'POST does not match'
39   );
40 }
41
42 {
43   my $html = $dp->parse('.html');
44
45   is_deeply(
46     [ $html->({ PATH_INFO => '/foo/bar.html' }) ],
47     [ { } ],
48     '.html matches'
49   );
50
51   is_deeply(
52     [ $html->({ PATH_INFO => '/foo/bar.xml' }) ],
53     [],
54     '.xml does not match .html'
55   );
56 }
57
58 {
59   my $any_ext = $dp->parse('.*');
60
61   is_deeply(
62     [ $any_ext->({ PATH_INFO => '/foo/bar.html' }) ],
63     [ { }, 'html' ],
64     '.html matches .* and extension returned'
65   );
66
67   is_deeply(
68     [ $any_ext->({ PATH_INFO => '/foo/bar' }) ],
69     [],
70     'no extension does not match .*'
71   );
72 }
73
74 {
75   my $slash = $dp->parse('/');
76
77   is_deeply(
78     [ $slash->({ PATH_INFO => '/' }) ],
79     [ {} ],
80     '/ matches /'
81   );
82
83   is_deeply(
84     [ $slash->({ PATH_INFO => '/foo' }) ],
85     [ ],
86     '/foo does not match /'
87   );
88 }
89
90 {
91   my $post = $dp->parse('/post/*');
92
93   is_deeply(
94     [ $post->({ PATH_INFO => '/post/one' }) ],
95     [ {}, 'one' ],
96     '/post/one parses out one'
97   );
98
99   is_deeply(
100     [ $post->({ PATH_INFO => '/post/one/' }) ],
101     [],
102     '/post/one/ does not match'
103   );
104
105   is_deeply(
106     [ $post->({ PATH_INFO => '/post/one.html' }) ],
107     [ {}, 'one' ],
108     '/post/one.html still parses out one'
109   );
110 }
111
112 {
113   my $post = $dp->parse('/foo-bar/*');
114
115   is_deeply(
116     [ $post->({ PATH_INFO => '/foo-bar/one' }) ],
117     [ {}, 'one' ],
118     '/foo-bar/one parses out one'
119   );
120
121   is_deeply(
122     [ $post->({ PATH_INFO => '/foo-bar/one/' }) ],
123     [],
124     '/foo-bar/one/ does not match'
125   );
126 }
127
128 {
129   my $combi = $dp->parse('GET+/post/*');
130
131   is_deeply(
132     [ $combi->({ PATH_INFO => '/post/one', REQUEST_METHOD => 'GET' }) ],
133     [ {}, 'one' ],
134     '/post/one parses out one'
135   );
136
137   is_deeply(
138     [ $combi->({ PATH_INFO => '/post/one/', REQUEST_METHOD => 'GET' }) ],
139     [],
140     '/post/one/ does not match'
141   );
142
143   is_deeply(
144     [ $combi->({ PATH_INFO => '/post/one', REQUEST_METHOD => 'POST' }) ],
145     [],
146     'POST /post/one does not match'
147   );
148 }
149
150 {
151   my $or = $dp->parse('GET|POST');
152
153   foreach my $meth (qw(GET POST)) {
154
155     is_deeply(
156       [ $or->({ REQUEST_METHOD => $meth }) ],
157       [ {} ],
158       'GET|POST matches method '.$meth
159     );
160   }
161
162   is_deeply(
163     [ $or->({ REQUEST_METHOD => 'PUT' }) ],
164     [],
165     'GET|POST does not match PUT'
166   );
167 }
168
169 {
170   my $or = $dp->parse('GET|POST|DELETE');
171
172   foreach my $meth (qw(GET POST DELETE)) {
173
174     is_deeply(
175       [ $or->({ REQUEST_METHOD => $meth }) ],
176       [ {} ],
177       'GET|POST|DELETE matches method '.$meth
178     );
179   }
180
181   is_deeply(
182     [ $or->({ REQUEST_METHOD => 'PUT' }) ],
183     [],
184     'GET|POST|DELETE does not match PUT'
185   );
186 }
187
188 {
189   my $nest = $dp->parse('(GET+/foo)|POST');
190
191   is_deeply(
192     [ $nest->({ PATH_INFO => '/foo', REQUEST_METHOD => 'GET' }) ],
193     [ {} ],
194     '(GET+/foo)|POST matches GET /foo'
195   );
196
197   is_deeply(
198     [ $nest->({ PATH_INFO => '/bar', REQUEST_METHOD => 'GET' }) ],
199     [],
200     '(GET+/foo)|POST does not match GET /bar'
201   );
202
203   is_deeply(
204     [ $nest->({ PATH_INFO => '/bar', REQUEST_METHOD => 'POST' }) ],
205     [ {} ],
206     '(GET+/foo)|POST matches POST /bar'
207   );
208
209   is_deeply(
210     [ $nest->({ PATH_INFO => '/foo', REQUEST_METHOD => 'PUT' }) ],
211     [],
212     '(GET+/foo)|POST does not match PUT /foo'
213   );
214 }
215
216 {
217   local $@;
218   ok(
219     !eval { $dp->parse('/foo+(GET'); 1 },
220     'Death with missing closing )'
221   );
222   my $err = q{
223     /foo+(GET
224          ^
225   };
226   (s/^\n//s,s/\n  $//s,s/^    //mg) for $err;
227   like(
228     $@,
229     qr{\Q$err\E},
230     "Error $@ matches\n${err}\n"
231   );
232 }
233
234 {
235   my $not = $dp->parse('!.html+.*');
236
237   is_deeply(
238     [ $not->({ PATH_INFO => '/foo.xml' }) ],
239     [ {}, 'xml' ],
240     '!.html+.* matches /foo.xml'
241   );
242
243   is_deeply(
244     [ $not->({ PATH_INFO => '/foo.html' }) ],
245     [],
246     '!.html+.* does not match /foo.html'
247   );
248
249   is_deeply(
250     [ $not->({ PATH_INFO => '/foo' }) ],
251     [],
252     '!.html+.* does not match /foo'
253   );
254 }
255
256 {
257   my $ext = $dp->parse('/foo.bar');
258
259   is_deeply(
260     [ $ext->({ PATH_INFO => '/foo.bar' }) ],
261     [ {} ],
262     '/foo.bar matches /foo.bar'
263   );
264
265   is_deeply(
266     [ $ext->({ PATH_INFO => '/foo.bar.ext' }) ],
267     [ {} ],
268     '/foo.bar matches /foo.bar.ext'
269   );
270
271   is_deeply(
272     [ $ext->({ PATH_INFO => '/foo.notbar' }) ],
273     [],
274     '/foo.bar does not match /foo.notbar'
275   );
276 }
277
278 {
279   my $sub = $dp->parse('/foo/*/...');
280
281   is_deeply(
282     [ $sub->({ PATH_INFO => '/foo/1/bar' }) ],
283     [ { PATH_INFO => '/bar', SCRIPT_NAME => '/foo/1' }, 1 ],
284     '/foo/*/... matches /foo/1/bar and strips to /bar'
285   );
286
287   is_deeply(
288     [ $sub->({ PATH_INFO => '/foo/1/' }) ],
289     [ { PATH_INFO => '/', SCRIPT_NAME => '/foo/1' }, 1 ],
290     '/foo/*/... matches /foo/1/bar and strips to /'
291   );
292
293   is_deeply(
294     [ $sub->({ PATH_INFO => '/foo/1' }) ],
295     [],
296     '/foo/*/... does not match /foo/1 (no trailing /)'
297   );
298 }
299
300 {
301   my $sub = $dp->parse('/foo/**/belief');
302   my $match = 'barred/beyond';
303   is_deeply(
304     [ $sub->({ PATH_INFO => "/foo/${match}/belief" }) ],
305     [ {}, $match ],
306     "/foo/**/belief matches /foo/${match}/belief"
307   );
308 }
309
310 {
311   my @dot_pairs = (
312     [ '/one/*' => 'two' ],
313     [ '/one/*.*' => 'two.three' ],
314     [ '/**' => 'one/two' ],
315     [ '/**.*' => 'one/two.three' ],
316   );
317
318   foreach my $p (@dot_pairs) {
319     is_deeply(
320       [ $dp->parse($p->[0])->({ PATH_INFO => '/one/two.three' }) ],
321       [ {}, $p->[1] ],
322       "${\$p->[0]} matches /one/two.three and returns ${\$p->[1]}"
323     );
324   }
325 }
326
327 #
328 # query string
329 #
330
331 my $q = 'foo=FOO&bar=BAR1&baz=one+two&quux=QUUX1&quux=QUUX2'
332   .'&bar=BAR2&quux=QUUX3&evil=%2F';
333
334 my %all_single = (
335   foo => 'FOO',
336   bar => 'BAR2',
337   baz => 'one two',
338   quux => 'QUUX3',
339   evil => '/',
340 );
341
342 my %all_multi = (
343   foo => [ 'FOO' ],
344   bar => [ qw(BAR1 BAR2) ],
345   baz => [ 'one two' ],
346   quux => [ qw(QUUX1 QUUX2 QUUX3) ],
347   evil => [ '/' ],
348 );
349
350 foreach my $lose ('?foo=','?:foo=','?@foo=','?:@foo=') {
351   my $foo = $dp->parse($lose);
352
353   is_deeply(
354     [ $foo->({ QUERY_STRING => '' }) ],
355     [],
356     "${lose} fails with no query"
357   );
358
359   is_deeply(
360     [ $foo->({ QUERY_STRING => 'bar=baz' }) ],
361     [],
362     "${lose} fails with query missing foo key"
363   );
364 }
365
366 foreach my $win (
367   [ '?foo=' => 'FOO' ],
368   [ '?:foo=' => { foo => 'FOO' } ],
369   [ '?spoo~' => undef ],
370   [ '?:spoo~' => {} ],
371   [ '?@spoo~' => [] ],
372   [ '?:@spoo~' => { spoo => [] } ],
373   [ '?bar=' => 'BAR2' ],
374   [ '?:bar=' => { bar => 'BAR2' } ],
375   [ '?@bar=' => [ qw(BAR1 BAR2) ] ],
376   [ '?:@bar=' => { bar => [ qw(BAR1 BAR2) ] } ],
377   [ '?foo=&@bar=' => 'FOO', [ qw(BAR1 BAR2) ] ],
378   [ '?foo=&:@bar=' => 'FOO', { bar => [ qw(BAR1 BAR2) ] } ],
379   [ '?:foo=&:@bar=' => { foo => 'FOO', bar => [ qw(BAR1 BAR2) ] } ],
380   [ '?:baz=&:evil=' => { baz => 'one two', evil => '/' } ],
381   [ '?*' => \%all_single ],
382   [ '?@*' => \%all_multi ],
383   [ '?foo=&@*' => 'FOO', \%all_multi ],
384   [ '?:foo=&@*' => { %all_multi, foo => 'FOO' } ],
385   [ '?:@bar=&*' => { %all_single, bar => [ qw(BAR1 BAR2) ] } ],
386 ) {
387   my ($spec, @res) = @$win;
388   my $match = $dp->parse($spec);
389   #use Data::Dump::Streamer; warn Dump($match);
390   is_deeply(
391     [ $match->({ QUERY_STRING => $q }) ],
392     [ {}, @res ],
393     "${spec} matches correctly"
394   );
395 }
396
397 #
398 # /path/info/ + query string
399 #
400
401 foreach my $lose2 ('/foo/bar/+?foo=','/foo/bar/+?:foo=','/foo/bar/+?@foo=','/foo/bar/+?:@foo=') {
402   my $foo = $dp->parse($lose2);
403
404   is_deeply(
405     [ $foo->({ PATH_INFO => '/foo/bar/', QUERY_STRING => '' }) ],
406     [ ],
407     "${lose2} fails with no query"
408   );
409
410   is_deeply(
411     [ $foo->({ PATH_INFO => '/foo/bar/', QUERY_STRING => 'bar=baz' }) ],
412     [ ],
413     "${lose2} fails with query missing foo key"
414   );
415 }
416
417 foreach my $win2 (
418   [ '/foo/bar/+?foo=' => 'FOO' ],
419   [ '/foo/bar/+?:foo=' => { foo => 'FOO' } ],
420   [ '/foo/bar/+?spoo~' => undef ],
421   [ '/foo/bar/+?:spoo~' => {} ],
422   [ '/foo/bar/+?@spoo~' => [] ],
423   [ '/foo/bar/+?:@spoo~' => { spoo => [] } ],
424   [ '/foo/bar/+?bar=' => 'BAR2' ],
425   [ '/foo/bar/+?:bar=' => { bar => 'BAR2' } ],
426   [ '/foo/bar/+?@bar=' => [ qw(BAR1 BAR2) ] ],
427   [ '/foo/bar/+?:@bar=' => { bar => [ qw(BAR1 BAR2) ] } ],
428   [ '/foo/bar/+?foo=&@bar=' => 'FOO', [ qw(BAR1 BAR2) ] ],
429   [ '/foo/bar/+?foo=&:@bar=' => 'FOO', { bar => [ qw(BAR1 BAR2) ] } ],
430   [ '/foo/bar/+?:foo=&:@bar=' => { foo => 'FOO', bar => [ qw(BAR1 BAR2) ] } ],
431   [ '/foo/bar/+?:baz=&:evil=' => { baz => 'one two', evil => '/' } ],
432   [ '/foo/bar/+?*' => \%all_single ],
433   [ '/foo/bar/+?@*' => \%all_multi ],
434   [ '/foo/bar/+?foo=&@*' => 'FOO', \%all_multi ],
435   [ '/foo/bar/+?:foo=&@*' => { %all_multi, foo => 'FOO' } ],
436   [ '/foo/bar/+?:@bar=&*' => { %all_single, bar => [ qw(BAR1 BAR2) ] } ],
437 ) {
438   my ($spec, @res) = @$win2;
439   my $match = $dp->parse($spec);
440   # use Data::Dump::Streamer; warn Dump($match);
441   is_deeply(
442     [ $match->({ PATH_INFO => '/foo/bar/', QUERY_STRING => $q }) ],
443     [ {}, @res ],
444     "${spec} matches correctly"
445   );
446 }
447
448 #
449 # /path/info + query string
450 #
451
452 foreach my $lose3 ('/foo/bar+?foo=','/foo/bar+?:foo=','/foo/bar+?@foo=','/foo/bar+?:@foo=') {
453   my $foo = $dp->parse($lose3);
454
455   is_deeply(
456     [ $foo->({ PATH_INFO => '/foo/bar', QUERY_STRING => '' }) ],
457     [ ],
458     "${lose3} fails with no query"
459   );
460
461   is_deeply(
462     [ $foo->({ PATH_INFO => '/foo/bar', QUERY_STRING => 'bar=baz' }) ],
463     [ ],
464     "${lose3} fails with query missing foo key"
465   );
466 }
467
468 foreach my $win3 (
469   [ '/foo/bar+?foo=' => 'FOO' ],
470   [ '/foo/bar+?:foo=' => { foo => 'FOO' } ],
471   [ '/foo/bar+?spoo~' => undef ],
472   [ '/foo/bar+?:spoo~' => {} ],
473   [ '/foo/bar+?@spoo~' => [] ],
474   [ '/foo/bar+?:@spoo~' => { spoo => [] } ],
475   [ '/foo/bar+?bar=' => 'BAR2' ],
476   [ '/foo/bar+?:bar=' => { bar => 'BAR2' } ],
477   [ '/foo/bar+?@bar=' => [ qw(BAR1 BAR2) ] ],
478   [ '/foo/bar+?:@bar=' => { bar => [ qw(BAR1 BAR2) ] } ],
479   [ '/foo/bar+?foo=&@bar=' => 'FOO', [ qw(BAR1 BAR2) ] ],
480   [ '/foo/bar+?foo=&:@bar=' => 'FOO', { bar => [ qw(BAR1 BAR2) ] } ],
481   [ '/foo/bar+?:foo=&:@bar=' => { foo => 'FOO', bar => [ qw(BAR1 BAR2) ] } ],
482   [ '/foo/bar+?:baz=&:evil=' => { baz => 'one two', evil => '/' } ],
483   [ '/foo/bar+?*' => \%all_single ],
484   [ '/foo/bar+?@*' => \%all_multi ],
485   [ '/foo/bar+?foo=&@*' => 'FOO', \%all_multi ],
486   [ '/foo/bar+?:foo=&@*' => { %all_multi, foo => 'FOO' } ],
487   [ '/foo/bar+?:@bar=&*' => { %all_single, bar => [ qw(BAR1 BAR2) ] } ],
488 ) {
489   my ($spec, @res) = @$win3;
490   my $match = $dp->parse($spec);
491   # use Data::Dump::Streamer; warn Dump($match);
492   is_deeply(
493     [ $match->({ PATH_INFO => '/foo/bar', QUERY_STRING => $q }) ],
494     [ {}, @res ],
495     "${spec} matches correctly"
496   );
497 }