Tests: Perl script with syntax error.
This commit is contained in:
5
test/perl/syntax_error/psgi.pl
Normal file
5
test/perl/syntax_error/psgi.pl
Normal file
@@ -0,0 +1,5 @@
|
||||
my $app = sub {
|
||||
my ($environ) = @_
|
||||
|
||||
return ['200', [], []];
|
||||
};
|
||||
@@ -135,6 +135,16 @@ class TestUnitPerlApplication(unit.TestUnitApplicationPerl):
|
||||
|
||||
self.assertEqual(self.get()['body'], 'body\n', 'body io file')
|
||||
|
||||
@unittest.expectedFailure
|
||||
def test_perl_application_syntax_error(self):
|
||||
self.skip_alerts.extend([
|
||||
r'PSGI: Failed to parse script',
|
||||
r'process \d+ exited on signal'
|
||||
])
|
||||
self.load('syntax_error')
|
||||
|
||||
self.assertEqual(self.get()['status'], 500, 'syntax error')
|
||||
|
||||
def test_perl_keepalive_body(self):
|
||||
self.load('variables')
|
||||
|
||||
|
||||
Reference in New Issue
Block a user