diff options
author | Andrey Zelenkov <zelenkov@nginx.com> | 2019-03-01 17:13:51 +0300 |
---|---|---|
committer | Andrey Zelenkov <zelenkov@nginx.com> | 2019-03-01 17:13:51 +0300 |
commit | 754b85c3eedc6717b9bb94fe82a80f36f25a3e9f (patch) | |
tree | 4b97fd2e07beccc8e218a2ee7363952be2689d4f | |
parent | d92feef571696c4e0ec837fd7f7e237aea038af4 (diff) | |
download | unit-754b85c3eedc6717b9bb94fe82a80f36f25a3e9f.tar.gz unit-754b85c3eedc6717b9bb94fe82a80f36f25a3e9f.tar.bz2 |
Tests: Perl streaming body and delayed response simple tests.
-rw-r--r-- | test/perl/delayed_response/psgi.pl | 10 | ||||
-rw-r--r-- | test/perl/streaming_body/psgi.pl | 13 | ||||
-rw-r--r-- | test/test_perl_application.py | 16 |
3 files changed, 39 insertions, 0 deletions
diff --git a/test/perl/delayed_response/psgi.pl b/test/perl/delayed_response/psgi.pl new file mode 100644 index 00000000..f934c3a7 --- /dev/null +++ b/test/perl/delayed_response/psgi.pl @@ -0,0 +1,10 @@ +my $app = sub { + my ($environ) = @_; + + return sub { + (my $responder = shift)->([200, [ + 'Content-Type' => 'text/plain', + 'Content-Length' => '12' + ], ["Hello World!"]]); + } +}; diff --git a/test/perl/streaming_body/psgi.pl b/test/perl/streaming_body/psgi.pl new file mode 100644 index 00000000..a3e54ee0 --- /dev/null +++ b/test/perl/streaming_body/psgi.pl @@ -0,0 +1,13 @@ +my $app = sub { + my ($environ) = @_; + + return sub { + my $writer = (my $responder = shift)->([200, [ + 'Content-Type' => 'text/plain', + 'Content-Length' => '12' + ]]); + + $writer->write("Hello World!"); + $writer->close; + }; +}; diff --git a/test/test_perl_application.py b/test/test_perl_application.py index 4609c2bd..b169baab 100644 --- a/test/test_perl_application.py +++ b/test/test_perl_application.py @@ -200,5 +200,21 @@ class TestUnitPerlApplication(unit.TestUnitApplicationPerl): self.search_in_log(r'\[error\].+IOFake close\(\) called'), 'body io fake close') + def test_perl_delayed_response(self): + self.load('delayed_response') + + resp = self.get() + + self.assertEqual(resp['status'], 200, 'status') + self.assertEqual(resp['body'], 'Hello World!', 'body') + + def test_perl_streaming_body(self): + self.load('streaming_body') + + resp = self.get() + + self.assertEqual(resp['status'], 200, 'status') + self.assertEqual(resp['body'], 'Hello World!', 'body') + if __name__ == '__main__': TestUnitPerlApplication.main() |