Skip to content

Commit

Permalink
Correct style in test-runner
Browse files Browse the repository at this point in the history
Correct test-runner.py so it passes flake8
python style checking.

Signed-off-by: Giuseppe Di Natale <[email protected]>
  • Loading branch information
dinatale2 committed Oct 6, 2016
1 parent 0bde1f7 commit 9285493
Showing 1 changed file with 21 additions and 22 deletions.
43 changes: 21 additions & 22 deletions tests/test-runner/cmd/test-runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,12 +127,12 @@ def __init__(self, pathname, outputdir=None, timeout=None, user=None):
self.killed = False
self.result = Result()

if self.timeout == None:
self.timeout = 60
if self.timeout is None:
self.timeout = 60

def __str__(self):
return "Pathname: %s\nOutputdir: %s\nTimeout: %d\nUser: %s\n" % (
self.pathname, self.outputdir, self.timeout, self.user)
self.pathname, self.outputdir, self.timeout, self.user)

def kill_cmd(self, proc):
"""
Expand Down Expand Up @@ -309,9 +309,10 @@ def __str__(self):
if len(self.post_user):
post_user = ' (as %s)' % (self.post_user)
return "Pathname: %s\nOutputdir: %s\nTimeout: %d\nPre: %s%s\nPost: " \
"%s%s\nUser: %s\n" % (self.pathname, self.outputdir,
self.timeout, self.pre, pre_user, self.post, post_user,
self.user)
"%s%s\nUser: %s\n" % (
self.pathname, self.outputdir,
self.timeout, self.pre, pre_user, self.post, post_user,
self.user)

def verify(self, logger):
"""
Expand Down Expand Up @@ -384,9 +385,9 @@ def __str__(self):
if len(self.post_user):
post_user = ' (as %s)' % (self.post_user)
return "Pathname: %s\nOutputdir: %s\nTests: %s\nTimeout: %d\n" \
"Pre: %s%s\nPost: %s%s\nUser: %s\n" % (self.pathname,
self.outputdir, self.tests, self.timeout, self.pre, pre_user,
self.post, post_user, self.user)
"Pre: %s%s\nPost: %s%s\nUser: %s\n" % (
self.pathname, self.outputdir, self.tests, self.timeout,
self.pre, pre_user, self.post, post_user, self.user)

def verify(self, logger):
"""
Expand Down Expand Up @@ -428,8 +429,8 @@ def verify(self, logger):
if not verify_file(os.path.join(self.pathname, test)):
del self.tests[self.tests.index(test)]
logger.info("Warning: Test '%s' removed from TestGroup '%s' "
"because it failed verification." % (test,
self.pathname))
"because it failed verification." %
(test, self.pathname))

return len(self.tests) is not 0

Expand Down Expand Up @@ -634,7 +635,7 @@ def complete_outputdirs(self, options):
components -= 1
for testfile in tmp_dict.keys():
uniq = '/'.join(testfile.split('/')[components:]).lstrip('/')
if not uniq in l:
if uniq not in l:
l.append(uniq)
tmp_dict[testfile].outputdir = os.path.join(base, uniq)
else:
Expand Down Expand Up @@ -705,8 +706,8 @@ def summary(self):
m, s = divmod(time() - self.starttime, 60)
h, m = divmod(m, 60)
print '\nRunning Time:\t%02d:%02d:%02d' % (h, m, s)
print 'Percent passed:\t%.1f%%' % ((float(Result.runresults['PASS']) /
float(Result.total)) * 100)
print 'Percent passed:\t%.1f%%' % (
(float(Result.runresults['PASS']) / float(Result.total)) * 100)
print 'Log directory:\t%s' % self.outputdir


Expand All @@ -717,10 +718,10 @@ def verify_file(pathname):
if os.path.isdir(pathname) or os.path.islink(pathname):
return False

if (os.path.isfile(pathname) and os.access(pathname, os.X_OK)) or \
(os.path.isfile(pathname+'.ksh') and os.access(pathname+'.ksh', os.X_OK)) or \
(os.path.isfile(pathname+'.sh') and os.access(pathname+'.sh', os.X_OK)):
return True
for ext in '', '.ksh', '.sh':
script_path = pathname + ext
if os.path.isfile(script_path) and os.access(script_path, os.X_OK):
return True

return False

Expand All @@ -731,15 +732,13 @@ def verify_user(user, logger):
sudo without being prompted for a password.
"""
testcmd = [SUDO, '-n', '-u', user, TRUE]
can_sudo = exists = True

if user in Cmd.verified_users:
return True

try:
_ = getpwnam(user)
getpwnam(user)
except KeyError:
exists = False
logger.info("Warning: user '%s' does not exist.", user)
return False

Expand Down Expand Up @@ -782,7 +781,7 @@ def options_cb(option, opt_str, value, parser):
path_options = ['runfile', 'outputdir', 'template', 'testdir']

if option.dest is 'runfile' and '-w' in parser.rargs or \
option.dest is 'template' and '-c' in parser.rargs:
option.dest is 'template' and '-c' in parser.rargs:
fail('-c and -w are mutually exclusive.')

if opt_str in parser.rargs:
Expand Down

0 comments on commit 9285493

Please sign in to comment.