expand ParamParser comment so nobody breaks it again
[catagits/Web-Simple.git] / t / post.t
1 use strict;
2 use warnings FATAL => 'all';
3
4 use Test::More qw(no_plan);
5
6 {
7   use Web::Simple 'PostTest';
8   package PostTest;
9   sub dispatch_request {
10     sub (%:foo=&:bar~) {
11       $_[1]->{bar} ||= 'EMPTY';
12       [ 200,
13         [ "Content-type" => "text/plain" ],
14         [ join(' ',@{$_[1]}{qw(foo bar)}) ]
15       ]
16     },
17     sub (*baz=) {
18       [ 200,
19         [ "Content-type" => "text/plain" ],
20         [ $_[1]->reason || $_[1]->filename ],
21       ]
22     },
23   }
24 }
25
26 use HTTP::Request::Common qw(GET POST);
27
28 my $app = PostTest->new;
29 sub run_request { $app->run_test_request(@_); }
30
31 my $get = run_request(GET 'http://localhost/');
32
33 cmp_ok($get->code, '==', 404, '404 on GET');
34
35 my $no_body = run_request(POST 'http://localhost/');
36
37 cmp_ok($no_body->code, '==', 404, '404 with empty body');
38
39 my $no_foo = run_request(POST 'http://localhost/' => [ bar => 'BAR' ]);
40
41 cmp_ok($no_foo->code, '==', 404, '404 with no foo param');
42
43 my $no_bar = run_request(POST 'http://localhost/' => [ foo => 'FOO' ]);
44
45 cmp_ok($no_bar->code, '==', 200, '200 with only foo param');
46
47 is($no_bar->content, 'FOO EMPTY', 'bar defaulted');
48
49 my $both = run_request(
50   POST 'http://localhost/' => [ foo => 'FOO', bar => 'BAR' ]
51 );
52
53 cmp_ok($both->code, '==', 200, '200 with both params');
54
55 is($both->content, 'FOO BAR', 'both params returned');
56
57 my $upload = run_request(
58   POST 'http://localhost'
59     => Content_Type => 'form-data'
60     => Content => [
61       foo => 'FOO',
62       bar => 'BAR'
63     ]
64 );
65
66 cmp_ok($upload->code, '==', 200, '200 with multipart');
67
68 is($upload->content, 'FOO BAR', 'both params returned');
69
70 my $upload_wrongtype = run_request(
71   POST 'http://localhost'
72     => [ baz => 'fleem' ]
73 );
74
75 is(
76   $upload_wrongtype->content,
77   'field baz exists with value fleem but body was not multipart/form-data',
78   'error points out wrong body type'
79 );
80
81 my $upload_notupload = run_request(
82   POST 'http://localhost'
83     => Content_Type => 'form-data'
84     => Content => [ baz => 'fleem' ]
85 );
86
87 is(
88   $upload_notupload->content,
89   'field baz exists with value fleem but was not an upload',
90   'error points out field was not an upload'
91 );
92
93 my $upload_isupload = run_request(
94   POST 'http://localhost'
95     => Content_Type => 'form-data'
96     => Content => [
97       baz => [
98         undef, 'TESTFILE',
99         Content => 'test content', 'Content-Type' => 'text/plain'
100       ],
101     ]
102 );
103
104 is(
105   $upload_isupload->content,
106   'TESTFILE',
107   'Actual upload returns filename ok'
108 );