123456789101112131415161718192021222324 |
- /*
- getv6.tst - IPv6 GET tests
- */
- const HTTPV6 = tget('TM_HTTPV6') || "[::1]:8090"
- let http: Http = new Http
- // Basic get. Validate response code and contents
- http.get(HTTPV6 + "/index.html")
- ttrue(http.status == 200)
- // ttrue(http.readString().contains("Hello"))
- // Validate get contents
- http.get(HTTPV6 + "/index.html")
- ttrue(http.readString(12) == "<html><head>")
- // Validate get contents
- http.get(HTTPV6 + "/index.html")
- ttrue(http.response.endsWith("</html>\n"))
- ttrue(http.response.endsWith("</html>\n"))
- // Test Get with a body. Yes this is valid Http, although unusual.
- http.get(HTTPV6 + "/index.html", 'name=John&address=700+Park+Ave')
- ttrue(http.status == 200)
|