gaulthiergain-tools/testfiles/test_http.json
2020-09-16 09:14:26 +02:00

31 lines
No EOL
1.4 KiB
JSON

{
"typeTest": "exec",
"timeMsCommand": 1000,
"listCommands": [
"curl -v http://localhost:80",
"curl -v -k http://localhost:80",
"curl -v http://localhost:80/index.html",
"curl -v http://localhost:80/",
"curl -d 'id=0&name=test' http://localhost:80",
"curl -d '{\"id\":9,\",name\",:\",test\",}' -H 'Content-Type: application/json' http://localhost:80",
"curl -X DELETE http://localhost:80/test",
"curl -o newfile.tar.gz http://localhost:80/file.tar.gz",
"curl -C - -O http://localhost:80/file.tar.gz",
"curl -I http://localhost:80/",
"curl --data \"firstName=John&lastName=Doe\", http://localhost:80/info.php",
"curl -I http://localhost:80 --user-agent \"I am a new web browser\",",
"curl --cookie-jar cnncookies.txt http://localhost:80/ -O",
"curl --cookie cnncookies.txt http://localhost:80/",
"curl -s -O http://localhost:80/",
"curl --limit-rate 100K http://localhost:80/ -O",
"curl -OL http://localhost:80/",
"curl -I --http2 http://localhost:80/",
"curl -I --http2 -s http://localhost:80/ | grep HTTP",
"curl http://localhost:80/",
"curl -L http://localhost:80/",
"curl -A \"Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Firefox/60.0\", http://localhost:80/",
"curl -u username:password http://localhost:80/",
"curl -v http://localhost:80/admin.php",
"curl http://localhost:80/tests/sample.html"
]
}