2
0
Fork 0
lighttpd2/tests/t-redirect.py

22 lines
455 B
Python

# -*- coding: utf-8 -*-
from base import *
from requests import *
class TestForceHttps(CurlRequest):
config = """
redirect "https://%{request.host}%{enc:request.path}?%{request.query}";
"""
URL = "/?a_simple_query"
EXPECT_RESPONSE_CODE = 301
EXPECT_RESPONSE_HEADERS = [("Location", "https://forcehttps.redirect/?a_simple_query")]
class Test(GroupTest):
plain_config = """
setup { module_load "mod_redirect"; }
"""
group = [
TestForceHttps,
]