aboutsummaryrefslogtreecommitdiff
path: root/nginx/t/js_variables.t
diff options
context:
space:
mode:
authorDmitry Volyntsev <xeioex@nginx.com>2023-05-22 17:59:47 -0700
committerDmitry Volyntsev <xeioex@nginx.com>2023-05-22 17:59:47 -0700
commit7c39d2c23a2152f99f1602a0cb81903c6d15e980 (patch)
tree68292d76ac4b64a458ac6927909355b60b5bb4ee /nginx/t/js_variables.t
parent3cf640f5a041bada0d39d32a27494ffe024767ef (diff)
downloadnjs-7c39d2c23a2152f99f1602a0cb81903c6d15e980.tar.gz
njs-7c39d2c23a2152f99f1602a0cb81903c6d15e980.zip
Tests: imported nginx modules tests from nginx-tests.
Diffstat (limited to 'nginx/t/js_variables.t')
-rw-r--r--nginx/t/js_variables.t95
1 files changed, 95 insertions, 0 deletions
diff --git a/nginx/t/js_variables.t b/nginx/t/js_variables.t
new file mode 100644
index 00000000..f2481e0b
--- /dev/null
+++ b/nginx/t/js_variables.t
@@ -0,0 +1,95 @@
+#!/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;
+
+ 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;
+ }
+ }
+}
+
+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);
+ }
+ }
+
+ export default {variable, content_set, not_found_set};
+
+EOF
+
+$t->try_run('no njs')->plan(3);
+
+###############################################################################
+
+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');
+
+###############################################################################