1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-09-09 14:00:17 +00:00
QB64-PE/tests/compile_tests/http/http_error.bas
Matthew Kilgore e8ebf56a2f Add basic http tests
These tests cover basic HTTP functionality via _OPENCLIENT(), and also
that it fails to work without `$Unstable:Http` in place.
2022-11-19 15:13:26 -05:00

18 lines
361 B
QBasic

$Unstable:Http
$Console:Only
ON ERROR GOTO errorhand
' This domain isn't valid at all, an error is triggered
h& = _OpenClient("https://thisisabaddomain")
Print h&
' This gives back a 404, but the connection is still successful in that
' situation.
h& = _OpenClient("https://www.example.com/unknownUrl")
Print h&
System
errorhand:
PRINT ERR; ERL
RESUME NEXT