aboutsummaryrefslogtreecommitdiffstats
path: root/framework/src/onos/tools/test/scenarios/bin/find-host.py
diff options
context:
space:
mode:
Diffstat (limited to 'framework/src/onos/tools/test/scenarios/bin/find-host.py')
-rwxr-xr-xframework/src/onos/tools/test/scenarios/bin/find-host.py36
1 files changed, 0 insertions, 36 deletions
diff --git a/framework/src/onos/tools/test/scenarios/bin/find-host.py b/framework/src/onos/tools/test/scenarios/bin/find-host.py
deleted file mode 100755
index e87a4090..00000000
--- a/framework/src/onos/tools/test/scenarios/bin/find-host.py
+++ /dev/null
@@ -1,36 +0,0 @@
-#! /usr/bin/env python
-
-import requests
-import sys
-import urllib
-
-from requests.auth import HTTPBasicAuth
-
-if len(sys.argv) != 4:
- print "usage: find-host onos-node name device-id"
- sys.exit(1)
-
-node = sys.argv[1]
-name = sys.argv[2]
-id = sys.argv[3]
-
-hostRequest = requests.get('http://' + node + ':8181/onos/v1/hosts/' +
- urllib.quote_plus(id),
- auth=HTTPBasicAuth('onos', 'rocks'))
-
-if hostRequest.status_code != 200:
- print hostRequest.text
- sys.exit(1)
-
-hostJson = hostRequest.json()
-
-print "@stc " + name + "Id=" + hostJson["id"]
-print "@stc " + name + "Mac=" + hostJson["mac"]
-print "@stc " + name + "IpAddress=" + hostJson["ipAddresses"][0]
-
-sys.exit(0)
-
-
-
-
-