blob: 325569707c2f66a06b5e4c04d0e6ffbda76687d1 [file] [log] [blame]
Matteo Scandolod2044a42017-08-07 16:08:28 -07001# 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 Williams045b63d2019-01-22 16:30:57 -070015from __future__ import print_function
16from xosapi import xos_grpc_client
Scott Baker95f7d952017-03-09 10:04:26 -080017import sys
Zack Williams045b63d2019-01-22 16:30:57 -070018
Scott Baker95f7d952017-03-09 10:04:26 -080019sys.path.append("..")
20
Scott Baker95f7d952017-03-09 10:04:26 -080021
22def test_callback():
Zack Williams045b63d2019-01-22 16:30:57 -070023 print("TEST: vsg_introspect")
Scott Baker95f7d952017-03-09 10:04:26 -080024
25 c = xos_grpc_client.coreclient
26
27 for vsg in c.xos_orm.VSGTenant.objects.all():
Zack Williams045b63d2019-01-22 16:30:57 -070028 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 Baker95f7d952017-03-09 10:04:26 -080039
Zack Williams045b63d2019-01-22 16:30:57 -070040 print(" okay")
41
Scott Baker95f7d952017-03-09 10:04:26 -080042
43xos_grpc_client.start_api_parseargs(test_callback)