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
|
use Mojo::Base -strict;
BEGIN {
$ENV{MOJO_MODE} = 'testing';
$ENV{MOJO_REACTOR} = 'Mojo::Reactor::Poll';
}
use Test::More;
use FindBin;
use lib "$FindBin::Bin/lib";
use Mojolicious::Lite;
use Test::Mojo;
package TestApp;
use Mojolicious::Lite;
get '/hello' => sub {
my $c = shift;
my $name = $c->stash('name');
my $counter = ++$c->session->{counter};
$c->render(text => "Hello from the $name ($counter) app!");
};
package MyTestApp::Test1;
use Mojolicious::Lite;
get '/yada' => sub {
my $c = shift;
my $name = $c->stash('name');
$c->render(text => "yada $name works!");
};
get '/bye' => sub {
my $c = shift;
my $name = $c->stash('name');
my $nb = '';
$c->ua->server->app(main::app());
$c->ua->get(
'/hello/hello' => sub {
my ($ua, $tx) = @_;
$c->render(text => $tx->res->body . "$name! $nb");
}
);
$nb .= 'success!';
};
package MyTestApp::Test2;
use Mojolicious::Lite;
get '/' => sub {
my $c = shift;
my $name = $c->param('name');
my $url = $c->url_for;
$c->render(text => "Bye from the $name app! $url!");
};
package MyTestApp::Basic;
use Mojo::Base 'Mojo';
sub handler {
my ($self, $c) = @_;
$c->res->code(200);
my $test = $c->param('test');
$c->res->body("Hello $test!");
$c->rendered;
}
package main;
# Plugin app
plugin 'PluginWithEmbeddedApp';
app->routes->namespaces(['MyTestApp']);
# Mount full external application a few times
my $external = "$FindBin::Bin/external/myapp.pl";
plugin Mount => {'/x/1' => $external};
my $route = plugin(Mount => ('/x/♥' => $external))->to(message => 'works 2!');
is $route->to->{message}, 'works 2!', 'right message';
is $route->pattern->defaults->{app}->same_name, 'myapp', 'right name';
plugin Mount => {'/y/1' => "$FindBin::Bin/external/myapp2.pl"};
plugin Mount => {'mojolicious.org' => $external};
plugin(Mount => ('/y/♥' => "$FindBin::Bin/external/myapp2.pl"))
->to(message => 'works 3!');
plugin Mount => {'MOJOLICIOUS.ORG/' => $external};
plugin Mount => {'*.example.com' => $external};
plugin(Mount => ('*.foo-bar.de/♥/123' => $external))
->to(message => 'works 3!');
get '/hello' => 'works';
get('/bye' => {name => 'second embedded'})->detour('MyTestApp::Test1');
get('/bar' => {name => 'third embedded'})->detour(app => 'MyTestApp::Test1');
get('/baz')->detour('test1#', name => 'fourth embedded');
get('/yada')->to('test1#', name => 'fifth embedded');
get('/yada/yada/yada')->to('test1#', path => '/yada', name => 'sixth embedded');
get('/basic')->detour(MyTestApp::Basic->new, test => 'lalala');
get '/third/*path' =>
{app => 'MyTestApp::Test2', name => 'third embedded', path => '/'};
app->routes->route('/hello')->detour(TestApp::app())->to(name => 'embedded');
get('/just' => {name => 'working'})->detour('EmbeddedTestApp');
get '/host' => {text => 'main application!'};
my $t = Test::Mojo->new;
# PluginWithEmbeddedApp
$t->get_ok('/plugin/foo')->status_is(200)->content_is('plugin works!');
# main
$t->get_ok('/hello')->status_is(200)->content_is("Hello from the main app!\n");
# TestApp
$t->get_ok('/hello/hello')->status_is(200)
->content_is('Hello from the embedded (1) app!');
# TestApp again
$t->get_ok('/hello/hello')->status_is(200)
->content_is('Hello from the embedded (2) app!');
# TestApp again
$t->get_ok('/hello/hello')->status_is(200)
->content_is('Hello from the embedded (3) app!');
# MyTestApp::Test1
$t->get_ok('/bye/bye')->status_is(200)
->content_is('Hello from the embedded (1) app!second embedded! success!');
# MyTestApp::Test1 with different prefix
$t->get_ok('/bar/bye')->status_is(200)
->content_is('Hello from the embedded (2) app!third embedded! success!');
# MyTestApp::Test1 with yet another prefix
$t->get_ok('/baz/bye')->status_is(200)
->content_is('Hello from the embedded (3) app!fourth embedded! success!');
# MyTestApp::Test1 without prefix
$t->get_ok('/yada')->status_is(200)->content_is('yada fifth embedded works!');
# 404 from MyTestApp::Test1
$t->get_ok('/yada/yada')->status_is(404);
# MyTestApp::Test1 with a long prefix
$t->get_ok('/yada/yada/yada')->status_is(200)
->content_is('yada sixth embedded works!');
# MyTestApp::Basic
$t->get_ok('/basic')->status_is(200)->content_is('Hello lalala!');
# MyTestApp::Test2
$t->get_ok('/third')->status_is(200)
->content_is('Bye from the third embedded app! /third!');
# EmbeddedTestApp
$t->get_ok('/just/works')->status_is(200)->content_is("It is working!\n");
# EmbeddedTestApp again
$t->get_ok('/just/works/too')->status_is(200)->content_is("It just works!\n");
# Template from myapp.pl
$t->get_ok('/x/1/')->status_is(200)->content_is(<<'EOF');
myapp
works ♥!Insecure!Insecure!
too!works!!!Mojolicious::Plugin::Config::Sandbox
<a href="/x/1/">Test</a>
<form action="/x/1/%E2%98%83">
<input type="submit" value="☃">
</form>
EOF
# Template from myapp.pl (no trailing slash)
$t->get_ok('/x/1')->status_is(200)->content_is(<<'EOF');
myapp
works ♥!Insecure!Insecure!
too!works!!!Mojolicious::Plugin::Config::Sandbox
<a href="/x/1/">Test</a>
<form action="/x/1/%E2%98%83">
<input type="submit" value="☃">
</form>
EOF
# Static file from myapp.pl
$t->get_ok('/x/1/index.html')->status_is(200)
->content_is("External static file!\n");
# Echo from myapp.pl
$t->get_ok('/x/1/echo')->status_is(200)->content_is('echo: nothing!');
# Stream from myapp.pl
$t->get_ok('/x/1/stream')->status_is(200)->content_is('hello!');
# URL from myapp.pl
$t->get_ok('/x/1/url/☃')->status_is(200)
->content_is('/x/1/url/%E2%98%83.json -> /x/1/%E2%98%83/stream!');
# Route to template from myapp.pl
$t->get_ok('/x/1/template/menubar')->status_is(200)
->content_is("myapp\nworks ♥!Insecure!Insecure!\n");
# Missing template from myapp.pl
$t->get_ok('/x/1/template/does_not_exist')->status_is(404);
# Template from myapp.pl with Unicode prefix
$t->get_ok('/x/♥/')->status_is(200)->content_is(<<'EOF');
myapp
works ♥!Insecure!Insecure!
too!works!!!Mojolicious::Plugin::Config::Sandbox
<a href="/x/%E2%99%A5/">Test</a>
<form action="/x/%E2%99%A5/%E2%98%83">
<input type="submit" value="☃">
</form>
EOF
# Template from myapp.pl with Unicode prefix (no trailing slash)
$t->get_ok('/x/♥')->status_is(200)->content_is(<<'EOF');
myapp
works ♥!Insecure!Insecure!
too!works!!!Mojolicious::Plugin::Config::Sandbox
<a href="/x/%E2%99%A5/">Test</a>
<form action="/x/%E2%99%A5/%E2%98%83">
<input type="submit" value="☃">
</form>
EOF
# Static file from myapp.pl with Unicode prefix
$t->get_ok('/x/♥/index.html')->status_is(200)
->content_is("External static file!\n");
# Echo from myapp.pl with Unicode prefix
$t->get_ok('/x/♥/echo')->status_is(200)->content_is('echo: works 2!');
# Stream from myapp.pl with Unicode prefix
$t->get_ok('/x/♥/stream')->status_is(200)->content_is('hello!');
# URL from myapp.pl with Unicode prefix
$t->get_ok('/x/♥/url/☃')->status_is(200)
->content_is(
'/x/%E2%99%A5/url/%E2%98%83.json -> /x/%E2%99%A5/%E2%98%83/stream!');
# Route to template from myapp.pl with Unicode prefix
$t->get_ok('/x/♥/template/menubar')->status_is(200)
->content_is("myapp\nworks ♥!Insecure!Insecure!\n");
# Missing template from myapp.pl with Unicode prefix
$t->get_ok('/x/♥/template/does_not_exist')->status_is(404);
# A little bit of everything from myapp2.pl
$t->get_ok('/y/1')->status_is(200)
->content_is("myapp2\nworks 4!\nInsecure too!");
# Route to template from myapp.pl again (helpers sharing the same name)
$t->get_ok('/x/1/template/menubar')->status_is(200)
->content_is("myapp\nworks ♥!Insecure!Insecure!\n");
# Caching helper from myapp2.pl
$t->get_ok('/y/1/cached?cache=foo')->status_is(200)->content_is('foo');
# Caching helper with cached value from myapp2.pl
$t->get_ok('/y/1/cached?cache=fail')->status_is(200)->content_is('foo');
# 404 from myapp2.pl
$t->get_ok('/y/1/2')->status_is(404);
# myapp2.pl with Unicode prefix
$t->get_ok('/y/♥')->status_is(200)
->content_is("myapp2\nworks 3!\nInsecure too!");
# Caching helper from myapp2.pl with Unicode prefix
$t->get_ok('/y/♥/cached?cache=bar')->status_is(200)->content_is('bar');
# Caching helper with cached value from myapp2.pl with Unicode prefix
$t->get_ok('/y/♥/cached?cache=fail')->status_is(200)->content_is('bar');
# 404 from myapp2.pl with Unicode prefix
$t->get_ok('/y/♥/2')->status_is(404);
# main
$t->get_ok('/host')->status_is(200)->content_is('main application!');
# Template from myapp.pl with domain
$t->get_ok('/' => {Host => 'mojolicious.org'})->status_is(200)
->content_is(<<'EOF');
myapp
works ♥!Insecure!Insecure!
too!works!!!Mojolicious::Plugin::Config::Sandbox
<a href="/">Test</a>
<form action="/%E2%98%83">
<input type="submit" value="☃">
</form>
EOF
# Host from myapp.pl with domain
$t->get_ok('/host' => {Host => 'mojolicious.org'})->status_is(200)
->header_is('X-Message' => 'it works!')->content_is('mojolicious.org');
# Template from myapp.pl with domain again
$t->get_ok('/' => {Host => 'mojolicious.org'})->status_is(200)
->content_is(<<'EOF');
myapp
works ♥!Insecure!Insecure!
too!works!!!Mojolicious::Plugin::Config::Sandbox
<a href="/">Test</a>
<form action="/%E2%98%83">
<input type="submit" value="☃">
</form>
EOF
# Host from myapp.pl with domain again
$t->get_ok('/host' => {Host => 'mojolicious.org'})->status_is(200)
->header_is('X-Message' => 'it works!')->content_is('mojolicious.org');
# Template from myapp.pl with wildcard domain
$t->get_ok('/' => {Host => 'example.com'})->status_is(200)->content_is(<<'EOF');
myapp
works ♥!Insecure!Insecure!
too!works!!!Mojolicious::Plugin::Config::Sandbox
<a href="/">Test</a>
<form action="/%E2%98%83">
<input type="submit" value="☃">
</form>
EOF
# Host from myapp.pl with wildcard domain
$t->get_ok('/host' => {Host => 'ExAmPlE.CoM'})->status_is(200)
->header_is('X-Message' => 'it works!')->content_is('ExAmPlE.CoM');
# Host from myapp.pl with wildcard domain again
$t->get_ok('/host' => {Host => 'www.example.com'})->status_is(200)
->header_is('X-Message' => 'it works!')->content_is('www.example.com');
# Host from myapp.pl with wildcard domain again
$t->get_ok('/host' => {Host => 'foo.bar.example.com'})->status_is(200)
->header_is('X-Message' => 'it works!')->content_is('foo.bar.example.com');
# Template from myapp.pl with wildcard domain and Unicode prefix
$t->get_ok('/♥/123/' => {Host => 'foo-bar.de'})->status_is(200)
->content_is(<<'EOF');
myapp
works ♥!Insecure!Insecure!
too!works!!!Mojolicious::Plugin::Config::Sandbox
<a href="/%E2%99%A5/123/">Test</a>
<form action="/%E2%99%A5/123/%E2%98%83">
<input type="submit" value="☃">
</form>
EOF
# Host from myapp.pl with wildcard domain and Unicode prefix
$t->get_ok('/♥/123/host' => {Host => 'foo-bar.de'})->status_is(200)
->header_is('X-Message' => 'it works!')->content_is('foo-bar.de');
# Echo from myapp.pl with wildcard domain and Unicode prefix
$t->get_ok('/♥/123/echo' => {Host => 'foo-bar.de'})->status_is(200)
->content_is('echo: works 3!');
# Host from myapp.pl with wildcard domain and Unicode prefix again
$t->get_ok('/♥/123/host' => {Host => 'www.foo-bar.de'})->status_is(200)
->header_is('X-Message' => 'it works!')->content_is('www.foo-bar.de');
# Host from myapp.pl with wildcard domain and Unicode prefix again
$t->get_ok('/♥/123/echo' => {Host => 'www.foo-bar.de'})->status_is(200)
->content_is('echo: works 3!');
# Text from myapp.pl with wildcard domain and Unicode prefix
$t->get_ok('/♥/123/one' => {Host => 'www.foo-bar.de'})->status_is(200)
->content_is('One');
# Another text from myapp.pl with wildcard domain and Unicode prefix
$t->get_ok('/♥/123/one/two' => {Host => 'www.foo-bar.de'})->status_is(200)
->content_is('Two');
# Invalid domain
$t->get_ok('/' => {Host => 'mojoliciousxorg'})->status_is(404);
# Another invalid domain
$t->get_ok('/' => {Host => 'www.kraihxcom'})->status_is(404);
# Embedded WebSocket
$t->websocket_ok('/x/♥/url_for')->send_ok('ws_test')
->message_ok->message_like(qr!^ws://127\.0\.0\.1:\d+/x/%E2%99%A5/url_for$!)
->send_ok('index')
->message_ok->message_like(qr!^http://127\.0\.0\.1:\d+/x/%E2%99%A5$!)
->finish_ok;
done_testing();
__DATA__
@@ works.html.ep
Hello from the main app!
|