Gary Wu | 9abb61c | 2018-09-27 10:38:50 -0700 | [diff] [blame] | 1 | #!/bin/bash |
2 | |||||
3 | # $1 is the IP address of the DRPS (Data Router Provisioning Server) mock server | ||||
4 | |||||
5 | curl -v -X PUT -d @- http://$1:1080/expectation << EOF | ||||
6 | { | ||||
7 | "httpRequest": { | ||||
8 | "method": "GET", | ||||
9 | "path": "/hello" | ||||
10 | }, | ||||
11 | "httpResponse": { | ||||
12 | "body": "Hello world!", | ||||
13 | "statusCode": 200 | ||||
14 | } | ||||
15 | } | ||||
16 | EOF | ||||
17 |