diff options
author | James Tanner <tanner.jc@gmail.com> | 2013-10-30 15:50:16 +0100 |
---|---|---|
committer | James Tanner <tanner.jc@gmail.com> | 2013-10-30 15:50:16 +0100 |
commit | d154bf87812209409a673fd7f9848d75701e2f32 (patch) | |
tree | 8caf46dff6559ef86b697284f13529d7986817fb /hacking/test-module | |
parent | Also updating RELEASES.txt (diff) | |
download | ansible-d154bf87812209409a673fd7f9848d75701e2f32.tar.xz ansible-d154bf87812209409a673fd7f9848d75701e2f32.zip |
Revert templating enhancements from 73dbab70 e6c28658 d409352c 9858b1f2 4587528b 9b1fe455 214b0b05 8d3db803 7f9504d1 5031104c 35cb9dc2 2bd8cb57 1e85c754
Diffstat (limited to 'hacking/test-module')
-rwxr-xr-x | hacking/test-module | 65 |
1 files changed, 35 insertions, 30 deletions
diff --git a/hacking/test-module b/hacking/test-module index e94501fe5b..ef75eb3d91 100755 --- a/hacking/test-module +++ b/hacking/test-module @@ -77,32 +77,39 @@ def write_argsfile(argstring, json=False): def boilerplate_module(modfile, args): """ simulate what ansible does with new style modules """ - #module_fh = open(modfile) - #module_data = module_fh.read() - #module_fh.close() - - replacer = module_common.ModuleReplacer() - - #included_boilerplate = module_data.find(module_common.REPLACER) != -1 or module_data.find("import ansible.module_utils") != -1 - - complex_args = {} - inject = {} - (module_data, module_style, shebang) = replacer.modify_module( - modfile, - complex_args, - args, - inject - ) + module_fh = open(modfile) + module_data = module_fh.read() + included_boilerplate = module_data.find(module_common.REPLACER) != -1 + module_fh.close() + + if included_boilerplate: + + module_data = module_data.replace(module_common.REPLACER, module_common.MODULE_COMMON) + encoded_args = repr(str(args)) + module_data = module_data.replace(module_common.REPLACER_ARGS, encoded_args) + encoded_lang = repr(C.DEFAULT_MODULE_LANG) + empty_complex = repr("{}") + module_data = module_data.replace(module_common.REPLACER_LANG, encoded_lang) + module_data = module_data.replace('syslog.LOG_USER', "syslog.%s" % C.DEFAULT_SYSLOG_FACILITY) + module_data = module_data.replace(module_common.REPLACER_COMPLEX, empty_complex) + + 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, included_boilerplate, False) + else: - modfile2_path = os.path.expanduser("~/.ansible_module_generated") - 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') - modfile2.write(module_data) - modfile2.close() - modfile = modfile2_path + old_style_but_json = False + if 'WANT_JSON' in module_data: + old_style_but_json = True - return (modfile2_path, module_style) + print "* module boilerplate substitution not requested in module, line numbers will be unaltered" + return (modfile, included_boilerplate, old_style_but_json) def runtest( modfile, argspath): """Test run a module, piping it's output for reporting.""" @@ -144,16 +151,14 @@ def rundebug(debugger, modfile, argspath): def main(): options, args = parse() - (modfile, module_style) = boilerplate_module(options.module_path, options.module_args) + (modfile, is_new_style, old_style_but_json) = boilerplate_module(options.module_path, options.module_args) argspath=None - if module_style != 'new': - if module_style == 'non_native_want_json': + if not is_new_style: + if old_style_but_json: argspath = write_argsfile(options.module_args, json=True) - elif module_style == 'old': - argspath = write_argsfile(options.module_args, json=False) else: - raise Exception("internal error, unexpected module style: %s" % module_style) + argspath = write_argsfile(options.module_args, json=False) if options.debugger: rundebug(options.debugger, modfile, argspath) else: |