mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
48 lines
1.3 KiB
V
48 lines
1.3 KiB
V
module http
|
|
|
|
fn test_response_bytestr_1() {
|
|
resp := new_response(
|
|
status: .ok
|
|
text: 'Foo' // TODO: replace with `body` once deprecaped
|
|
)
|
|
assert resp.bytestr() == 'HTTP/1.1 200 OK\r\n' + 'Content-Length: 3\r\n' + '\r\n' + 'Foo'
|
|
}
|
|
|
|
fn test_response_bytestr_2() {
|
|
resp := new_response(
|
|
status: .found
|
|
body: 'Foo'
|
|
header: new_header(key: .location, value: '/')
|
|
)
|
|
lines := resp.bytestr().split_into_lines()
|
|
assert lines[0] == 'HTTP/1.1 302 Found'
|
|
// header order is not guaranteed
|
|
check_headers(['Location: /', 'Content-Length: 3'], lines[1..3])!
|
|
assert lines[3] == ''
|
|
assert lines[4] == 'Foo'
|
|
}
|
|
|
|
// check_headers is a helper function for asserting all expected headers
|
|
// are found because rendered header order is not guaranteed. The check
|
|
// is O(n^2) which is fine for small lists.
|
|
fn check_headers(expected []string, found []string) ! {
|
|
assert expected.len == found.len
|
|
for header in expected {
|
|
if !found.contains(header) {
|
|
return error('expected header "${header}" not in ${found}')
|
|
}
|
|
}
|
|
}
|
|
|
|
fn test_parse_response() {
|
|
content := 'HTTP/1.1 200 OK\r\nContent-Length: 3\r\n\r\nFoo'
|
|
x := parse_response(content)!
|
|
assert x.http_version == '1.1'
|
|
assert x.status_code == 200
|
|
assert x.status_msg == 'OK'
|
|
assert x.header.contains(.content_length)
|
|
assert x.header.get(.content_length)! == '3'
|
|
assert x.body == 'Foo'
|
|
assert x.text == 'Foo'
|
|
}
|