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
|
use Mojo::Base -strict;
BEGIN {
$ENV{MOJO_NO_IPV6} = 1;
$ENV{MOJO_REACTOR} = 'Mojo::Reactor::Poll';
}
use Test::More;
use Mojo::ByteStream 'b';
use Mojo::JSON 'encode_json';
use Mojolicious::Lite;
use Test::Mojo;
websocket '/echo' => sub {
my $c = shift;
$c->tx->max_websocket_size(262145)->with_compression;
$c->on(binary => sub { shift->send({binary => shift}) });
$c->on(
text => sub {
my ($c, $bytes) = @_;
$c->send("echo: $bytes");
}
);
};
get '/echo' => {text => 'plain echo!'};
websocket '/no_compression' => sub {
my $c = shift;
$c->on(binary => sub { shift->send({binary => shift}) });
};
websocket '/json' => sub {
my $c = shift;
$c->on(
json => sub {
my ($c, $json) = @_;
return $c->send({json => $json}) unless ref $json;
return $c->send({json => [@$json, 4]}) if ref $json eq 'ARRAY';
$json->{test} += 1;
$c->send({json => $json});
}
);
};
get '/plain' => {text => 'Nothing to see here!'};
websocket '/push' => sub {
my $c = shift;
my $id = Mojo::IOLoop->recurring(0.1 => sub { $c->send('push') });
$c->on(finish => sub { Mojo::IOLoop->remove($id) });
};
websocket '/unicode' => sub {
my $c = shift;
$c->on(
message => sub {
my ($c, $msg) = @_;
$c->send("♥: $msg");
}
);
};
websocket '/bytes' => sub {
my $c = shift;
$c->on(
frame => sub {
my ($ws, $frame) = @_;
$ws->send({$frame->[4] == 2 ? 'binary' : 'text', $frame->[5]});
}
);
};
websocket '/once' => sub {
my $c = shift;
$c->on(
message => sub {
my ($c, $msg) = @_;
$c->send("ONE: $msg");
}
);
$c->tx->once(
message => sub {
my ($tx, $msg) = @_;
$c->send("TWO: $msg");
}
);
};
under '/nested';
websocket sub {
my $c = shift;
my $echo = $c->cookie('echo') // '';
$c->cookie(echo => 'again');
$c->on(
message => sub {
my ($c, $msg) = @_;
$c->send("nested echo: $msg$echo")->finish(1000);
}
);
};
get {text => 'plain nested!'};
post {data => 'plain nested too!'};
my $t = Test::Mojo->new;
# Simple roundtrip
$t->websocket_ok('/echo')->send_ok('hello')->message_ok('got a message')
->message_is('echo: hello')->finish_ok;
# Multiple roundtrips
$t->websocket_ok('/echo')->send_ok('hello again')
->message_ok->message_is('echo: hello again')->send_ok('and one more time')
->message_ok->message_is('echo: and one more time')->finish_ok;
# Custom headers and protocols
my $headers = {DNT => 1, 'Sec-WebSocket-Key' => 'NTA2MDAyMDU1NjMzNjkwMg=='};
$t->websocket_ok('/echo' => $headers => ['foo', 'bar', 'baz'])
->header_is('Sec-WebSocket-Accept' => 'I+x5C3/LJxrmDrWw42nMP4pCSes=')
->header_is('Sec-WebSocket-Protocol' => 'foo')->send_ok('hello')
->message_ok->message_is('echo: hello')->finish_ok;
is $t->tx->req->headers->dnt, 1, 'right "DNT" value';
is $t->tx->req->headers->sec_websocket_protocol, 'foo, bar, baz',
'right "Sec-WebSocket-Protocol" value';
# Bytes
$t->websocket_ok('/echo')->send_ok({binary => 'bytes!'})
->message_ok->message_is({binary => 'bytes!'})
->send_ok({binary => 'bytes!'})
->message_ok->message_isnt({text => 'bytes!'})->finish_ok;
# Bytes in multiple frames
$t->websocket_ok('/echo')->send_ok([0, 0, 0, 0, 2, 'a'])
->send_ok([0, 0, 0, 0, 0, 'b'])->send_ok([1, 0, 0, 0, 0, 'c'])
->message_ok->message_is({binary => 'abc'})->finish_ok;
# Zero
$t->websocket_ok('/echo')->send_ok(0)->message_ok->message_is('echo: 0')
->send_ok(0)->message_ok->message_like({text => qr/0/})->finish_ok(1000)
->finished_ok(1000);
# 64-bit binary message (extended limit)
$t->request_ok($t->ua->build_websocket_tx('/echo'));
is $t->tx->max_websocket_size, 262144, 'right size';
$t->tx->max_websocket_size(262145);
$t->send_ok({binary => 'a' x 262145})
->message_ok->message_is({binary => 'a' x 262145})
->finish_ok->finished_ok(1005);
# 64-bit binary message (too large)
$t->websocket_ok('/echo')->send_ok({binary => 'b' x 262145})
->finished_ok(1009);
# Binary message in two 64-bit frames without FIN bit (too large)
$t->websocket_ok('/echo')->send_ok([0, 0, 0, 0, 2, 'c' x 100000])
->send_ok([0, 0, 0, 0, 0, 'c' x 162146])->finished_ok(1009);
# Plain alternative
$t->get_ok('/echo')->status_is(200)->content_is('plain echo!');
# Compression denied by the server
$t->websocket_ok(
'/no_compression' => {'Sec-WebSocket-Extensions' => 'permessage-deflate'});
is $t->tx->req->headers->sec_websocket_extensions, 'permessage-deflate',
'right "Sec-WebSocket-Extensions" value';
ok !$t->tx->compressed, 'WebSocket has no compression';
$t->send_ok({binary => 'a' x 500})
->message_ok->message_is({binary => 'a' x 500})->finish_ok;
# Compressed message ("permessage-deflate")
$t->websocket_ok(
'/echo' => {'Sec-WebSocket-Extensions' => 'permessage-deflate'});
ok $t->tx->compressed, 'WebSocket has compression';
$t->send_ok({binary => 'a' x 50000})
->header_is('Sec-WebSocket-Extensions' => 'permessage-deflate');
is $t->tx->req->headers->sec_websocket_extensions, 'permessage-deflate',
'right "Sec-WebSocket-Extensions" value';
my $payload;
$t->tx->once(
frame => sub {
my ($tx, $frame) = @_;
$payload = $frame->[5];
}
);
$t->message_ok->message_is({binary => 'a' x 50000});
ok length $payload < 262145, 'message has been compressed';
$t->finish_ok->finished_ok(1005);
# Compressed message exceeding the limit when decompressed
$t->websocket_ok(
'/echo' => {'Sec-WebSocket-Extensions' => 'permessage-deflate'})
->header_is('Sec-WebSocket-Extensions' => 'permessage-deflate')
->send_ok({binary => 'a' x 1000000})->finished_ok(1009);
# Huge message that doesn't compress very well
my $huge = join '', map { int rand(9) } 1 .. 262144;
$t->websocket_ok(
'/echo' => {'Sec-WebSocket-Extensions' => 'permessage-deflate'})
->send_ok({binary => $huge})->message_ok->message_is({binary => $huge})
->finish_ok;
# JSON roundtrips
$t->websocket_ok('/json')->send_ok({json => {test => 23, snowman => '☃'}})
->message_ok->json_message_is('' => {test => 24, snowman => '☃'})
->json_message_is('' => {test => 24, snowman => '☃'})
->json_message_has('/test')->json_message_hasnt('/test/2')
->send_ok({binary => encode_json([1, 2, 3])})
->message_ok->json_message_is([1, 2, 3, 4])->json_message_is([1, 2, 3, 4])
->send_ok({binary => encode_json([1, 2, 3])})
->message_ok->json_message_has('/2', 'has two elements')
->json_message_is('/2' => 3, 'right value')
->json_message_hasnt('/5', 'not five elements')
->send_ok({json => {'☃' => [1, 2, 3]}})
->message_ok->json_message_is('/☃', [1, 2, 3])
->json_message_like('/☃/1' => qr/\d/)
->json_message_unlike('/☃/1' => qr/[a-z]/)
->json_message_like('/☃/2' => qr/3/, 'right value')
->json_message_unlike('/☃/2' => qr/2/, 'different value')
->send_ok({json => 'works'})->message_ok->json_message_is('works')
->send_ok({json => undef})->message_ok->json_message_is(undef)->finish_ok;
# Plain request
$t->get_ok('/plain')->status_is(200)->content_is('Nothing to see here!');
# Server push
$t->websocket_ok('/push')->message_ok->message_is('push')
->message_ok->message_is('push')->message_ok->message_is('push')->finish_ok;
$t->websocket_ok('/push')->message_ok->message_unlike(qr/shift/)
->message_ok->message_isnt('shift')->message_ok->message_like(qr/us/)
->message_ok->message_unlike({binary => qr/push/})->finish_ok;
# Another plain request
$t->get_ok('/plain')->status_is(200)->content_is('Nothing to see here!');
# Multiple roundtrips
$t->websocket_ok('/echo')->send_ok('hello')
->message_ok->message_is('echo: hello')->finish_ok;
$t->websocket_ok('/echo')->send_ok('this')->send_ok('just')->send_ok('works')
->message_ok->message_is('echo: this')->message_ok->message_is('echo: just')
->message_ok->message_is('echo: works')->message_like(qr/orks/)->finish_ok;
# Another plain request
$t->get_ok('/plain')->status_is(200)->content_is('Nothing to see here!');
# Unicode roundtrips
$t->websocket_ok('/unicode')->send_ok('hello')
->message_ok->message_is('♥: hello')->finish_ok;
$t->websocket_ok('/unicode')->send_ok('hello again')
->message_ok->message_is('♥: hello again')
->send_ok('and one ☃ more time')
->message_ok->message_is('♥: and one ☃ more time')->finish_ok;
# Binary frame and events
my $bytes = b("I ♥ Mojolicious")->encode('UTF-16LE')->to_string;
$t->websocket_ok('/bytes');
my $binary;
$t->tx->on(
frame => sub {
my ($ws, $frame) = @_;
$binary++ if $frame->[4] == 2;
}
);
my $close;
$t->tx->on(finish => sub { shift; $close = [@_] });
$t->send_ok({binary => $bytes})->message_ok->message_is($bytes);
ok $binary, 'received binary frame';
$binary = undef;
$t->send_ok({text => $bytes})->message_ok->message_is($bytes);
ok !$binary, 'received text frame';
$t->finish_ok(1000 => 'Have a nice day!');
is_deeply $close, [1000, 'Have a nice day!'], 'right status and message';
# Binary roundtrips
$t->request_ok($t->ua->build_websocket_tx('/bytes'))
->send_ok({binary => $bytes})->message_ok->message_is($bytes)
->send_ok({binary => $bytes})->message_ok->message_is($bytes)->finish_ok;
# Two responses
$t->websocket_ok('/once')->send_ok('hello')
->message_ok->message_is('ONE: hello')->message_ok->message_is('TWO: hello')
->send_ok('hello')->message_ok->message_is('ONE: hello')->send_ok('hello')
->message_ok->message_is('ONE: hello')->finish_ok;
# Nested WebSocket
$t->websocket_ok('/nested')->send_ok('hello')
->message_ok->message_is('nested echo: hello')->finished_ok(1000);
# Test custom message
$t->message([binary => 'foobarbaz'])->message_like(qr/bar/)
->message_is({binary => 'foobarbaz'});
# Nested WebSocket with cookie
$t->websocket_ok('/nested')->send_ok('hello')
->message_ok->message_is('nested echo: helloagain')->finished_ok(1000);
# Nested plain request
$t->get_ok('/nested')->status_is(200)->content_is('plain nested!');
# Another nested plain request
$t->post_ok('/nested')->status_is(200)->content_is('plain nested too!');
done_testing();
|