1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425
|
use Mojo::Base -strict;
# Disable IPv6 and libev
BEGIN {
$ENV{MOJO_NO_IPV6} = 1;
$ENV{MOJO_REACTOR} = 'Mojo::Reactor::Poll';
}
use Test::More tests => 333;
# "Woohoo, time to go clubbin'! Baby seals here I come!"
use Mojolicious::Lite;
use Test::Mojo;
# /rest
under '/rest';
# GET
get sub {
my $self = shift;
$self->respond_to(
json => sub { $self->render_json({just => 'works'}) },
html => sub { $self->render_data('<html><body>works') },
xml => sub { $self->render_data('<just>works</just>') }
);
};
# POST
post sub {
my $self = shift;
$self->respond_to(
json => {json => {just => 'works too'}},
html => {text => '<html><body>works too'},
xml => {data => '<just>works too</just>'},
any => {text => 'works too', status => 201}
);
};
# "Raise the solar sails! I'm going after that Mobius Dick!"
my $t = Test::Mojo->new;
# GET /rest
$t->get_ok('/rest')->status_is(200)->content_type_is('text/html;charset=UTF-8')
->text_is('html > body', 'works');
# GET /rest.html (html format)
$t->get_ok('/rest.html')->status_is(200)
->content_type_is('text/html;charset=UTF-8')
->text_is('html > body', 'works');
# GET /rest (accept html)
$t->get_ok('/rest', {Accept => 'text/html'})->status_is(200)
->content_type_is('text/html;charset=UTF-8')
->text_is('html > body', 'works');
# GET /rest (accept html again)
$t->get_ok('/rest', {Accept => 'Text/Html'})->status_is(200)
->content_type_is('text/html;charset=UTF-8')
->text_is('html > body', 'works');
# GET /rest.html (accept html with format)
$t->get_ok('/rest.html', {Accept => 'text/html'})->status_is(200)
->content_type_is('text/html;charset=UTF-8')
->text_is('html > body', 'works');
# GET /rest.json (accept html with wrong format)
$t->get_ok('/rest.json', {Accept => 'text/html'})->status_is(200)
->content_type_is('text/html;charset=UTF-8')
->text_is('html > body', 'works');
# GET /rest (accept html with quality)
$t->get_ok('/rest', {Accept => 'text/html;q=9'})->status_is(200)
->content_type_is('text/html;charset=UTF-8')
->text_is('html > body', 'works');
# GET /rest (html query)
$t->get_ok('/rest?format=html')->status_is(200)
->content_type_is('text/html;charset=UTF-8')
->text_is('html > body', 'works');
# GET /rest (html format with query)
$t->get_ok('/rest.html?format=html')->status_is(200)
->content_type_is('text/html;charset=UTF-8')
->text_is('html > body', 'works');
# GET /rest (accept html with query)
$t->get_ok('/rest?format=html', {Accept => 'text/html'})->status_is(200)
->content_type_is('text/html;charset=UTF-8')
->text_is('html > body', 'works');
# GET /rest (accept html with everything)
$t->get_ok('/rest.html?format=html', {Accept => 'text/html'})->status_is(200)
->content_type_is('text/html;charset=UTF-8')
->text_is('html > body', 'works');
# GET /rest.json (json format)
$t->get_ok('/rest.json')->status_is(200)->content_type_is('application/json')
->json_content_is({just => 'works'});
# GET /rest (accept json)
$t->get_ok('/rest', {Accept => 'application/json'})->status_is(200)
->content_type_is('application/json')->json_content_is({just => 'works'});
# GET /rest (accept json again)
$t->get_ok('/rest', {Accept => 'APPLICATION/JSON'})->status_is(200)
->content_type_is('application/json')->json_content_is({just => 'works'});
# GET /rest.json (accept json with format)
$t->get_ok('/rest.json', {Accept => 'application/json'})->status_is(200)
->content_type_is('application/json')->json_content_is({just => 'works'});
# GET /rest.png (accept json with wrong format)
$t->get_ok('/rest.png', {Accept => 'application/json'})->status_is(200)
->content_type_is('application/json')->json_content_is({just => 'works'});
# GET /rest (accept json with quality)
$t->get_ok('/rest', {Accept => 'application/json;q=9'})->status_is(200)
->content_type_is('application/json')->json_content_is({just => 'works'});
# GET /rest (json query)
$t->get_ok('/rest?format=json')->status_is(200)
->content_type_is('application/json')->json_content_is({just => 'works'});
# GET /rest (json format with query)
$t->get_ok('/rest.json?format=json')->status_is(200)
->content_type_is('application/json')->json_content_is({just => 'works'});
# GET /rest (accept json with query)
$t->get_ok('/rest?format=json', {Accept => 'application/json'})->status_is(200)
->content_type_is('application/json')->json_content_is({just => 'works'});
# GET /rest (accept json with everything)
$t->get_ok('/rest.json?format=json', {Accept => 'application/json'})
->status_is(200)->content_type_is('application/json')
->json_content_is({just => 'works'});
# GET /rest.xml (xml format)
$t->get_ok('/rest.xml')->status_is(200)->content_type_is('text/xml')
->text_is(just => 'works');
# GET /rest (accept xml)
$t->get_ok('/rest', {Accept => 'text/xml'})->status_is(200)
->content_type_is('text/xml')->text_is(just => 'works');
# GET /rest (accept xml again)
$t->get_ok('/rest', {Accept => 'TEXT/XML'})->status_is(200)
->content_type_is('text/xml')->text_is(just => 'works');
# GET /rest.xml (accept xml with format)
$t->get_ok('/rest.xml', {Accept => 'text/xml'})->status_is(200)
->content_type_is('text/xml')->text_is(just => 'works');
# GET /rest.txt (accept xml with wrong format)
$t->get_ok('/rest.txt', {Accept => 'text/xml'})->status_is(200)
->content_type_is('text/xml')->text_is(just => 'works');
# GET /rest (accept xml with quality)
$t->get_ok('/rest', {Accept => 'text/xml;q=9'})->status_is(200)
->content_type_is('text/xml')->text_is(just => 'works');
# GET /rest (xml query)
$t->get_ok('/rest?format=xml')->status_is(200)->content_type_is('text/xml')
->text_is(just => 'works');
# GET /rest (xml format with query)
$t->get_ok('/rest.xml?format=xml')->status_is(200)->content_type_is('text/xml')
->text_is(just => 'works');
# GET /rest (accept json with query)
$t->get_ok('/rest?format=xml', {Accept => 'text/xml'})->status_is(200)
->content_type_is('text/xml')->text_is(just => 'works');
# GET /rest (accept json with everything)
$t->get_ok('/rest.xml?format=xml', {Accept => 'text/xml'})->status_is(200)
->content_type_is('text/xml')->text_is(just => 'works');
# GET /rest (unsupported accept)
$t->get_ok('/rest', {Accept => 'image/png'})->status_is(204)->content_is('');
# POST /rest
$t->post_ok('/rest')->status_is(200)
->content_type_is('text/html;charset=UTF-8')
->text_is('html > body', 'works too');
# POST /rest.html (html format)
$t->post_ok('/rest.html')->status_is(200)
->content_type_is('text/html;charset=UTF-8')
->text_is('html > body', 'works too');
# POST /rest (accept html)
$t->post_ok('/rest', {Accept => 'text/html'})->status_is(200)
->content_type_is('text/html;charset=UTF-8')
->text_is('html > body', 'works too');
# POST /rest (accept html again)
$t->post_ok('/rest', {Accept => 'Text/Html'})->status_is(200)
->content_type_is('text/html;charset=UTF-8')
->text_is('html > body', 'works too');
# POST /rest.html (accept html with format)
$t->post_ok('/rest.html', {Accept => 'text/html'})->status_is(200)
->content_type_is('text/html;charset=UTF-8')
->text_is('html > body', 'works too');
# POST /rest.json (accept html with wrong format)
$t->post_ok('/rest.json', {Accept => 'text/html'})->status_is(200)
->content_type_is('text/html;charset=UTF-8')
->text_is('html > body', 'works too');
# POST /rest (accept html with quality)
$t->post_ok('/rest', {Accept => 'text/html;q=9'})->status_is(200)
->content_type_is('text/html;charset=UTF-8')
->text_is('html > body', 'works too');
# POST /rest (html query)
$t->post_ok('/rest?format=html')->status_is(200)
->content_type_is('text/html;charset=UTF-8')
->text_is('html > body', 'works too');
# POST /rest (html format with query)
$t->post_ok('/rest.html?format=html')->status_is(200)
->content_type_is('text/html;charset=UTF-8')
->text_is('html > body', 'works too');
# POST /rest (accept html with query)
$t->post_ok('/rest?format=html', {Accept => 'text/html'})->status_is(200)
->content_type_is('text/html;charset=UTF-8')
->text_is('html > body', 'works too');
# POST /rest (accept html with everything)
$t->post_ok('/rest.html?format=html', {Accept => 'text/html'})->status_is(200)
->content_type_is('text/html;charset=UTF-8')
->text_is('html > body', 'works too');
# POST /rest (html form)
$t->post_form_ok('/rest' => {format => 'html'})->status_is(200)
->content_type_is('text/html;charset=UTF-8')
->text_is('html > body', 'works too');
# POST /rest (html format with form)
$t->post_form_ok('/rest.html' => {format => 'html'})->status_is(200)
->content_type_is('text/html;charset=UTF-8')
->text_is('html > body', 'works too');
# POST /rest (accept html with form)
$t->post_form_ok('/rest' => {format => 'html'} => {Accept => 'text/html'})
->status_is(200)->content_type_is('text/html;charset=UTF-8')
->text_is('html > body', 'works too');
# POST /rest (accept html with everything, form alternative)
$t->post_form_ok('/rest.html' => {format => 'html'} => {Accept => 'text/html'})
->status_is(200)->content_type_is('text/html;charset=UTF-8')
->text_is('html > body', 'works too');
# POST /rest.json (json format)
$t->post_ok('/rest.json')->status_is(200)->content_type_is('application/json')
->json_content_is({just => 'works too'});
# POST /rest (accept json)
$t->post_ok('/rest', {Accept => 'application/json'})->status_is(200)
->content_type_is('application/json')
->json_content_is({just => 'works too'});
# POST /rest (accept json again)
$t->post_ok('/rest', {Accept => 'APPLICATION/JSON'})->status_is(200)
->content_type_is('application/json')
->json_content_is({just => 'works too'});
# POST /rest.json (accept json with format)
$t->post_ok('/rest.json', {Accept => 'application/json'})->status_is(200)
->content_type_is('application/json')
->json_content_is({just => 'works too'});
# POST /rest.png (accept json with wrong format)
$t->post_ok('/rest.png', {Accept => 'application/json'})->status_is(200)
->content_type_is('application/json')
->json_content_is({just => 'works too'});
# POST /rest (accept json with quality)
$t->post_ok('/rest', {Accept => 'application/json;q=9'})->status_is(200)
->content_type_is('application/json')
->json_content_is({just => 'works too'});
# POST /rest (json query)
$t->post_ok('/rest?format=json')->status_is(200)
->content_type_is('application/json')
->json_content_is({just => 'works too'});
# POST /rest (json format with query)
$t->post_ok('/rest.json?format=json')->status_is(200)
->content_type_is('application/json')
->json_content_is({just => 'works too'});
# POST /rest (accept json with query)
$t->post_ok('/rest?format=json', {Accept => 'application/json'})
->status_is(200)->content_type_is('application/json')
->json_content_is({just => 'works too'});
# POST /rest (accept json with everything)
$t->post_ok('/rest.json?format=json', {Accept => 'application/json'})
->status_is(200)->content_type_is('application/json')
->json_content_is({just => 'works too'});
# POST /rest (json form)
$t->post_form_ok('/rest' => {format => 'json'})->status_is(200)
->content_type_is('application/json')
->json_content_is({just => 'works too'});
# POST /rest (json format with form)
$t->post_form_ok('/rest.json' => {format => 'json'})->status_is(200)
->content_type_is('application/json')
->json_content_is({just => 'works too'});
# POST /rest (accept json with form)
$t->post_form_ok(
'/rest' => {format => 'json'} => {Accept => 'application/json'})
->status_is(200)->content_type_is('application/json')
->json_content_is({just => 'works too'});
# POST /rest (accept json with everything, form alternative)
$t->post_form_ok(
'/rest.json' => {format => 'json'} => {Accept => 'application/json'})
->status_is(200)->content_type_is('application/json')
->json_content_is({just => 'works too'});
# POST /rest.xml (xml format)
$t->post_ok('/rest.xml')->status_is(200)->content_type_is('text/xml')
->text_is(just => 'works too');
# POST /rest (accept xml)
$t->post_ok('/rest', {Accept => 'text/xml'})->status_is(200)
->content_type_is('text/xml')->text_is(just => 'works too');
# POST /rest (accept xml again)
$t->post_ok('/rest', {Accept => 'TEXT/XML'})->status_is(200)
->content_type_is('text/xml')->text_is(just => 'works too');
# POST /rest.xml (accept xml with format)
$t->post_ok('/rest.xml', {Accept => 'text/xml'})->status_is(200)
->content_type_is('text/xml')->text_is(just => 'works too');
# POST /rest.txt (accept xml with wrong format)
$t->post_ok('/rest.txt', {Accept => 'text/xml'})->status_is(200)
->content_type_is('text/xml')->text_is(just => 'works too');
# POST /rest (accept xml with quality)
$t->post_ok('/rest', {Accept => 'text/xml;q=9'})->status_is(200)
->content_type_is('text/xml')->text_is(just => 'works too');
# POST /rest (xml query)
$t->post_ok('/rest?format=xml')->status_is(200)->content_type_is('text/xml')
->text_is(just => 'works too');
# POST /rest (xml format with query)
$t->post_ok('/rest.xml?format=xml')->status_is(200)
->content_type_is('text/xml')->text_is(just => 'works too');
# POST /rest (accept json with query)
$t->post_ok('/rest?format=xml', {Accept => 'text/xml'})->status_is(200)
->content_type_is('text/xml')->text_is(just => 'works too');
# POST /rest (accept json with everything)
$t->post_ok('/rest.xml?format=xml', {Accept => 'text/xml'})->status_is(200)
->content_type_is('text/xml')->text_is(just => 'works too');
# POST /rest (xml form)
$t->post_form_ok('/rest' => {format => 'xml'})->status_is(200)
->content_type_is('text/xml')->text_is(just => 'works too');
# POST /rest (xml format with form)
$t->post_form_ok('/rest.xml' => {format => 'xml'})->status_is(200)
->content_type_is('text/xml')->text_is(just => 'works too');
# POST /rest (accept json with form)
$t->post_form_ok('/rest' => {format => 'xml'} => {Accept => 'text/xml'})
->status_is(200)->content_type_is('text/xml')->text_is(just => 'works too');
# POST /rest (accept json with everything, form alternative)
$t->post_form_ok('/rest.xml' => {format => 'xml'} => {Accept => 'text/xml'})
->status_is(200)->content_type_is('text/xml')->text_is(just => 'works too');
# POST /rest (unsupported accept)
$t->post_ok('/rest', {Accept => 'image/png'})->status_is(201)
->content_type_is('text/html;charset=UTF-8')->content_is('works too');
# POST /rest (unsupported accept with supported query)
$t->post_ok('/rest?format=json', {Accept => 'image/png'})->status_is(201)
->content_type_is('text/html;charset=UTF-8')->content_is('works too');
# POST /rest.png (unsupported format)
$t->post_ok('/rest.png')->status_is(201)
->content_type_is('text/html;charset=UTF-8')->content_is('works too');
# POST /rest.png (unsupported format with supported query)
$t->post_ok('/rest.png?format=json')->status_is(201)
->content_type_is('text/html;charset=UTF-8')->content_is('works too');
# GET /nothing (does not exist)
$t->get_ok('/nothing', {Accept => 'image/png'})->status_is(404);
# GET /rest.html (Internet Explorer 8)
my $ie
= 'image/jpeg, application/x-ms-application, image/gif, application/xaml+xml'
. ', image/pjpeg, application/x-ms-xbap, application/x-shockwave-flash'
. ', application/msword, */*';
$t->get_ok('/rest.html' => {Accept => $ie})->status_is(200)
->content_type_is('text/html;charset=UTF-8')
->text_is('html > body', 'works');
# GET /rest (Internet Explorer 8 with query)
$t->get_ok('/rest?format=html' => {Accept => $ie})->status_is(200)
->content_type_is('text/html;charset=UTF-8')
->text_is('html > body', 'works');
# GET /rest.html (Chrome 11)
my $chrome = 'application/xml,application/xhtml+xml,text/html;q=0.9'
. ',text/plain;q=0.8,image/png,*/*;q=0.5';
$t->get_ok('/rest.html' => {Accept => $chrome})->status_is(200)
->content_type_is('text/html;charset=UTF-8')
->text_is('html > body', 'works');
# GET /rest (Chrome 11 with query)
$t->get_ok('/rest?format=html' => {Accept => $chrome})->status_is(200)
->content_type_is('text/html;charset=UTF-8')
->text_is('html > body', 'works');
|