2012-09-12 13:18:58 +00:00
#! /usr/bin/python
from Tank . ConsoleWorker import ConsoleTank
from optparse import OptionParser
import logging
import os
import sys
import traceback
if __name__ == " __main__ " :
sys . path . append ( os . path . dirname ( __file__ ) )
parser = OptionParser ( )
parser . add_option ( ' -c ' , ' --config ' , action = ' append ' , help = " Path to INI file containing run options, multiple options accepted " )
2012-09-17 13:48:02 +00:00
parser . add_option ( ' -i ' , ' --ignore-lock ' , action = ' store_true ' , dest = ' ignore_lock ' , help = " Ignore lock files from concurrent instances, has precedence before --lock-fail " )
parser . add_option ( ' -f ' , ' --fail-lock ' , action = ' store_true ' , dest = ' lock_fail ' , help = " Don ' t wait for lock to release, fail test instead " )
2012-09-12 13:18:58 +00:00
parser . add_option ( ' -l ' , ' --log ' , action = ' store ' , default = " tank.log " , help = " Tank log file location " )
2012-09-25 13:59:58 +00:00
parser . add_option ( ' -n ' , ' --no-rc ' , action = ' store_true ' , dest = ' no_rc ' , help = " Don ' t load config files from /etc/yandex-tank and ~/.yandex-tank " )
2012-09-12 13:18:58 +00:00
parser . add_option ( ' -o ' , ' --option ' , action = ' append ' , help = " Set config option, multiple options accepted, example: -o ' shellexec.start=pwd ' " )
parser . add_option ( ' -q ' , ' --quiet ' , action = ' store_true ' , help = " Less console output, only errors and warnings " )
parser . add_option ( ' -v ' , ' --verbose ' , action = ' store_true ' , help = " More console output, +debug messages " )
options , ammofile = parser . parse_args ( )
# @type worker ConsoleTank
2012-09-12 15:55:59 +00:00
worker = ConsoleTank ( options , ammofile )
2012-09-12 13:18:58 +00:00
worker . init_logging ( )
try :
worker . configure ( )
2012-09-12 15:55:59 +00:00
rc = worker . perform_test ( )
2012-09-12 13:18:58 +00:00
exit ( rc )
except Exception , ex :
logging . error ( " Exception: %s " , ex )
logging . debug ( " Exception: %s " , traceback . format_exc ( ex ) )
exit ( 1 )