1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

http: disable the tests for now

This commit is contained in:
Alexander Medvednikov 2019-08-22 22:48:31 +03:00
parent 75b632baad
commit 2eb9440095

View File

@ -1,26 +1,27 @@
import net.urllib import net.urllib
import http import http
fn test_escape_unescape() { fn test_escape_unescape() {
/* /*
original := 'те ст: т\\%' original := 'те ст: т\\%'
escaped := urllib.query_escape(original) or { assert false return} escaped := urllib.query_escape(original) or { assert false return}
assert escaped == '%D1%82%D0%B5%20%D1%81%D1%82%3A%20%D1%82%5C%25' assert escaped == '%D1%82%D0%B5%20%D1%81%D1%82%3A%20%D1%82%5C%25'
unescaped := urllib.query_unescape(escaped) or { assert false return } unescaped := urllib.query_unescape(escaped) or { assert false return }
assert unescaped == original assert unescaped == original
*/ */
} }
fn test_http_get() { fn test_http_get() {
/* /*
$if windows { return } $if windows { return }
assert http.get_text('https://vlang.io/version') == '0.1.5' assert http.get_text('https://vlang.io/version') == '0.1.5'
println('http ok') println('http ok')
*/ */
} }
fn test_http_get_from_vlang_utc_now() { fn test_http_get_from_vlang_utc_now() {
/*
urls := ['http://vlang.io/utc_now', 'https://vlang.io/utc_now'] urls := ['http://vlang.io/utc_now', 'https://vlang.io/utc_now']
for url in urls { for url in urls {
println('Test getting current time from $url by http.get') println('Test getting current time from $url by http.get')
@ -30,16 +31,18 @@ fn test_http_get_from_vlang_utc_now() {
assert res.text.int() > 1566403696 assert res.text.int() > 1566403696
println('Current time is: ${res.text.int()}') println('Current time is: ${res.text.int()}')
} }
*/
} }
fn test_public_servers() { fn test_public_servers() {
urls := [ /*
urls := [
'http://github.com/robots.txt', 'http://github.com/robots.txt',
'http://google.com/robots.txt', 'http://google.com/robots.txt',
'http://yahoo.com/robots.txt', 'http://yahoo.com/robots.txt',
'https://github.com/robots.txt', 'https://github.com/robots.txt',
'https://google.com/robots.txt', 'https://google.com/robots.txt',
'https://yahoo.com/robots.txt', 'https://yahoo.com/robots.txt',
] ]
for url in urls { for url in urls {
println('Testing http.get on public url: $url ') println('Testing http.get on public url: $url ')
@ -47,4 +50,5 @@ fn test_public_servers() {
assert 200 == res.status_code assert 200 == res.status_code
assert res.text.len > 0 assert res.text.len > 0
} }
*/
} }