HTTP
HTTP GET
-J
HTTP/1.1 301 OK
Location: go/here/%TESTNUMBER0002#first
HTTP/1.1 301 OK
Location: too/%TESTNUMBER0003?fooo#second/%TESTNUMBER0003
HTTP/1.1 200 OK
Date: Tue, 09 Nov 2010 14:49:00 GMT
Server: test-server/fake
Content-Length: 6
Connection: close
Content-Type: text/html
12345
# Client-side
http
HTTP -J, two redirects, use the last Location: name
http://%HOSTIP:%HTTPPORT/%TESTNUMBER -J -L -O --output-dir %LOGDIR
# Verify data after the test has been "shot"
GET /%TESTNUMBER HTTP/1.1
Host: %HOSTIP:%HTTPPORT
User-Agent: curl/%VERSION
Accept: */*
GET /go/here/%TESTNUMBER0002 HTTP/1.1
Host: %HOSTIP:%HTTPPORT
User-Agent: curl/%VERSION
Accept: */*
GET /go/here/too/%TESTNUMBER0003?fooo HTTP/1.1
Host: %HOSTIP:%HTTPPORT
User-Agent: curl/%VERSION
Accept: */*
12345