summaryrefslogtreecommitdiff
path: root/hacking/test-module
diff options
context:
space:
mode:
authorWill Thames <will@thames.id.au>2014-09-09 19:06:06 +1000
committerAbhijit Menon-Sen <ams@2ndQuadrant.com>2015-07-22 06:50:37 +0530
commitb05485d4b385f66ed7a5146e831549dd9f8c786c (patch)
tree3d9ab498bff8a7cc9cbf2cd58a191860bf405509 /hacking/test-module
parent8729543ceeab679b0cf6a6fcd9abf0f57eaf5e94 (diff)
downloadansible-b05485d4b385f66ed7a5146e831549dd9f8c786c.tar.gz
Add options to control output and execution of test-module
test-module is useful but sometimes you want to edit the result before running it to e.g. set a debug point. Added a noexecute option (i.e. just create the module script, don't run it) and an output option to choose the filename of the result.
Diffstat (limited to 'hacking/test-module')
-rwxr-xr-xhacking/test-module21
1 files changed, 14 insertions, 7 deletions
diff --git a/hacking/test-module b/hacking/test-module
index daa6edf6e2..00b630f598 100755
--- a/hacking/test-module
+++ b/hacking/test-module
@@ -27,6 +27,7 @@
# test-module -m ../library/system/service -a "name=httpd ensure=restarted"
# test-module -m ../library/system/service -a "name=httpd ensure=restarted" --debugger /usr/bin/pdb
# test-modulr -m ../library/file/lineinfile -a "dest=/etc/exports line='/srv/home hostname1(rw,sync)'" --check
+# test-module -m ../library/commands/command -a "echo hello" -n -o "test_hello"
import sys
import base64
@@ -66,6 +67,11 @@ def parse():
default='python={}'.format(sys.executable))
parser.add_option('-c', '--check', dest='check', action='store_true',
help="run the module in check mode")
+ parser.add_option('-n', '--noexecute', dest='execute', action='store_false',
+ default=True, help="do not run the resulting module")
+ parser.add_option('-o', '--output', dest='filename',
+ help="Filename for resulting module",
+ default="~/.ansible_module_generated")
options, args = parser.parse_args()
if not options.module_path:
parser.print_help()
@@ -84,7 +90,7 @@ def write_argsfile(argstring, json=False):
argsfile.close()
return argspath
-def boilerplate_module(modfile, args, interpreter, check):
+def boilerplate_module(modfile, args, interpreter, check, destfile):
""" simulate what ansible does with new style modules """
#module_fh = open(modfile)
@@ -128,7 +134,7 @@ def boilerplate_module(modfile, args, interpreter, check):
inject
)
- modfile2_path = os.path.expanduser("~/.ansible_module_generated")
+ modfile2_path = os.path.expanduser(destfile)
print "* including generated source, if any, saving to: %s" % modfile2_path
print "* this may offset any line numbers in tracebacks/debuggers!"
modfile2 = open(modfile2_path, 'w')
@@ -178,7 +184,7 @@ def rundebug(debugger, modfile, argspath):
def main():
options, args = parse()
- (modfile, module_style) = boilerplate_module(options.module_path, options.module_args, options.interpreter, options.check)
+ (modfile, module_style) = boilerplate_module(options.module_path, options.module_args, options.interpreter, options.check, options.filename)
argspath = None
if module_style != 'new':
@@ -188,10 +194,11 @@ def main():
argspath = write_argsfile(options.module_args, json=False)
else:
raise Exception("internal error, unexpected module style: %s" % module_style)
- if options.debugger:
- rundebug(options.debugger, modfile, argspath)
- else:
- runtest(modfile, argspath)
+ if options.execute:
+ if options.debugger:
+ rundebug(options.debugger, modfile, argspath)
+ else:
+ runtest(modfile, argspath)
if __name__ == "__main__":
main()