Moved some PAR stuff
[catagits/Catalyst-Runtime.git] / t / live / component / controller / action / path.t
CommitLineData
dd4e6fd2 1#!perl
2
3use strict;
4use warnings;
5
6use FindBin;
9770ad56 7use lib "$FindBin::Bin/../../../lib";
dd4e6fd2 8
232fd394 9our $iters;
10
11BEGIN { $iters = $ENV{CAT_BENCH_ITERS} || 2; }
12
9e674714 13use Test::More tests => 30*$iters;
dd4e6fd2 14use Catalyst::Test 'TestApp';
15
232fd394 16if ( $ENV{CAT_BENCHMARK} ) {
17 require Benchmark;
5a6c7ff6 18 Benchmark::timethis( $iters, \&run_tests );
232fd394 19}
20else {
21 for ( 1 .. $iters ) {
22 run_tests();
23 }
24}
25
26sub run_tests {
d8c66af5 27 {
28 ok(
29 my $response =
30 request('http://localhost/action/path/a path with spaces'),
31 'Request'
32 );
33 ok( $response->is_success, 'Response Successful 2xx' );
34 is( $response->content_type, 'text/plain', 'Response Content-Type' );
35 is(
36 $response->header('X-Catalyst-Action'),
37 'action/path/a path with spaces',
38 'Test Action'
39 );
40 is(
41 $response->header('X-Test-Class'),
42 'TestApp::Controller::Action::Path',
43 'Test Class'
44 );
45 like(
46 $response->content,
47 qr/^bless\( .* 'Catalyst::Request' \)$/s,
48 'Content is a serialized Catalyst::Request'
49 );
50 }
dd4e6fd2 51
d8c66af5 52 {
53 ok( my $response = request('http://localhost/action/path/åäö'),
54 'Request' );
55 ok( $response->is_success, 'Response Successful 2xx' );
56 is( $response->content_type, 'text/plain', 'Response Content-Type' );
57 is( $response->header('X-Catalyst-Action'),
58 'action/path/åäö', 'Test Action' );
59 is(
60 $response->header('X-Test-Class'),
61 'TestApp::Controller::Action::Path',
62 'Test Class'
63 );
64 like(
65 $response->content,
66 qr/^bless\( .* 'Catalyst::Request' \)$/s,
67 'Content is a serialized Catalyst::Request'
68 );
69 }
b74baa06 70
71 {
72 ok( my $response = request('http://localhost/action/path/'),
73 'Request' );
74 ok( $response->is_success, 'Response Successful 2xx' );
75 is( $response->content_type, 'text/plain', 'Response Content-Type' );
76 is( $response->header('X-Catalyst-Action'),
77 'action/path', 'Test Action' );
78 is(
79 $response->header('X-Test-Class'),
80 'TestApp::Controller::Action::Path',
81 'Test Class'
82 );
83 like(
84 $response->content,
85 qr/^bless\( .* 'Catalyst::Request' \)$/s,
86 'Content is a serialized Catalyst::Request'
87 );
88 }
9e674714 89
90 {
91 ok( my $response = request('http://localhost/action/path/spaces_near_parens_singleq'),
92 'Request' );
93 ok( $response->is_success, 'Response Successful 2xx' );
94 is( $response->content_type, 'text/plain', 'Response Content-Type' );
95 is( $response->header('X-Catalyst-Action'),
96 'action/path/spaces_near_parens_singleq', 'Test Action' );
97 is(
98 $response->header('X-Test-Class'),
99 'TestApp::Controller::Action::Path',
100 'Test Class'
101 );
102 like(
103 $response->content,
104 qr/^bless\( .* 'Catalyst::Request' \)$/s,
105 'Content is a serialized Catalyst::Request'
106 );
107 }
108
109 {
110 ok( my $response = request('http://localhost/action/path/spaces_near_parens_doubleq'),
111 'Request' );
112 ok( $response->is_success, 'Response Successful 2xx' );
113 is( $response->content_type, 'text/plain', 'Response Content-Type' );
114 is( $response->header('X-Catalyst-Action'),
115 'action/path/spaces_near_parens_doubleq', 'Test Action' );
116 is(
117 $response->header('X-Test-Class'),
118 'TestApp::Controller::Action::Path',
119 'Test Class'
120 );
121 like(
122 $response->content,
123 qr/^bless\( .* 'Catalyst::Request' \)$/s,
124 'Content is a serialized Catalyst::Request'
125 );
126 }
dd4e6fd2 127}