Next: Load Testing, Previous: Using QEMU for Development and Testing, Up: Testing and Developing Trip [Contents][Index]
The application can be tested outside a browser by using the
curl
command line utility.
curl
:
$ curl -i -X POST -d email='user@trip.test' \ -d password='rasHuthlutcew7' \ http://localhost:8080/trip/app/login | grep SESSION_ID
curl
using the session ID obtained
from the previous command:
$ curl -H \ 'Cookie: TRIP_SESSION_ID=b3571314-d5c4-4690-8164-8384fd748faa' \ 'http://localhost:8080/trip/app/tracks'
$ curl -i -H 'Content-Type: multipart/form-data' \ -H 'Cookie: TRIP_SESSION_ID=b3571314-d5c4-4690-8164-8384fd748faa' \ 'localhost:8080/trip/app/itinerary/upload' \ --form 'file=@/path/to/file.gpx' -F 'id=2450' -F 'action=upload'