summaryrefslogtreecommitdiffhomepage
path: root/test
diff options
context:
space:
mode:
authorMax Romanov <max.romanov@nginx.com>2020-11-05 16:11:01 +0300
committerMax Romanov <max.romanov@nginx.com>2020-11-05 16:11:01 +0300
commitfc9a012ceb83edc5511dccb55a90ea15ab52f337 (patch)
tree4a2e6eb1325fad1f57286d346e1b3fb3e153ad53 /test
parentd321d454f9304b083d62280d0621f282a74047ee (diff)
downloadunit-fc9a012ceb83edc5511dccb55a90ea15ab52f337.tar.gz
unit-fc9a012ceb83edc5511dccb55a90ea15ab52f337.tar.bz2
Tests: added Perl threading tests.
Diffstat (limited to 'test')
-rw-r--r--test/perl/threads/psgi.pl11
-rw-r--r--test/test_perl_application.py41
2 files changed, 52 insertions, 0 deletions
diff --git a/test/perl/threads/psgi.pl b/test/perl/threads/psgi.pl
new file mode 100644
index 00000000..dce28f7d
--- /dev/null
+++ b/test/perl/threads/psgi.pl
@@ -0,0 +1,11 @@
+my $app = sub {
+ my ($environ) = @_;
+
+ sleep int($environ->{'HTTP_X_DELAY'});
+
+ return ['200', [
+ 'Content-Length' => 0,
+ 'Psgi-Multithread' => $environ->{'psgi.multithread'},
+ 'X-Thread' => $environ->{'psgi.input'}
+ ], []];
+};
diff --git a/test/test_perl_application.py b/test/test_perl_application.py
index acd76626..78f2dd90 100644
--- a/test/test_perl_application.py
+++ b/test/test_perl_application.py
@@ -238,3 +238,44 @@ class TestPerlApplication(TestApplicationPerl):
assert resp['status'] == 200, 'status'
assert resp['body'] == 'Hello World!', 'body'
+
+ def test_perl_application_threads(self):
+ self.load('threads')
+
+ assert 'success' in self.conf(
+ '4', 'applications/threads/threads'
+ ), 'configure 4 threads'
+
+ socks = []
+
+ for i in range(4):
+ (_, sock) = self.get(
+ headers={
+ 'Host': 'localhost',
+ 'X-Delay': '2',
+ 'Connection': 'close',
+ },
+ no_recv=True,
+ start=True,
+ )
+
+ socks.append(sock)
+
+ threads = set()
+
+ for sock in socks:
+ resp = self.recvall(sock).decode('utf-8')
+
+ self.log_in(resp)
+
+ resp = self._resp_to_dict(resp)
+
+ assert resp['status'] == 200, 'status'
+
+ threads.add(resp['headers']['X-Thread'])
+
+ assert resp['headers']['Psgi-Multithread'] == '1', 'multithread'
+
+ sock.close()
+
+ assert len(socks) == len(threads), 'threads differs'