summaryrefslogtreecommitdiffstats
path: root/framework/src/onos/tools/test/scenarios/bin/find-flow.py
diff options
context:
space:
mode:
authorCNlucius <lukai1@huawei.com>2016-09-13 11:40:12 +0800
committerCNlucius <lukai1@huawei.com>2016-09-13 11:41:53 +0800
commitb731e2f1dd0972409b136aebc7b463dd72c9cfad (patch)
tree5107d7d80c19ad8076c2c97c2b5ef8d1cf3ab903 /framework/src/onos/tools/test/scenarios/bin/find-flow.py
parentee93993458266114c29271a481ef9ce7ce621b2a (diff)
ONOSFW-171
O/S-SFC-ONOS scenario documentation Change-Id: I51ae1cf736ea24ab6680f8edca1b2bf5dd598365 Signed-off-by: CNlucius <lukai1@huawei.com>
Diffstat (limited to 'framework/src/onos/tools/test/scenarios/bin/find-flow.py')
-rwxr-xr-xframework/src/onos/tools/test/scenarios/bin/find-flow.py40
1 files changed, 0 insertions, 40 deletions
diff --git a/framework/src/onos/tools/test/scenarios/bin/find-flow.py b/framework/src/onos/tools/test/scenarios/bin/find-flow.py
deleted file mode 100755
index a2f2e4d1..00000000
--- a/framework/src/onos/tools/test/scenarios/bin/find-flow.py
+++ /dev/null
@@ -1,40 +0,0 @@
-#! /usr/bin/env python
-
-import requests
-import sys
-
-from requests.auth import HTTPBasicAuth
-
-if len(sys.argv) != 4:
- print "usage: find-flow onos-node name device-id"
- sys.exit(1)
-
-node = sys.argv[1]
-name = sys.argv[2]
-deviceId = sys.argv[3]
-
-flowsRequest = requests.get('http://' + node + ':8181/onos/v1/flows/' + deviceId,
- auth=HTTPBasicAuth('onos', 'rocks'))
-
-if flowsRequest.status_code != 200:
- print flowsRequest.text
- sys.exit(1)
-
-flowsJson = flowsRequest.json()
-
-for flow in flowsJson["flows"]:
- if deviceId == flow["deviceId"]:
- for criterion in flow["selector"]["criteria"]:
- if criterion["type"] == 'IN_PORT' and criterion["port"] > 0:
- for instruction in flow["treatment"]["instructions"]:
- if instruction["port"] > 0 and instruction["type"] == 'OUTPUT':
- print "@stc " + name + "FlowState=" + flow["state"]
- print "@stc " + name + "FlowId=" + flow["id"]
- print "@stc " + name + "FlowPort=" + str(instruction["port"])
- sys.exit(0)
-
-sys.exit(1)
-
-
-
-