mirror of
https://github.com/emikulic/darkhttpd.git
synced 2023-08-10 21:13:08 +03:00
18 lines
512 B
Python
Executable File
18 lines
512 B
Python
Executable File
#!/usr/bin/env python
|
|
# This is run by the "run-tests" script.
|
|
import unittest
|
|
from test import TestHelper, Conn, parse
|
|
|
|
class TestForward(TestHelper):
|
|
def test_no_server_id(self):
|
|
resp = Conn().get("/", method = 'BOGUS')
|
|
status, hdrs, body = parse(resp)
|
|
self.assertContains(status, "400 Bad Request")
|
|
self.assertFalse(hdrs.has_key("Server"))
|
|
self.assertFalse("Generated by darkhttpd/" in body)
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|
|
|
|
# vim:set ts=4 sw=4 et:
|