X-Git-Url: https://gerrit.fd.io/r/gitweb?p=csit.git;a=blobdiff_plain;f=resources%2Ftools%2Fscripts%2Ftopo_reservation.py;fp=resources%2Ftools%2Fscripts%2Ftopo_reservation.py;h=bf31918c7308abc8d1cff38840ddf624d8fa753d;hp=4b5ed2459c866054e90d4f402aadd7917f850b47;hb=e4091a25520e8cf1c62254df74b7ccf57f2ce1c7;hpb=1a1a527ec81e618d88249bb81c26d1003521a776 diff --git a/resources/tools/scripts/topo_reservation.py b/resources/tools/scripts/topo_reservation.py index 4b5ed2459c..bf31918c73 100755 --- a/resources/tools/scripts/topo_reservation.py +++ b/resources/tools/scripts/topo_reservation.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -# Copyright (c) 2016 Cisco and/or its affiliates. +# Copyright (c) 2018 Cisco and/or its affiliates. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at: @@ -13,9 +13,12 @@ # See the License for the specific language governing permissions and # limitations under the License. -"""This script provides simple reservation mechanism to avoid - simultaneous use of nodes listed in topology file. - As source of truth is used DUT1 node from the topology file.""" +"""Script managing reservation and un-reservation of testbeds. + +This script provides simple reservation mechanism to avoid +simultaneous use of nodes listed in topology file. +As source of truth, TG node from the topology file is used. +""" import sys import argparse @@ -37,19 +40,20 @@ def main(): work_file = open(topology_file) topology = load(work_file.read())['nodes'] - #we are using DUT1 node because we expect DUT1 to be a linux host - #we don't use TG because we don't expect TG to be linux only host + # Even if TG is not guaranteed to be a Linux host, + # we are using it, because testing shows SSH access to DUT + # during test affects its performance (bursts of lost packets). try: - tg_node = topology["DUT1"] + tg_node = topology["TG"] except KeyError: - print "Topology file does not contain 'DUT1' node" + print "Topology file does not contain 'TG' node" return 1 ssh = SSH() ssh.connect(tg_node) - #For system reservation we use mkdir it is an atomic operation and we can - #store additional data (time, client_ID, ..) within reservation directory + # For system reservation we use mkdir it is an atomic operation and we can + # store additional data (time, client_ID, ..) within reservation directory. if cancel_reservation: ret, _, err = ssh.exec_command("rm -r {}".format(RESERVATION_DIR)) else: