Tests: get rid of classes in test files.

Class usage came from the unittest framework and it was always redundant
after migration to the pytest.  This commit removes classes from files
containing tests to make them more readable and understandable.
This commit is contained in:
Andrei Zeliankou
2023-06-14 18:20:09 +01:00
parent c6d05191a0
commit c183bd8749
84 changed files with 17455 additions and 16814 deletions

View File

@@ -1,214 +1,220 @@
import re
import pytest
from unit.applications.proto import TestApplicationProto
from unit.applications.proto import ApplicationProto
client = ApplicationProto()
class TestReturn(TestApplicationProto):
@pytest.fixture(autouse=True)
def setup_method_fixture(self):
self._load_conf(
{
"listeners": {"*:7080": {"pass": "routes"}},
"routes": [{"action": {"return": 200}}],
"applications": {},
}
)
@pytest.fixture(autouse=True)
def setup_method_fixture():
assert 'success' in client.conf(
{
"listeners": {"*:7080": {"pass": "routes"}},
"routes": [{"action": {"return": 200}}],
"applications": {},
}
)
def get_resps_sc(self, req=10):
to_send = b"""GET / HTTP/1.1
def get_resps_sc(req=10):
to_send = b"""GET / HTTP/1.1
Host: localhost
""" * (
req - 1
)
req - 1
)
to_send += b"""GET / HTTP/1.1
to_send += b"""GET / HTTP/1.1
Host: localhost
Connection: close
"""
return self.http(to_send, raw_resp=True, raw=True)
return client.http(to_send, raw_resp=True, raw=True)
def test_return(self):
resp = self.get()
assert resp['status'] == 200
assert 'Server' in resp['headers']
assert 'Date' in resp['headers']
assert resp['headers']['Content-Length'] == '0'
assert resp['headers']['Connection'] == 'close'
assert resp['body'] == '', 'body'
resp = self.post(body='blah')
assert resp['status'] == 200
assert resp['body'] == '', 'body'
def test_return():
resp = client.get()
assert resp['status'] == 200
assert 'Server' in resp['headers']
assert 'Date' in resp['headers']
assert resp['headers']['Content-Length'] == '0'
assert resp['headers']['Connection'] == 'close'
assert resp['body'] == '', 'body'
resp = self.get_resps_sc()
assert len(re.findall('200 OK', resp)) == 10
assert len(re.findall('Connection:', resp)) == 1
assert len(re.findall('Connection: close', resp)) == 1
resp = client.post(body='blah')
assert resp['status'] == 200
assert resp['body'] == '', 'body'
resp = self.get(http_10=True)
assert resp['status'] == 200
assert 'Server' in resp['headers']
assert 'Date' in resp['headers']
assert resp['headers']['Content-Length'] == '0'
assert 'Connection' not in resp['headers']
assert resp['body'] == '', 'body'
resp = get_resps_sc()
assert len(re.findall('200 OK', resp)) == 10
assert len(re.findall('Connection:', resp)) == 1
assert len(re.findall('Connection: close', resp)) == 1
def test_return_update(self):
assert 'success' in self.conf('0', 'routes/0/action/return')
resp = client.get(http_10=True)
assert resp['status'] == 200
assert 'Server' in resp['headers']
assert 'Date' in resp['headers']
assert resp['headers']['Content-Length'] == '0'
assert 'Connection' not in resp['headers']
assert resp['body'] == '', 'body'
resp = self.get()
assert resp['status'] == 0
assert resp['body'] == ''
assert 'success' in self.conf('404', 'routes/0/action/return')
def test_return_update():
assert 'success' in client.conf('0', 'routes/0/action/return')
resp = self.get()
assert resp['status'] == 404
assert resp['body'] != ''
resp = client.get()
assert resp['status'] == 0
assert resp['body'] == ''
assert 'success' in self.conf('598', 'routes/0/action/return')
assert 'success' in client.conf('404', 'routes/0/action/return')
resp = self.get()
assert resp['status'] == 598
assert resp['body'] != ''
resp = client.get()
assert resp['status'] == 404
assert resp['body'] != ''
assert 'success' in self.conf('999', 'routes/0/action/return')
assert 'success' in client.conf('598', 'routes/0/action/return')
resp = self.get()
assert resp['status'] == 999
assert resp['body'] == ''
resp = client.get()
assert resp['status'] == 598
assert resp['body'] != ''
def test_return_location(self):
reserved = ":/?#[]@!&'()*+,;="
unreserved = (
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"
"0123456789-._~"
)
unsafe = " \"%<>\\^`{|}"
unsafe_enc = "%20%22%25%3C%3E%5C%5E%60%7B%7C%7D"
assert 'success' in client.conf('999', 'routes/0/action/return')
def check_location(location, expect=None):
if expect is None:
expect = location
resp = client.get()
assert resp['status'] == 999
assert resp['body'] == ''
assert 'success' in self.conf(
{"return": 301, "location": location}, 'routes/0/action'
), 'configure location'
assert self.get()['headers']['Location'] == expect
def test_return_location():
reserved = ":/?#[]@!&'()*+,;="
unreserved = (
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz" "0123456789-._~"
)
unsafe = " \"%<>\\^`{|}"
unsafe_enc = "%20%22%25%3C%3E%5C%5E%60%7B%7C%7D"
# FAIL: can't specify empty header value.
# check_location("")
def check_location(location, expect=None):
if expect is None:
expect = location
check_location(reserved)
assert 'success' in client.conf(
{"return": 301, "location": location}, 'routes/0/action'
), 'configure location'
# After first "?" all other "?" encoded.
check_location(f'/?{reserved}', "/?:/%3F#[]@!&'()*+,;=")
check_location("???", "?%3F%3F")
assert client.get()['headers']['Location'] == expect
# After first "#" all other "?" or "#" encoded.
check_location(f'/#{reserved}', "/#:/%3F%23[]@!&'()*+,;=")
check_location("##?#?", "#%23%3F%23%3F")
# FAIL: can't specify empty header value.
# check_location("")
# After first "?" next "#" not encoded.
check_location(f'/?#{reserved}', "/?#:/%3F%23[]@!&'()*+,;=")
check_location("??##", "?%3F#%23")
check_location("/?##?", "/?#%23%3F")
check_location(reserved)
# Unreserved never encoded.
check_location(unreserved)
check_location(f'/{unreserved}?{unreserved}#{unreserved}')
# After first "?" all other "?" encoded.
check_location(f'/?{reserved}', "/?:/%3F#[]@!&'()*+,;=")
check_location("???", "?%3F%3F")
# Unsafe always encoded.
check_location(unsafe, unsafe_enc)
check_location(f'?{unsafe}', f'?{unsafe_enc}')
check_location(f'#{unsafe}', f'#{unsafe_enc}')
# After first "#" all other "?" or "#" encoded.
check_location(f'/#{reserved}', "/#:/%3F%23[]@!&'()*+,;=")
check_location("##?#?", "#%23%3F%23%3F")
# %00-%20 and %7F-%FF always encoded.
check_location("\u0000\u0018\u001F\u0020\u0021", "%00%18%1F%20!")
check_location("\u007F\u0080н\u20BD", "%7F%C2%80%D0%BD%E2%82%BD")
# After first "?" next "#" not encoded.
check_location(f'/?#{reserved}', "/?#:/%3F%23[]@!&'()*+,;=")
check_location("??##", "?%3F#%23")
check_location("/?##?", "/?#%23%3F")
# Encoded string detection. If at least one char need to be encoded
# then whole string will be encoded.
check_location("%20")
check_location("/%20?%20#%20")
check_location(" %20", "%20%2520")
check_location("%20 ", "%2520%20")
check_location("/%20?%20#%20 ", "/%2520?%2520#%2520%20")
# Unreserved never encoded.
check_location(unreserved)
check_location(f'/{unreserved}?{unreserved}#{unreserved}')
def test_return_location_edit(self):
assert 'success' in self.conf(
{"return": 302, "location": "blah"}, 'routes/0/action'
), 'configure init location'
assert self.get()['headers']['Location'] == 'blah'
# Unsafe always encoded.
check_location(unsafe, unsafe_enc)
check_location(f'?{unsafe}', f'?{unsafe_enc}')
check_location(f'#{unsafe}', f'#{unsafe_enc}')
assert 'success' in self.conf_delete(
'routes/0/action/location'
), 'location delete'
assert 'Location' not in self.get()['headers']
# %00-%20 and %7F-%FF always encoded.
check_location("\u0000\u0018\u001F\u0020\u0021", "%00%18%1F%20!")
check_location("\u007F\u0080н\u20BD", "%7F%C2%80%D0%BD%E2%82%BD")
assert 'success' in self.conf(
'"blah"', 'routes/0/action/location'
), 'location restore'
assert self.get()['headers']['Location'] == 'blah'
# Encoded string detection. If at least one char need to be encoded
# then whole string will be encoded.
check_location("%20")
check_location("/%20?%20#%20")
check_location(" %20", "%20%2520")
check_location("%20 ", "%2520%20")
check_location("/%20?%20#%20 ", "/%2520?%2520#%2520%20")
assert 'error' in self.conf_post(
'"blah"', 'routes/0/action/location'
), 'location method not allowed'
assert self.get()['headers']['Location'] == 'blah'
assert 'success' in self.conf(
'"https://${host}${uri}"', 'routes/0/action/location'
), 'location with variables'
assert self.get()['headers']['Location'] == 'https://localhost/'
def test_return_location_edit():
assert 'success' in client.conf(
{"return": 302, "location": "blah"}, 'routes/0/action'
), 'configure init location'
assert client.get()['headers']['Location'] == 'blah'
assert 'success' in self.conf(
'"/#$host"', 'routes/0/action/location'
), 'location with encoding and a variable'
assert self.get()['headers']['Location'] == '/#localhost'
assert 'success' in client.conf_delete(
'routes/0/action/location'
), 'location delete'
assert 'Location' not in client.get()['headers']
assert (
self.get(headers={"Host": "#foo?bar", "Connection": "close"})[
'headers'
]['Location']
== "/#%23foo%3Fbar"
), 'location with a variable with encoding'
assert 'success' in client.conf(
'"blah"', 'routes/0/action/location'
), 'location restore'
assert client.get()['headers']['Location'] == 'blah'
assert 'success' in self.conf(
'""', 'routes/0/action/location'
), 'location empty'
assert self.get()['headers']['Location'] == ''
assert 'error' in client.conf_post(
'"blah"', 'routes/0/action/location'
), 'location method not allowed'
assert client.get()['headers']['Location'] == 'blah'
assert 'success' in self.conf(
'"${host}"', 'routes/0/action/location'
), 'location empty with variable'
assert (
self.get(headers={"Host": "", "Connection": "close"})['headers'][
'Location'
]
== ""
), 'location with empty variable'
assert 'success' in client.conf(
'"https://${host}${uri}"', 'routes/0/action/location'
), 'location with variables'
assert client.get()['headers']['Location'] == 'https://localhost/'
def test_return_invalid(self):
def check_error(conf):
assert 'error' in self.conf(conf, 'routes/0/action')
assert 'success' in client.conf(
'"/#$host"', 'routes/0/action/location'
), 'location with encoding and a variable'
assert client.get()['headers']['Location'] == '/#localhost'
check_error({"return": "200"})
check_error({"return": []})
check_error({"return": 80.1})
check_error({"return": 1000})
check_error({"return": -1})
check_error({"return": 200, "share": "/blah"})
check_error({"return": 200, "location": "$hos"})
check_error({"return": 200, "location": "$hostblah"})
assert (
client.get(headers={"Host": "#foo?bar", "Connection": "close"})[
'headers'
]['Location']
== "/#%23foo%3Fbar"
), 'location with a variable with encoding'
assert 'error' in self.conf(
'001', 'routes/0/action/return'
), 'leading zero'
assert 'success' in client.conf(
'""', 'routes/0/action/location'
), 'location empty'
assert client.get()['headers']['Location'] == ''
check_error({"return": 301, "location": 0})
check_error({"return": 301, "location": []})
assert 'success' in client.conf(
'"${host}"', 'routes/0/action/location'
), 'location empty with variable'
assert (
client.get(headers={"Host": "", "Connection": "close"})['headers'][
'Location'
]
== ""
), 'location with empty variable'
def test_return_invalid():
def check_error(conf):
assert 'error' in client.conf(conf, 'routes/0/action')
check_error({"return": "200"})
check_error({"return": []})
check_error({"return": 80.1})
check_error({"return": 1000})
check_error({"return": -1})
check_error({"return": 200, "share": "/blah"})
check_error({"return": 200, "location": "$hos"})
check_error({"return": 200, "location": "$hostblah"})
assert 'error' in client.conf(
'001', 'routes/0/action/return'
), 'leading zero'
check_error({"return": 301, "location": 0})
check_error({"return": 301, "location": []})