test-module 6.21 KB
Newer Older
1
#!/usr/bin/env python
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25

# (c) 2012, Michael DeHaan <michael.dehaan@gmail.com>
#
# This file is part of Ansible
#
# Ansible is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Ansible is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Ansible.  If not, see <http://www.gnu.org/licenses/>.
#

# this script is for testing modules without running through the
# entire guts of ansible, and is very helpful for when developing
# modules
#
# example:
26 27 28
#    test-module -m ../library/command -a "/bin/sleep 3"
#    test-module -m ../library/service -a "name=httpd ensure=restarted"
#    test-module -m ../library/service -a "name=httpd ensure=restarted" --debugger /usr/bin/pdb
29 30

import sys
31
import base64
32 33 34
import os
import subprocess
import traceback
35
import optparse
36 37
import ansible.utils as utils
import ansible.module_common as module_common
38
import ansible.constants as C
39 40 41 42 43 44

try:
    import json
except ImportError:
    import simplejson as json

45 46 47 48 49 50
def parse():
    """parse command line

    :return : (options, args)"""
    parser = optparse.OptionParser()

51
    parser.usage = "%prog -[options] (-h for help)"
52

53
    parser.add_option('-m', '--module-path', dest='module_path',
54
        help="REQUIRED: full path of module source to execute")
55
    parser.add_option('-a', '--args', dest='module_args', default="",
56
        help="module argument string")
57 58
    parser.add_option('-D', '--debugger', dest='debugger', 
        help="path to python debugger (e.g. /usr/bin/pdb)")
59 60 61
    parser.add_option('-I', '--interpreter', dest='interpreter',
        help="path to interpeter to use for this module (e.g. ansible_python_interpreter=/usr/bin/python)",
        metavar='INTERPRETER_TYPE=INTERPRETER_PATH')
62
    options, args = parser.parse_args()
63
    if not options.module_path:
64 65 66 67 68
        parser.print_help()
        sys.exit(1)
    else:
        return options, args

69
def write_argsfile(argstring, json=False):
70
    """ Write args to a file for old-style module's use. """
71 72
    argspath = os.path.expanduser("~/.ansible_test_module_arguments")
    argsfile = open(argspath, 'w')
73 74 75
    if json:
        args = utils.parse_kv(argstring)
        argstring = utils.jsonify(args)
76 77 78 79
    argsfile.write(argstring)
    argsfile.close()
    return argspath

80
def boilerplate_module(modfile, args, interpreter):
81 82
    """ simulate what ansible does with new style modules """

83 84 85 86 87 88 89 90 91
    #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 = {}
92 93 94 95
    if args.startswith("@"):
        # Argument is a YAML file (JSON is a subset of YAML)
        complex_args = utils.combine_vars(complex_args, utils.parse_yaml_from_file(args[1:]))
        args=''
96 97 98 99
    elif args.startswith("{"):
        # Argument is a YAML document (not a file)
        complex_args = utils.combine_vars(complex_args, utils.parse_yaml(args))
        args=''
100

101
    inject = {}
102 103 104 105 106 107 108 109 110 111
    if interpreter:
        if '=' not in interpreter:
            print 'interpeter must by in the form of ansible_python_interpreter=/usr/bin/python'
            sys.exit(1)
        interpreter_type, interpreter_path = interpreter.split('=')
        if not interpreter_type.startswith('ansible_'):
            interpreter_type = 'ansible_%s' % interpreter_type
        if not interpreter_type.endswith('_interpreter'):
            interpreter_type = '%s_interpreter' % interpreter_type
        inject[interpreter_type] = interpreter_path
112 113 114 115 116 117
    (module_data, module_style, shebang) = replacer.modify_module(
        modfile, 
        complex_args,
        args,
        inject 
    )
118

119 120 121 122 123 124 125
    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
126

127
    return (modfile2_path, module_style)
128

129 130
def runtest( modfile, argspath):
    """Test run a module, piping it's output for reporting."""
131

132
    os.system("chmod +x %s" % modfile)
133 134 135 136 137 138

    invoke = "%s" % (modfile)
    if argspath is not None:     
        invoke = "%s %s" % (modfile, argspath)

    cmd = subprocess.Popen(invoke, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
139 140 141 142 143 144 145 146 147 148 149 150 151 152
    (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)
153

154 155 156
    print "***********************************"
    print "PARSED OUTPUT"
    print utils.jsonify(results,format=True)
157

158 159 160
def rundebug(debugger, modfile, argspath):
    """Run interactively with console debugger."""

161 162 163 164
    if argspath is not None:
        subprocess.call("%s %s %s" % (debugger, modfile, argspath), shell=True)
    else:
        subprocess.call("%s %s" % (debugger, modfile), shell=True)
165

166
def main(): 
167

168
    options, args = parse()
169
    (modfile, module_style) = boilerplate_module(options.module_path, options.module_args, options.interpreter)
170

171
    argspath=None
172 173
    if module_style != 'new':
        if module_style == 'non_native_want_json':
174
            argspath = write_argsfile(options.module_args, json=True)
175
        elif module_style == 'old':
176
            argspath = write_argsfile(options.module_args, json=False)
177 178
        else:
            raise Exception("internal error, unexpected module style: %s" % module_style)
179
    if options.debugger: 
180
        rundebug(options.debugger, modfile, argspath)
181
    else:
182
        runtest(modfile, argspath)
183
        
184 185
if __name__ == "__main__":
    main()
186