aboutsummaryrefslogtreecommitdiffstats
path: root/framework/src/onos/tools/test/scenarios/bin/find-host.py
blob: e87a4090ce16947932a5067776c98e2679c92b2a (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
35
36
#! /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)