mirror of
https://github.com/emikulic/darkhttpd.git
synced 2023-08-10 21:13:08 +03:00
Implement --no-server-id
Suggested by: T.Ramirez
This commit is contained in:
16
devel/test_server_id.py
Executable file
16
devel/test_server_id.py
Executable file
@@ -0,0 +1,16 @@
|
||||
#!/usr/bin/env python
|
||||
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:
|
||||
Reference in New Issue
Block a user