aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/dmaap-buscontroller/init-mock-drps.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/dmaap-buscontroller/init-mock-drps.sh')
-rwxr-xr-xscripts/dmaap-buscontroller/init-mock-drps.sh17
1 files changed, 17 insertions, 0 deletions
diff --git a/scripts/dmaap-buscontroller/init-mock-drps.sh b/scripts/dmaap-buscontroller/init-mock-drps.sh
new file mode 100755
index 00000000..e0f1d0f1
--- /dev/null
+++ b/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
+