aboutsummaryrefslogtreecommitdiffstats
path: root/framework/src/onos/tools/test/scenarios/bin/find-topo-infrastructure.py
blob: 6d1970f78b59ad2eb3f6aed4dc0c8d5048b9a9e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#! /usr/bin/env python

import requests
import sys
import urllib

from requests.auth import HTTPBasicAuth

if len(sys.argv) != 4:
    print "usage: find-topo-infrastructure onos-node name connect-point"
    sys.exit(1)

node = sys.argv[1]
name = sys.argv[2]
id = sys.argv[3]

infrastructureRequest = requests.get('http://' + node + ':8181/onos/v1/topology/infrastructure/' +
                           urllib.quote_plus(id),
                           auth=HTTPBasicAuth('onos', 'rocks'))

if infrastructureRequest.status_code != 200:
    print infrastructureRequest.text
    sys.exit(1)

infrastructureJson = infrastructureRequest.json()

print "@stc " + name + "Infrastructure=" + str(infrastructureJson["infrastructure"])

sys.exit(0)