Python3: resources and libraries
[csit.git] / resources / tools / trex / trex_server_info.py
1 #!/usr/bin/python3
2
3 # Copyright (c) 2019 Cisco and/or its affiliates.
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at:
7 #
8 #     http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15
16 """This script uses T-REX stateless API to drive t-rex instance.
17
18 Requirements:
19 - T-REX: https://github.com/cisco-system-traffic-generator/trex-core
20  - compiled and running T-REX process (eg. ./t-rex-64 -i)
21  - trex.stl.api library
22 - Script must be executed on a node with T-REX instance
23
24 Functionality:
25 1. Verify the API functionality and get server information
26
27 """
28
29 import sys
30
31 sys.path.insert(
32     0, u"/opt/trex-core-2.61/scripts/automation/trex_control_plane/interactive/"
33 )
34 from trex.stl.api import *
35
36
37 def main():
38     """Check server info and quit."""
39     client = STLClient()
40     try:
41         # connect to server
42         client.connect()
43
44         # get server info
45         print(client.get_server_system_info())
46     except STLError as ex_error:
47         print(ex_error, file=sys.stderr)
48         sys.exit(1)
49     finally:
50         client.disconnect()
51
52
53 if __name__ == u"__main__":
54     main()