e5e56784d5219854cc5cc412f3b1cdb749614041
[csit.git] / resources / libraries / python / DUTSetup.py
1 # Copyright (c) 2016 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 from robot.api import logger
14 from topology import NodeType
15 from ssh import SSH
16 from constants import Constants
17
18 class DUTSetup(object):
19
20     def __init__(self):
21         pass
22
23     def start_vpp_service_on_all_duts(self, nodes):
24         """Start up the VPP service on all nodes."""
25         ssh = SSH()
26         for node in nodes.values():
27             if node['type'] == NodeType.DUT:
28                 ssh.connect(node)
29                 (ret_code, stdout, stderr) = \
30                         ssh.exec_command_sudo('service vpp restart')
31                 if 0 != int(ret_code):
32                     logger.debug('stdout: {0}'.format(stdout))
33                     logger.debug('stderr: {0}'.format(stderr))
34                     raise Exception('DUT {0} failed to start VPP service'.
35                             format(node['host']))
36
37     def setup_all_duts(self, nodes):
38         """Prepare all DUTs in given topology for test execution."""
39         for node in nodes.values():
40             if node['type'] == NodeType.DUT:
41                 self.setup_dut(node)
42
43     def setup_dut(self, node):
44         ssh = SSH()
45         ssh.connect(node)
46
47         (ret_code, stdout, stderr) = \
48             ssh.exec_command('sudo -Sn bash {0}/{1}/dut_setup.sh'.format(
49                 Constants.REMOTE_FW_DIR, Constants.RESOURCES_LIB_SH))
50         logger.trace(stdout)
51         if 0 != int(ret_code):
52             logger.debug('DUT {0} setup script failed: "{1}"'.
53                     format(node['host'], stdout + stderr))
54             raise Exception('DUT test setup script failed at node {}'.
55                     format(node['host']))