Matteo Scandolo | d2044a4 | 2017-08-07 16:08:28 -0700 | [diff] [blame] | 1 | # Copyright 2017-present Open Networking Foundation |
| 2 | # |
| 3 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | # you may not use this file except in compliance with the License. |
| 5 | # You may obtain a copy of the License at |
| 6 | # |
| 7 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | # |
| 9 | # Unless required by applicable law or agreed to in writing, software |
| 10 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | # See the License for the specific language governing permissions and |
| 13 | # limitations under the License. |
| 14 | |
Zack Williams | 045b63d | 2019-01-22 16:30:57 -0700 | [diff] [blame] | 15 | from __future__ import print_function |
| 16 | from xosapi import xos_grpc_client |
Scott Baker | 95f7d95 | 2017-03-09 10:04:26 -0800 | [diff] [blame] | 17 | import sys |
Zack Williams | 045b63d | 2019-01-22 16:30:57 -0700 | [diff] [blame] | 18 | |
Scott Baker | 95f7d95 | 2017-03-09 10:04:26 -0800 | [diff] [blame] | 19 | sys.path.append("..") |
| 20 | |
Scott Baker | 95f7d95 | 2017-03-09 10:04:26 -0800 | [diff] [blame] | 21 | |
| 22 | def test_callback(): |
Zack Williams | 045b63d | 2019-01-22 16:30:57 -0700 | [diff] [blame] | 23 | print("TEST: vsg_introspect") |
Scott Baker | 95f7d95 | 2017-03-09 10:04:26 -0800 | [diff] [blame] | 24 | |
| 25 | c = xos_grpc_client.coreclient |
| 26 | |
| 27 | for vsg in c.xos_orm.VSGTenant.objects.all(): |
Zack Williams | 045b63d | 2019-01-22 16:30:57 -0700 | [diff] [blame] | 28 | print(" vsg", vsg.id) |
| 29 | for field_name in [ |
| 30 | "wan_container_ip", |
| 31 | "wan_container_mac", |
| 32 | "wan_container_netbits", |
| 33 | "wan_container_gateway_ip", |
| 34 | "wan_container_gateway_mac", |
| 35 | "wan_vm_ip", |
| 36 | "wan_vm_mac", |
| 37 | ]: |
| 38 | print(" %s: %s" % (field_name, getattr(vsg, field_name))) |
Scott Baker | 95f7d95 | 2017-03-09 10:04:26 -0800 | [diff] [blame] | 39 | |
Zack Williams | 045b63d | 2019-01-22 16:30:57 -0700 | [diff] [blame] | 40 | print(" okay") |
| 41 | |
Scott Baker | 95f7d95 | 2017-03-09 10:04:26 -0800 | [diff] [blame] | 42 | |
| 43 | xos_grpc_client.start_api_parseargs(test_callback) |