From b731e2f1dd0972409b136aebc7b463dd72c9cfad Mon Sep 17 00:00:00 2001 From: CNlucius Date: Tue, 13 Sep 2016 11:40:12 +0800 Subject: ONOSFW-171 O/S-SFC-ONOS scenario documentation Change-Id: I51ae1cf736ea24ab6680f8edca1b2bf5dd598365 Signed-off-by: CNlucius --- .../onos/tools/test/scenarios/bin/create-flow.py | 56 ---------------------- 1 file changed, 56 deletions(-) delete mode 100755 framework/src/onos/tools/test/scenarios/bin/create-flow.py (limited to 'framework/src/onos/tools/test/scenarios/bin/create-flow.py') diff --git a/framework/src/onos/tools/test/scenarios/bin/create-flow.py b/framework/src/onos/tools/test/scenarios/bin/create-flow.py deleted file mode 100755 index 4e9b452b..00000000 --- a/framework/src/onos/tools/test/scenarios/bin/create-flow.py +++ /dev/null @@ -1,56 +0,0 @@ -#! /usr/bin/env python - -import requests - -from requests.auth import HTTPBasicAuth -import sys - - - -if len(sys.argv) != 6: - print "usage: create-flow onos-node name device in-port out-port" - sys.exit(1) - -node = sys.argv[1] -name = sys.argv[2] -device = sys.argv[3] -inPort = sys.argv[4] -outPort = sys.argv[5] - -flowJsonTemplate = \ - '{{' + \ - '"priority": 1,' + \ - '"isPermanent": true,' + \ - '"treatment": {{' + \ - '"instructions": [' + \ - '{{' + \ - '"type": "OUTPUT",' + \ - '"port": {}' + \ - '}}' + \ - ']' + \ - '}},' + \ - '"selector": {{' + \ - '"criteria": [' + \ - '{{' + \ - '"type": "IN_PORT",' + \ - '"port": {}' + \ - '}}' + \ - ']' + \ - '}}' + \ - '}}' - -flowJson = flowJsonTemplate.format(inPort, outPort) -intentRequest = requests.post('http://' + node + ':8181/onos/v1/flows/' + device, - auth=HTTPBasicAuth('onos', 'rocks'), - data=flowJson) - -if intentRequest.status_code != 201: - print intentRequest.text - sys.exit(1) - -location = intentRequest.headers["location"] -print "@stc " + name + "Location=" + location -sys.exit(0) - - - -- cgit 1.2.3-korg