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
|
#!/usr/bin/perl
# (C) Dmitry Volyntsev
# (C) Nginx, Inc.
# Tests for http njs module, setting nginx variables.
###############################################################################
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_var test.variable;
js_import test.js;
server {
listen 127.0.0.1:8080;
server_name localhost;
set $foo test.foo_orig;
set $XXXXXXXXXXXXXXXX 1;
location /var_set {
return 200 $test_var$foo;
}
location /content_set {
js_content test.content_set;
}
location /not_found_set {
js_content test.not_found_set;
}
location /variable_lowkey {
js_content test.variable_lowkey;
}
}
}
EOF
$t->write_file('test.js', <<EOF);
function variable(r) {
r.variables.foo = r.variables.arg_a;
return 'test_var';
}
function content_set(r) {
r.variables.foo = r.variables.arg_a;
r.return(200, r.variables.foo);
}
function not_found_set(r) {
try {
r.variables.unknown = 1;
} catch (e) {
r.return(500, e);
}
}
function variable_lowkey(r) {
const name = 'X'.repeat(16);
if (r.args.set) {
r.variables[name] = "1";
} else {
let v = r.variables[name];
}
r.return(200, name);
}
export default {variable, content_set, not_found_set, variable_lowkey};
EOF
$t->try_run('no njs')->plan(5);
###############################################################################
like(http_get('/var_set?a=bar'), qr/test_varbar/, 'var set');
like(http_get('/content_set?a=bar'), qr/bar/, 'content set');
like(http_get('/not_found_set'), qr/variable not found/, 'not found exception');
like(http_get('/variable_lowkey'), qr/X{16}/,
'variable name is not overwritten while reading');
like(http_get('/variable_lowkey?set=1'), qr/X{16}/,
'variable name is not overwritten while setting');
###############################################################################
|