add new topology parameter: arch
[csit.git] / resources / libraries / python / tcp.py
1 # Copyright (c) 2018 Cisco and/or its affiliates.
2 # Licensed under the Apache License, Version 2.0 (the "License");
3 # you may not use this file except in compliance with the License.
4 # You may obtain a copy of the License at:
5 #
6 #     http://www.apache.org/licenses/LICENSE-2.0
7 #
8 # Unless required by applicable law or agreed to in writing, software
9 # distributed under the License is distributed on an "AS IS" BASIS,
10 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11 # See the License for the specific language governing permissions and
12 # limitations under the License.
13
14 """TCP util library.
15 """
16
17 from resources.libraries.python.VatExecutor import VatTerminal
18
19
20 class TCPUtils(object):
21     """Implementation of the TCP utilities.
22     """
23
24     def __init__(self):
25         pass
26
27     @staticmethod
28     def start_http_server(node):
29         """Start HTTP server on the given node.
30
31         :param node: Node to start HTTP server on.
32         :type node: dict
33         """
34
35         with VatTerminal(node) as vat:
36             vat.vat_terminal_exec_cmd_from_template("start_http_server.vat")