File: daemon.t

package info (click to toggle)
libmojolicious-perl 8.71%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 3,996 kB
  • sloc: perl: 9,899; makefile: 31; javascript: 1
file content (371 lines) | stat: -rw-r--r-- 12,912 bytes parent folder | download
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
use Mojo::Base -strict;

BEGIN {
  $ENV{MOJO_NO_TLS}  = 1;
  $ENV{MOJO_REACTOR} = 'Mojo::Reactor::Poll';
}

use Test::More;
use IO::Socket::INET;
use Mojo::File qw(curfile path);
use Mojo::IOLoop;
use Mojo::Log;
use Mojo::Server::Daemon;
use Mojo::UserAgent;
use Mojolicious;

package TestApp;
use Mojo::Base 'Mojolicious';

sub handler {
  my ($self, $tx) = @_;
  $tx->res->code(200);
  $tx->res->body('Hello TestApp!');
  $tx->resume;
}

package main;

subtest 'Minimal application' => sub {
  my $ua = Mojo::UserAgent->new;
  $ua->server->app(TestApp->new);
  my $tx = $ua->get('/');
  is $tx->res->code, 200,              'right status';
  is $tx->res->body, 'Hello TestApp!', 'right content';
};

subtest 'Timeouts' => sub {
  is(Mojo::Server::Daemon->new->inactivity_timeout, 30, 'right value');
  local $ENV{MOJO_INACTIVITY_TIMEOUT} = 25;
  is(Mojo::Server::Daemon->new->inactivity_timeout, 25, 'right value');
  $ENV{MOJO_INACTIVITY_TIMEOUT} = 0;
  is(Mojo::Server::Daemon->new->inactivity_timeout, 0, 'right value');
  is(Mojo::Server::Daemon->new->keep_alive_timeout, 5, 'right value');
  local $ENV{MOJO_KEEP_ALIVE_TIMEOUT} = 25;
  is(Mojo::Server::Daemon->new->keep_alive_timeout, 25, 'right value');
  $ENV{MOJO_KEEP_ALIVE_TIMEOUT} = 0;
  is(Mojo::Server::Daemon->new->keep_alive_timeout, 0, 'right value');
};

subtest 'Listen' => sub {
  is_deeply(Mojo::Server::Daemon->new->listen, ['http://*:3000'], 'right value');
  local $ENV{MOJO_LISTEN} = 'http://127.0.0.1:8080';
  is_deeply(Mojo::Server::Daemon->new->listen, ['http://127.0.0.1:8080'], 'right value');
  $ENV{MOJO_LISTEN} = 'http://*:80,https://*:443';
  is_deeply(Mojo::Server::Daemon->new->listen, ['http://*:80', 'https://*:443'], 'right value');
};

subtest 'Reverse proxy' => sub {
  ok !Mojo::Server::Daemon->new->reverse_proxy, 'no reverse proxy';
  local $ENV{MOJO_REVERSE_PROXY} = 1;
  ok !!Mojo::Server::Daemon->new->reverse_proxy, 'reverse proxy';
};

subtest 'Config' => sub {
  my $app = Mojolicious->new;
  is $app->config('foo'), undef, 'no value';
  is_deeply $app->config(foo => 'bar')->config, {foo => 'bar'}, 'right value';
  is $app->config('foo'), 'bar', 'right value';
  delete $app->config->{foo};
  is $app->config('foo'), undef, 'no value';
  $app->config(foo => 'bar', baz => 'yada');
  is $app->config({test => 23})->config->{test}, 23, 'right value';
  is_deeply $app->config, {foo => 'bar', baz => 'yada', test => 23}, 'right value';
};

subtest 'Loading' => sub {
  my $daemon = Mojo::Server::Daemon->new;
  my $path   = curfile->sibling('lib', '..', 'lib', 'myapp.pl');
  is ref $daemon->load_app($path), 'Mojolicious::Lite', 'right reference';
  is $daemon->app->config('script'), path($path)->to_abs, 'right script name';
  is ref $daemon->build_app('TestApp'), 'TestApp', 'right reference';
  is ref $daemon->app, 'TestApp', 'right reference';
};

subtest 'Load broken app' => sub {
  my $bin = curfile->dirname;
  eval { Mojo::Server::Daemon->new->load_app("$bin/lib/Mojo/LoaderTest/A.pm") };
  like $@, qr/did not return an application object/, 'right error';
  eval { Mojo::Server::Daemon->new->load_app("$bin/lib/Mojo/LoaderException.pm") };
  like $@, qr/^Can't load application/, 'right error';
};

subtest 'Load missing application class' => sub {
  eval { Mojo::Server::Daemon->new->build_app('Mojo::DoesNotExist') };
  like $@, qr/^Can't find application class "Mojo::DoesNotExist" in \@INC/, 'right error';
};

subtest 'Invalid listen location' => sub {
  eval { Mojo::Server::Daemon->new(listen => ['fail'])->start };
  like $@, qr/Invalid listen location/, 'right error';
};

subtest 'Transaction' => sub {
  my $app = Mojolicious->new;
  isa_ok $app->build_tx, 'Mojo::Transaction::HTTP', 'right transaction';
};

my $app = Mojolicious->new;
my $ua  = Mojo::UserAgent->new(ioloop => Mojo::IOLoop->singleton);

subtest 'Moniker' => sub {
  is $ua->server->app($app)->app->moniker, 'mojolicious', 'right moniker';
};

# Silence
$app->log->level('fatal');

$app->routes->post(
  '/chunked' => sub {
    my $c = shift;

    my $params = $c->req->params->to_hash;
    my @chunks;
    for my $key (sort keys %$params) { push @chunks, $params->{$key} }

    my $cb = sub {
      my $c     = shift;
      my $chunk = shift @chunks || '';
      $c->write_chunk($chunk, $chunk ? __SUB__ : ());
    };
    $c->$cb;
  }
);

my ($local_address, $local_port, $remote_address, $remote_port);
$app->routes->post(
  '/upload' => sub {
    my $c = shift;
    $local_address  = $c->tx->local_address;
    $local_port     = $c->tx->local_port;
    $remote_address = $c->tx->remote_address;
    $remote_port    = $c->tx->remote_port;
    $c->render(data => $c->req->upload('file')->slurp);
  }
);

$app->routes->any(
  '/port' => sub {
    my $c = shift;
    $c->render(text => $c->req->url->to_abs->port);
  }
);

$app->routes->any(
  '/timeout' => sub {
    my $c  = shift;
    my $id = $c->tx->connection;
    $c->res->headers->header('X-Connection-ID' => $id);
    $c->render(text => Mojo::IOLoop->stream($id)->timeout);
  }
);

$app->routes->any('/*whatever' => {text => 'Whatever!'});

subtest 'Normal request' => sub {
  my $tx = $ua->get('/normal/');
  ok $tx->keep_alive, 'will be kept alive';
  is $tx->res->code, 200,         'right status';
  is $tx->res->body, 'Whatever!', 'right content';
};

subtest 'Keep-alive request' => sub {
  my $tx = $ua->get('/normal/');
  ok $tx->keep_alive, 'will be kept alive';
  ok $tx->kept_alive, 'was kept alive';
  is $tx->res->code, 200,         'right status';
  is $tx->res->body, 'Whatever!', 'right content';
};

subtest 'Non-keep-alive request' => sub {
  my $tx = $ua->get('/close/' => {Connection => 'close'});
  ok !$tx->keep_alive, 'will not be kept alive';
  ok $tx->kept_alive, 'was kept alive';
  is $tx->res->code, 200,         'right status';
  is $tx->res->body, 'Whatever!', 'right content';
};

subtest 'Second non-keep-alive request' => sub {
  my $tx = $ua->get('/close/' => {Connection => 'close'});
  ok !$tx->keep_alive, 'will not be kept alive';
  ok !$tx->kept_alive, 'was not kept alive';
  is $tx->res->code, 200,         'right status';
  is $tx->res->body, 'Whatever!', 'right content';
};

subtest 'HTTP/1.0 request' => sub {
  my $tx = $ua->build_tx(GET => '/normal/');
  $tx->req->version('1.0');
  $tx = $ua->start($tx);
  ok !$tx->keep_alive, 'will not be kept alive';
  is $tx->res->version, '1.1',       'right version';
  is $tx->res->code,    200,         'right status';
  is $tx->res->body,    'Whatever!', 'right content';
};

subtest 'POST request' => sub {
  my $tx = $ua->post('/fun/' => {Expect => 'fun'} => 'foo bar baz' x 128);
  ok defined $tx->connection, 'has connection id';
  is $tx->res->code, 200,         'right status';
  is $tx->res->body, 'Whatever!', 'right content';
};

subtest 'Concurrent requests' => sub {
  my $tx = $ua->post('/fun/' => {Expect => 'fun'} => 'foo bar baz' x 128);
  my ($tx2, $tx3);
  my $delay = Mojo::IOLoop->delay(sub { (undef, $tx, $tx2, $tx3) = @_ });
  $ua->get('/concurrent1/' => $delay->begin);
  $ua->post('/concurrent2/' => {Expect => 'fun'} => 'bar baz foo' x 128 => $delay->begin);
  $ua->get('/concurrent3/' => $delay->begin);
  $delay->wait;
  ok $tx->is_finished, 'transaction is finished';
  is $tx->res->body, 'Whatever!', 'right content';
  ok !$tx->error, 'no error';
  ok $tx2->is_finished, 'transaction is finished';
  is $tx2->res->body, 'Whatever!', 'right content';
  ok !$tx2->error, 'no error';
  ok $tx3->is_finished, 'transaction is finished';
  is $tx3->res->body, 'Whatever!', 'right content';
  ok !$tx3->error, 'no error';
};

subtest 'Form with chunked response' => sub {
  my %params;
  for my $i (1 .. 10) { $params{"test$i"} = $i }
  my $result = '';
  for my $key (sort keys %params) { $result .= $params{$key} }
  my $tx = $ua->post('/chunked' => form => \%params);
  is $tx->res->code, 200, 'right status';
  is $tx->res->body, $result, 'right content';
};

subtest 'Upload' => sub {
  my $result = '';
  my $tx     = $ua->post('/upload' => form => {file => {content => $result}});
  is $tx->res->code, 200, 'right status';
  is $tx->res->body, $result, 'right content';
  ok $tx->local_address, 'has local address';
  ok $tx->local_port > 0, 'has local port';
  ok $tx->original_remote_address, 'has original remote address';
  ok $tx->remote_address,          'has remote address';
  ok $tx->remote_port > 0, 'has remote port';
  ok $local_address, 'has local address';
  ok $local_port > 0, 'has local port';
  ok $remote_address, 'has remote address';
  ok $remote_port > 0, 'has remote port';
};

subtest 'Timeout' => sub {
  my $tx = $ua->get('/timeout');
  ok $tx->keep_alive, 'will be kept alive';
  is $tx->res->code, 200, 'right status';
  is $tx->res->body, 30,  'inactivity timeout was used for the request';
  is(Mojo::IOLoop->stream($tx->res->headers->header('X-Connection-ID'))->timeout,
    5, 'keep-alive timeout was assigned after the request');
};

subtest 'Pipelined' => sub {
  my $daemon = Mojo::Server::Daemon->new({listen => ['http://127.0.0.1'], silent => 1});
  my $port   = $daemon->start->ports->[0];
  is $daemon->app->moniker, 'mojo-hello_world', 'right moniker';
  my $buffer = '';
  my $id;
  $id = Mojo::IOLoop->client(
    {port => $port} => sub {
      my ($loop, $err, $stream) = @_;
      $stream->on(
        read => sub {
          my ($stream, $chunk) = @_;
          $buffer .= $chunk;
          Mojo::IOLoop->remove($id) and Mojo::IOLoop->stop if $buffer =~ s/ is working!.*is working!$//gs;
        }
      );
      $stream->write("GET /pipeline1/ HTTP/1.1\x0d\x0a"
          . "Content-Length: 0\x0d\x0a\x0d\x0a"
          . "GET /pipeline2/ HTTP/1.1\x0d\x0a"
          . "Content-Length: 0\x0d\x0a\x0d\x0a");
    }
  );
  Mojo::IOLoop->start;
  like $buffer, qr/Mojo$/, 'transactions were pipelined';
};

subtest 'Throttling' => sub {
  my $daemon = Mojo::Server::Daemon->new(app => $app, listen => ['http://127.0.0.1'], max_clients => 23, silent => 1);
  is scalar @{$daemon->acceptors}, 0, 'no active acceptors';
  is scalar @{$daemon->start->start->acceptors}, 1, 'one active acceptor';
  is $daemon->ioloop->max_connections, 23, 'right value';
  my $id = $daemon->acceptors->[0];
  ok !!Mojo::IOLoop->acceptor($id), 'acceptor has been added';
  is scalar @{$daemon->stop->acceptors}, 0, 'no active acceptors';
  ok !Mojo::IOLoop->acceptor($id), 'acceptor has been removed';
  is scalar @{$daemon->start->acceptors}, 1, 'one active acceptor';
  $id = $daemon->acceptors->[0];
  ok !!Mojo::IOLoop->acceptor($id), 'acceptor has been added';
  undef $daemon;
  ok !Mojo::IOLoop->acceptor($id), 'acceptor has been removed';
};

subtest 'Single-accept and connection limit' => sub {
  my $loop   = Mojo::IOLoop->new;
  my $daemon = Mojo::Server::Daemon->new(
    app         => $app,
    ioloop      => $loop,
    listen      => ['http://127.0.0.1?single_accept=1'],
    max_clients => 2,
    silent      => 1
  )->start;
  my $acceptor = $loop->acceptor($daemon->acceptors->[0]);
  my @accepting;
  $acceptor->on(
    accept => sub {
      my $acceptor = shift;
      $loop->next_tick(sub {
        push @accepting, $acceptor->is_accepting;
        shift->stop if @accepting == 2;
      });
    }
  );
  $loop->client({port => $acceptor->port} => sub { }) for 1 .. 2;
  $loop->start;
  ok $accepting[0], 'accepting connections';
  ok !$accepting[1], 'connection limit reached';
};

subtest 'Request limit' => sub {
  my $daemon = Mojo::Server::Daemon->new(app => $app, listen => ['http://127.0.0.1'], silent => 1)->start;
  my $port   = $daemon->ports->[0];
  is $daemon->max_requests, 100, 'right value';
  is $daemon->max_requests(2)->max_requests, 2, 'right value';
  my $tx = $ua->get("http://127.0.0.1:$port/keep_alive/1");
  ok $tx->keep_alive, 'will be kept alive';
  is $tx->res->code, 200,         'right status';
  is $tx->res->body, 'Whatever!', 'right content';
  $tx = $ua->get("http://127.0.0.1:$port/keep_alive/1");
  ok !$tx->keep_alive, 'will not be kept alive';
  is $tx->res->code, 200,         'right status';
  is $tx->res->body, 'Whatever!', 'right content';
};

subtest 'File descriptor' => sub {
  my $listen = IO::Socket::INET->new(Listen => 5, LocalAddr => '127.0.0.1');
  my $fd     = fileno $listen;
  my $daemon = Mojo::Server::Daemon->new(app => $app, listen => ["http://127.0.0.1?fd=$fd"], silent => 1)->start;
  my $port   = $listen->sockport;
  is $daemon->ports->[0], $port, 'same port';
  my $tx = $ua->get("http://127.0.0.1:$port/port");
  is $tx->res->code, 200, 'right status';
  is $tx->res->body, $port, 'right content';
};

subtest 'No TLS support' => sub {
  eval { Mojo::Server::Daemon->new(listen => ['https://127.0.0.1'], silent => 1)->start };
  like $@, qr/IO::Socket::SSL/, 'right error';
};

subtest 'Abstract methods' => sub {
  eval { Mojo::Server->run };
  like $@, qr/Method "run" not implemented by subclass/, 'right error';
};

done_testing();