commit
f8520750cb
1 changed files with 88 additions and 53 deletions
|
@ -30,6 +30,7 @@ import sys
|
||||||
import os
|
import os
|
||||||
import subprocess
|
import subprocess
|
||||||
import traceback
|
import traceback
|
||||||
|
import optparse
|
||||||
import ansible.utils as utils
|
import ansible.utils as utils
|
||||||
import ansible.module_common as module_common
|
import ansible.module_common as module_common
|
||||||
|
|
||||||
|
@ -38,67 +39,101 @@ try:
|
||||||
except ImportError:
|
except ImportError:
|
||||||
import simplejson as json
|
import simplejson as json
|
||||||
|
|
||||||
modfile = None
|
def parse():
|
||||||
|
"""parse command line
|
||||||
|
|
||||||
if len(sys.argv) == 1:
|
:return : (options, args)"""
|
||||||
print >>sys.stderr, "usage: test-module ./library/command [key=value ...]"
|
parser = optparse.OptionParser()
|
||||||
sys.exit(1)
|
|
||||||
|
|
||||||
modfile = sys.argv[1]
|
parser.usage = "%prog [options] (-h for help)"
|
||||||
if len(sys.argv) > 1:
|
|
||||||
args = " ".join(sys.argv[2:])
|
|
||||||
else:
|
|
||||||
args = ""
|
|
||||||
|
|
||||||
argspath = os.path.expanduser("~/.ansible_test_module_arguments")
|
parser.add_option('-m', '--module-path', dest='module_path',
|
||||||
argsfile = open(argspath, 'w')
|
help="path of module to execute")
|
||||||
argsfile.write(args)
|
parser.add_option('-a', '--args', dest='module_args', default="",
|
||||||
argsfile.close()
|
help="module arguments")
|
||||||
|
parser.add_option('-D', '--debugger', dest='debugger',
|
||||||
|
help="path to python debugger (e.g. /usr/bin/pdb)")
|
||||||
|
options, args = parser.parse_args()
|
||||||
|
if not options.module_path:
|
||||||
|
parser.print_help()
|
||||||
|
sys.exit(1)
|
||||||
|
else:
|
||||||
|
return options, args
|
||||||
|
|
||||||
module_fh = open(modfile)
|
def write_argsfile( argstring):
|
||||||
module_data = module_fh.read()
|
"""Write args to a file for the module's use.
|
||||||
included_boilerplate = module_data.find(module_common.REPLACER) != -1
|
|
||||||
module_fh.close()
|
|
||||||
|
|
||||||
if included_boilerplate:
|
:return: full path to args file"""
|
||||||
module_data = module_data.replace(module_common.REPLACER, module_common.MODULE_COMMON)
|
argspath = os.path.expanduser("~/.ansible_test_module_arguments")
|
||||||
modfile2_path = os.path.expanduser("~/.ansible_module_generated")
|
argsfile = open(argspath, 'w')
|
||||||
print "* including generated source, if any, saving to: %s" % modfile2_path
|
argsfile.write(argstring)
|
||||||
print "* this will offset any line numbers in tracebacks!"
|
argsfile.close()
|
||||||
modfile2 = open(modfile2_path, 'w')
|
return argspath
|
||||||
modfile2.write(module_data)
|
|
||||||
modfile2.close()
|
|
||||||
modfile = modfile2_path
|
|
||||||
else:
|
|
||||||
print "* module boilerplate substitution not requested in module, tracebacks will be unaltered"
|
|
||||||
|
|
||||||
os.system("chmod +x %s" % modfile)
|
def boilerplate_module( modfile):
|
||||||
cmd = subprocess.Popen("%s %s" % (modfile, argspath),
|
module_fh = open(modfile)
|
||||||
shell=True,
|
module_data = module_fh.read()
|
||||||
stdout=subprocess.PIPE,
|
included_boilerplate = module_data.find(module_common.REPLACER) != -1
|
||||||
stderr=subprocess.PIPE)
|
module_fh.close()
|
||||||
(out, err) = cmd.communicate()
|
|
||||||
|
if included_boilerplate:
|
||||||
|
module_data = module_data.replace(module_common.REPLACER, module_common.MODULE_COMMON)
|
||||||
|
modfile2_path = os.path.expanduser("~/.ansible_module_generated")
|
||||||
|
print "* including generated source, if any, saving to: %s" % modfile2_path
|
||||||
|
print "* this will offset any line numbers in tracebacks/debuggers!"
|
||||||
|
modfile2 = open(modfile2_path, 'w')
|
||||||
|
modfile2.write(module_data)
|
||||||
|
modfile2.close()
|
||||||
|
modfile = modfile2_path
|
||||||
|
return modfile2_path
|
||||||
|
else:
|
||||||
|
print "* module boilerplate substitution not requested in module, line numbers will be unaltered"
|
||||||
|
return modfile
|
||||||
|
|
||||||
|
def runtest( modfile, argspath):
|
||||||
|
"""Test run a module, piping it's output for reporting."""
|
||||||
|
os.system("chmod +x %s" % modfile)
|
||||||
|
cmd = subprocess.Popen("%s %s" % (modfile, argspath),
|
||||||
|
shell=True,
|
||||||
|
stdout=subprocess.PIPE,
|
||||||
|
stderr=subprocess.PIPE)
|
||||||
|
(out, err) = cmd.communicate()
|
||||||
|
|
||||||
|
try:
|
||||||
|
print "***********************************"
|
||||||
|
print "RAW OUTPUT"
|
||||||
|
print out
|
||||||
|
print err
|
||||||
|
results = utils.parse_json(out)
|
||||||
|
|
||||||
|
except:
|
||||||
|
print "***********************************"
|
||||||
|
print "INVALID OUTPUT FORMAT"
|
||||||
|
print out
|
||||||
|
traceback.print_exc()
|
||||||
|
sys.exit(1)
|
||||||
|
|
||||||
try:
|
|
||||||
print "***********************************"
|
print "***********************************"
|
||||||
print "RAW OUTPUT"
|
print "PARSED OUTPUT"
|
||||||
print out
|
|
||||||
print err
|
|
||||||
results = utils.parse_json(out)
|
|
||||||
|
|
||||||
except:
|
print utils.jsonify(results,format=True)
|
||||||
print "***********************************"
|
|
||||||
print "INVALID OUTPUT FORMAT"
|
|
||||||
print out
|
|
||||||
traceback.print_exc()
|
|
||||||
sys.exit(1)
|
|
||||||
|
|
||||||
print "***********************************"
|
def rundebug(debugger, modfile, argspath):
|
||||||
print "PARSED OUTPUT"
|
"""Run interactively with console debugger."""
|
||||||
|
subprocess.call( "%s %s %s" % (debugger, modfile, argspath), shell=True)
|
||||||
|
|
||||||
print utils.jsonify(results,format=True)
|
def main():
|
||||||
|
options, args = parse()
|
||||||
sys.exit(0)
|
|
||||||
|
|
||||||
|
argspath = write_argsfile( options.module_args)
|
||||||
|
modfile = boilerplate_module( options.module_path)
|
||||||
|
|
||||||
|
if options.debugger:
|
||||||
|
rundebug( options.debugger, modfile, argspath)
|
||||||
|
else:
|
||||||
|
runtest( modfile, argspath)
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
main()
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue