# HG changeset patch # User Dmitry Volyntsev # Date 1521642644 -10800 # Node ID 25de201c8a0d7ed318fec8514cec3ccb4b58dd67 # Parent 42577a840a7db92fcecd6ee95a1e773904906920 Tests: added njs async tests. diff --git a/js_async.t b/js_async.t new file mode 100644 --- /dev/null +++ b/js_async.t @@ -0,0 +1,183 @@ +#!/usr/bin/perl + +# (C) Dmitry Volyntsev +# (C) Nginx, Inc. + +# Async tests for http JavaScript module. + +############################################################################### + +use warnings; +use strict; + +use Test::More; + +BEGIN { use FindBin; chdir($FindBin::Bin); } + +use lib 'lib'; +use Test::Nginx; + +############################################################################### + +select STDERR; $| = 1; +select STDOUT; $| = 1; + +my $t = Test::Nginx->new()->has(qw/http rewrite/) + ->write_file_expand('nginx.conf', <<'EOF'); + +%%TEST_GLOBALS%% + +daemon off; + +events { +} + +http { + %%TEST_GLOBALS_HTTP%% + + js_set $test_async set_timeout; + js_set $context_var context_var; + + js_include test.js; + + server { + listen 127.0.0.1:8080; + server_name localhost; + + location /async_var { + return 200 $test_async; + } + + location /shared_ctx { + add_header H $context_var; + js_content shared_ctx; + } + + location /set_timeout { + js_content set_timeout; + } + + location /set_timeout_many { + js_content set_timeout_many; + } + + location /set_timeout_data { + postpone_output 0; + js_content set_timeout_data; + } + + location /limit_rate { + postpone_output 0; + sendfile_max_chunk 5; + js_content limit_rate; + } + } +} + +EOF + +$t->write_file('test.js', <try_run('no njs available')->plan(7); + +############################################################################### + +like(http_get('/set_timeout'), qr/Content-Type: foo/, 'setTimeout'); +like(http_get('/set_timeout_many'), qr/Content-Type: reply/, 'setTimeout many'); +like(http_get('/set_timeout_data'), qr/123456789/, 'setTimeout data'); +like(http_get('/shared_ctx?a=xxx'), qr/H: xxx/, 'shared context'); +like(http_get('/limit_rate'), qr/A{50}/, 'limit_rate'); + +http_get('/async_var'); + +$t->stop(); + +ok(index($t->read_file('error.log'), 'pending events') > 0, + 'pending js events'); +ok(index($t->read_file('error.log'), 'async operation inside') > 0, + 'async op in var handler'); + +###############################################################################