-
Notifications
You must be signed in to change notification settings - Fork 166
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Previously, it ignored changes to environment variables introduced with "env" directive.
- Loading branch information
Showing
3 changed files
with
205 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
#!/usr/bin/perl | ||
|
||
# (C) Dmitry Volyntsev | ||
# (C) Nginx, Inc. | ||
|
||
# Tests for http njs module, process object. | ||
|
||
############################################################################### | ||
|
||
use warnings; | ||
use strict; | ||
|
||
use Test::More; | ||
use Socket qw/ CRLF /; | ||
|
||
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/) | ||
->write_file_expand('nginx.conf', <<'EOF'); | ||
%%TEST_GLOBALS%% | ||
daemon off; | ||
events { | ||
} | ||
env FOO=bar; | ||
env BAR=baz; | ||
http { | ||
%%TEST_GLOBALS_HTTP%% | ||
js_import test.js; | ||
server { | ||
listen 127.0.0.1:8080; | ||
server_name localhost; | ||
location /argv { | ||
js_content test.argv; | ||
} | ||
location /env { | ||
js_content test.env; | ||
} | ||
location /env_keys { | ||
js_content test.env_keys; | ||
} | ||
} | ||
} | ||
EOF | ||
|
||
$t->write_file('test.js', <<EOF); | ||
function argv(r) { | ||
var av = process.argv; | ||
r.return(200,`\${Array.isArray(av)} \${av[0].indexOf('nginx') >= 0}`); | ||
} | ||
function env(r) { | ||
var e = process.env[r.args.var]; | ||
r.return(200, e ? e : 'undefined'); | ||
} | ||
function env_keys(r) { | ||
r.return(200, Object.keys(process.env).join(',')); | ||
} | ||
export default { argv, env, env_keys }; | ||
EOF | ||
|
||
$t->try_run('no njs process object')->plan(4); | ||
|
||
############################################################################### | ||
|
||
like(http_get('/argv'), qr/true true/, 'argv'); | ||
like(http_get('/env?var=FOO'), qr/bar/, 'env FOO'); | ||
like(http_get('/env?var=BAR'), qr/baz/, 'env BAR'); | ||
like(http_get('/env_keys'), qr/FOO,BAR/, 'env keys'); | ||
|
||
############################################################################### |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,109 @@ | ||
#!/usr/bin/perl | ||
|
||
# (C) Dmitry Volyntsev | ||
# (C) Nginx, Inc. | ||
|
||
# Tests for stream njs module, process object. | ||
|
||
############################################################################### | ||
|
||
use warnings; | ||
use strict; | ||
|
||
use Test::More; | ||
|
||
BEGIN { use FindBin; chdir($FindBin::Bin); } | ||
|
||
use lib 'lib'; | ||
use Test::Nginx; | ||
use Test::Nginx::Stream qw/ stream /; | ||
|
||
############################################################################### | ||
|
||
select STDERR; $| = 1; | ||
select STDOUT; $| = 1; | ||
|
||
my $t = Test::Nginx->new()->has(qw/stream stream_return/) | ||
->write_file_expand('nginx.conf', <<'EOF'); | ||
%%TEST_GLOBALS%% | ||
daemon off; | ||
events { | ||
} | ||
env FOO=bar; | ||
env BAR=baz; | ||
stream { | ||
%%TEST_GLOBALS_STREAM%% | ||
js_import test.js; | ||
js_set $env_foo test.env_foo; | ||
js_set $env_bar test.env_bar; | ||
js_set $env_keys test.env_keys; | ||
js_set $argv test.argv; | ||
server { | ||
listen 127.0.0.1:8081; | ||
return $env_foo; | ||
} | ||
server { | ||
listen 127.0.0.1:8082; | ||
return $env_bar; | ||
} | ||
server { | ||
listen 127.0.0.1:8083; | ||
return $env_keys; | ||
} | ||
server { | ||
listen 127.0.0.1:8084; | ||
return $argv; | ||
} | ||
} | ||
EOF | ||
|
||
$t->write_file('test.js', <<EOF); | ||
function env(s, v) { | ||
var e = process.env[v]; | ||
return e ? e : 'undefined'; | ||
} | ||
function env_foo(s) { | ||
return env(s, 'FOO'); | ||
} | ||
function env_bar(s) { | ||
return env(s, 'BAR'); | ||
} | ||
function env_keys(s) { | ||
return Object.keys(process.env).join(','); | ||
} | ||
function argv(r) { | ||
var av = process.argv; | ||
return `\${Array.isArray(av)} \${av[0].indexOf('nginx') >= 0}`; | ||
} | ||
export default { env_foo, env_bar, env_keys, argv }; | ||
EOF | ||
|
||
$t->try_run('no njs stream session object')->plan(4); | ||
|
||
############################################################################### | ||
|
||
is(stream('127.0.0.1:' . port(8081))->read(), 'bar', 'env_foo'); | ||
is(stream('127.0.0.1:' . port(8082))->read(), 'baz', 'env_bar'); | ||
is(stream('127.0.0.1:' . port(8083))->read(), 'FOO,BAR', 'env_keys'); | ||
is(stream('127.0.0.1:' . port(8084))->read(), 'true true', 'argv'); | ||
|
||
############################################################################### |