2019-12-30 07:42:23 +03:00
|
|
|
import net.http
|
2019-07-31 14:38:24 +03:00
|
|
|
|
2019-08-06 14:57:58 +03:00
|
|
|
fn test_http_get() {
|
2020-10-15 16:17:52 +03:00
|
|
|
$if !network ? {
|
|
|
|
return
|
|
|
|
}
|
2019-08-22 22:48:31 +03:00
|
|
|
assert http.get_text('https://vlang.io/version') == '0.1.5'
|
|
|
|
println('http ok')
|
|
|
|
}
|
2019-08-06 14:57:58 +03:00
|
|
|
|
2020-01-16 20:16:11 +03:00
|
|
|
fn test_http_get_from_vlang_utc_now() {
|
2020-10-15 16:17:52 +03:00
|
|
|
$if !network ? {
|
|
|
|
return
|
|
|
|
}
|
2019-08-21 20:04:06 +03:00
|
|
|
urls := ['http://vlang.io/utc_now', 'https://vlang.io/utc_now']
|
|
|
|
for url in urls {
|
2022-11-15 16:53:13 +03:00
|
|
|
println('Test getting current time from ${url} by http.get')
|
2021-06-14 10:08:41 +03:00
|
|
|
res := http.get(url) or { panic(err) }
|
2021-07-24 20:47:45 +03:00
|
|
|
assert res.status() == .ok
|
2022-05-29 20:27:18 +03:00
|
|
|
assert res.body.len > 0
|
|
|
|
assert res.body.int() > 1566403696
|
2022-11-15 16:53:13 +03:00
|
|
|
println('Current time is: ${res.body.int()}')
|
2019-08-21 20:04:06 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn test_public_servers() {
|
2020-10-15 16:17:52 +03:00
|
|
|
$if !network ? {
|
|
|
|
return
|
|
|
|
}
|
2019-08-22 22:48:31 +03:00
|
|
|
urls := [
|
2019-08-21 20:04:06 +03:00
|
|
|
'http://github.com/robots.txt',
|
|
|
|
'http://google.com/robots.txt',
|
|
|
|
'https://github.com/robots.txt',
|
|
|
|
'https://google.com/robots.txt',
|
2020-10-15 16:17:52 +03:00
|
|
|
// 'http://yahoo.com/robots.txt',
|
|
|
|
// 'https://yahoo.com/robots.txt',
|
2019-08-21 20:04:06 +03:00
|
|
|
]
|
|
|
|
for url in urls {
|
2022-11-15 16:53:13 +03:00
|
|
|
println('Testing http.get on public url: ${url} ')
|
2021-06-14 10:08:41 +03:00
|
|
|
res := http.get(url) or { panic(err) }
|
2021-07-24 20:47:45 +03:00
|
|
|
assert res.status() == .ok
|
2022-05-29 20:27:18 +03:00
|
|
|
assert res.body.len > 0
|
2019-08-21 20:04:06 +03:00
|
|
|
}
|
|
|
|
}
|
2020-02-12 16:52:39 +03:00
|
|
|
|
|
|
|
fn test_relative_redirects() {
|
2020-10-15 16:17:52 +03:00
|
|
|
$if !network ? {
|
|
|
|
return
|
|
|
|
} $else {
|
|
|
|
return
|
|
|
|
} // tempfix periodic: httpbin relative redirects are broken
|
2021-06-14 10:08:41 +03:00
|
|
|
res := http.get('https://httpbin.org/relative-redirect/3?abc=xyz') or { panic(err) }
|
2021-07-24 20:47:45 +03:00
|
|
|
assert res.status() == .ok
|
2022-05-29 20:27:18 +03:00
|
|
|
assert res.body.len > 0
|
|
|
|
assert res.body.contains('"abc": "xyz"')
|
2020-02-12 16:52:39 +03:00
|
|
|
}
|