gaulthiergain-tools/testfiles/test_https.json

52 lines
2.7 KiB
JSON
Raw Permalink Normal View History

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