diff options
author | Max Romanov <max.romanov@nginx.com> | 2020-11-05 16:11:01 +0300 |
---|---|---|
committer | Max Romanov <max.romanov@nginx.com> | 2020-11-05 16:11:01 +0300 |
commit | fc9a012ceb83edc5511dccb55a90ea15ab52f337 (patch) | |
tree | 4a2e6eb1325fad1f57286d346e1b3fb3e153ad53 /test | |
parent | d321d454f9304b083d62280d0621f282a74047ee (diff) | |
download | unit-fc9a012ceb83edc5511dccb55a90ea15ab52f337.tar.gz unit-fc9a012ceb83edc5511dccb55a90ea15ab52f337.tar.bz2 |
Tests: added Perl threading tests.
Diffstat (limited to 'test')
-rw-r--r-- | test/perl/threads/psgi.pl | 11 | ||||
-rw-r--r-- | test/test_perl_application.py | 41 |
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' |