blob: 026d62768d673996544a9273e93774eb1c3c9913 [file] [log] [blame]
Chetan Gaonkercb122cc2016-05-10 10:58:34 -07001#!/usr/bin/env python
Chetan Gaonkercfcce782016-05-10 10:10:42 -07002#
3# Copyright 2016-present Ciena Corporation
4#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16#
Chetan Gaonkerb8619e52016-04-12 18:03:05 -070017import unittest
18import time
19import os
20import json
21from nose.tools import *
22from onosclidriver import OnosCliDriver
23from OnosCtrl import OnosCtrl
24from scapy.all import *
25
26log.setLevel('INFO')
27
28class routes_exchange(unittest.TestCase):
29
30 @classmethod
31 def setUpClass(cls):
32 cls.cli = OnosCliDriver(connect = True)
33
34 @classmethod
35 def tearDownClass(cls):
36 cls.cli.disconnect()
37
38 def test_route_cli(self):
39 routes = json.loads(self.cli.routes(jsonFormat = True))
40 log.info('Routes: %s' %routes)
41
42 def test_devices_cli(self):
43 devices = json.loads(self.cli.devices(jsonFormat = True))
44 available_devices = filter(lambda d: d['available'], devices)
45 device_ids = [ d['id'] for d in devices ]
46 log.info('Available Devices: %s' %devices)
47 log.info('Device IDS: %s' %device_ids)
48
49 def test_flows_cli(self):
50 flows = json.loads(self.cli.flows(jsonFormat = True))
51 flows = filter(lambda f: f['flows'], flows)
52 log.info('Flows: %s' %flows)