mirror of
https://github.com/emikulic/darkhttpd.git
synced 2023-08-10 21:13:08 +03:00
28 lines
963 B
Python
Executable File
28 lines
963 B
Python
Executable File
#!/usr/bin/env python
|
|
# This is run by the "cover" script.
|
|
import unittest
|
|
from test import TestHelper, Conn, parse
|
|
|
|
class TestForward(TestHelper):
|
|
def test_forward_root(self):
|
|
resp = Conn().get("/", req_hdrs = { "Host": "example.com" })
|
|
status, hdrs, body = parse(resp)
|
|
self.assertContains(status, "301 Moved Permanently")
|
|
expect = "http://www.example.com/"
|
|
self.assertEquals(hdrs["Location"], expect)
|
|
self.assertContains(body, expect)
|
|
|
|
def test_forward_relative(self):
|
|
resp = Conn().get("/foo/bar",
|
|
req_hdrs = { "Host": "secure.example.com" })
|
|
status, hdrs, body = parse(resp)
|
|
self.assertContains(status, "301 Moved Permanently")
|
|
expect = "https://www.example.com/secure/foo/bar"
|
|
self.assertEquals(hdrs["Location"], expect)
|
|
self.assertContains(body, expect)
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|
|
|
|
# vim:set ts=4 sw=4 et:
|