New version of RF tests.
[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 setup_all_duts(self, nodes):
24         """Prepare all DUTs in given topology for test execution."""
25         for node in nodes.values():
26             if node['type'] == NodeType.DUT:
27                 self.setup_dut(node)
28
29     def setup_dut(self, node):
30         ssh = SSH()
31         ssh.connect(node)
32
33         (ret_code, stdout, stderr) = \
34             ssh.exec_command('sudo -Sn bash {0}/{1}/dut_setup.sh'.format(
35                 Constants.REMOTE_FW_DIR, Constants.RESOURCES_LIB_SH))
36         logger.trace(stdout)
37         if 0 != int(ret_code):
38             logger.error('DUT {0} setup script failed: "{1}"'.
39                     format(node['host'], stdout + stderr))
40             raise Exception('DUT test setup script failed at node {}'.
41                     format(node['host']))