diff options
author | Gary Wu <gary.i.wu@huawei.com> | 2018-03-07 17:12:21 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-03-07 17:12:21 +0000 |
commit | 43cee066880eabe9745149c44aa96cd9a99d1e0e (patch) | |
tree | 254bc77a35ea9accc4b178d79a51c6649e69bbab /test/csit/scripts/dmaap-buscontroller/init-mock-drps.sh | |
parent | 952f9fa66b664d15f4a2b59e15f8e5e37ebee0ce (diff) | |
parent | 62b8b1254aff20a874a2867fda42bbaf3bb1b193 (diff) |
Merge "Initial CSIT framework for dmaap/buscontroller"
Diffstat (limited to 'test/csit/scripts/dmaap-buscontroller/init-mock-drps.sh')
-rwxr-xr-x | test/csit/scripts/dmaap-buscontroller/init-mock-drps.sh | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/test/csit/scripts/dmaap-buscontroller/init-mock-drps.sh b/test/csit/scripts/dmaap-buscontroller/init-mock-drps.sh new file mode 100755 index 000000000..e0f1d0f19 --- /dev/null +++ b/test/csit/scripts/dmaap-buscontroller/init-mock-drps.sh @@ -0,0 +1,17 @@ +#!/bin/bash + +# $1 is the IP address of the DRPS (Data Router Provisioning Server) mock server + +curl -v -X PUT -d @- http://$1:1080/expectation << EOF +{ + "httpRequest": { + "method": "GET", + "path": "/hello" + }, + "httpResponse": { + "body": "Hello world!", + "statusCode": 200 + } +} +EOF + |