c09975f29ce72f0cfdb97cb0982b6b10d9eb979f
[vpp.git] / test / resources / libraries / python / DUTSetup.py
1 # Copyright (c) 2015 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
17 class DUTSetup(object):
18
19     def __init__(self):
20         pass
21
22     def setup_all_duts(self, nodes):
23         """Prepare all DUTs in given topology for test execution."""
24         for node in nodes.values():
25             if node['type'] == NodeType.DUT:
26                 self.setup_dut(node)
27
28     def setup_dut(self, node):
29         ssh = SSH()
30         ssh.connect(node)
31
32         ssh.scp('resources/libraries/bash/dut_setup.sh', '/tmp/dut_setup.sh')
33         (ret_code, stdout, stderr) = \
34             ssh.exec_command('sudo -Sn bash /tmp/dut_setup.sh')
35         logger.trace(stdout)
36         if 0 != int(ret_code):
37             logger.error('DUT {0} setup script failed: "{1}"'.
38                     format(node['host'], stdout + stderr))
39             raise Exception('DUT test setup script failed at node {}'.
40                     format(node['host']))