/usr/share/pyshared/twill/shell.py is in python-twill 0.9-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 | """
A command-line interpreter for twill.
This is an implementation of a command-line interpreter based on the
'Cmd' class in the 'cmd' package of the default Python distribution.
"""
import cmd
from twill import commands, parse, __version__
import namespaces
try:
import readline
except:
readline = None
def make_cmd_fn(cmd):
"""
Dynamically define a twill shell command function based on an imported
function name. (This is where the twill.commands functions actually
get executed.)
"""
def do_cmd(rest_of_line, cmd=cmd):
global_dict, local_dict = namespaces.get_twill_glocals()
args = []
if rest_of_line.strip() != "":
try:
args = parse.arguments.parseString(rest_of_line)[0]
args = parse.process_args(args, global_dict,local_dict)
except Exception, e:
print '\nINPUT ERROR: %s\n' % (str(e),)
return
try:
parse.execute_command(cmd, args, global_dict, local_dict,
"<shell>")
except SystemExit:
raise
except Exception, e:
print '\nERROR: %s\n' % (str(e),)
return do_cmd
def make_help_cmd(cmd, docstring):
"""
Dynamically define a twill shell help function for the given
command/docstring.
"""
def help_cmd(message=docstring, cmd=cmd):
print '=' * 15
print '\nHelp for command %s:\n' % (cmd,)
print message.strip()
print ''
print '=' * 15
print ''
return help_cmd
###
class Singleton(object):
def __new__(cls, *args, **kwds):
it = cls.__dict__.get("__it__")
if it is not None:
return it
cls.__it__ = it = object.__new__(cls)
it.init(*args, **kwds)
return it
def init(self, *args, **kwds):
pass
#
# TwillCommandLoop
#
def add_command(cmd, docstring):
x = get_command_shell()
if x:
x.add_command(cmd, docstring)
def get_command_shell():
return getattr(TwillCommandLoop, '__it__', None)
class TwillCommandLoop(Singleton, cmd.Cmd):
"""
Command-line interpreter for twill commands. Singleton object: you
can't create more than one of these at a time.
Note: most of the do_ and help_ functions are dynamically created
by the metaclass.
"""
def init(self, **kw):
if kw.has_key('stdin'):
cmd.Cmd.__init__(self, None, stdin=kw['stdin'])
self.use_rawinput = False
else:
cmd.Cmd.__init__(self)
# initialize a new local namespace.
namespaces.new_local_dict()
# The history file name is located in the home directory of
# the user
import os
self._history_file = os.environ.has_key("HOME") and \
os.path.join(os.environ["HOME"], ".twill_history") or \
None
# import readline history, if available.
if self._history_file and readline:
try:
readline.read_history_file(self._history_file)
except IOError:
pass
# fail on unknown commands? for test-shell, primarily.
self.fail_on_unknown = kw.get('fail_on_unknown', False)
# handle initial URL argument
if kw.get('initial_url'):
commands.go(kw['initial_url'])
self._set_prompt()
self.names = []
global_dict, local_dict = namespaces.get_twill_glocals()
### add all of the commands from twill.
for command in parse.command_list:
fn = global_dict.get(command)
self.add_command(command, fn.__doc__)
def add_command(self, command, docstring):
"""
Add the given command into the lexicon of all commands.
"""
do_name = 'do_%s' % (command,)
do_cmd = make_cmd_fn(command)
setattr(self, do_name, do_cmd)
if docstring:
help_cmd = make_help_cmd(command, docstring)
help_name = 'help_%s' % (command,)
setattr(self, help_name, help_cmd)
self.names.append(do_name)
def get_names(self):
"""
Return the list of commands.
"""
return self.names
def complete_formvalue(self, text, line, begin, end):
# formvalue <formname> <field> <value>
cmd, args = parse.parse_command(line + '.', {}, {})
place = len(args)
if place == 1:
return self.provide_formname(text)
elif place == 2:
formname = args[0]
return self.provide_field(formname, text)
return []
complete_fv = complete_formvalue
def provide_formname(self, prefix):
names = []
forms = commands.browser._browser.forms()
for f in forms:
id = f.attrs.get('id')
if id and id.startswith(prefix):
names.append(id)
continue
name = f.name
if name and name.startswith(prefix):
names.append(name)
return names
def provide_field(self, formname, prefix):
names = []
form = commands.browser.get_form(formname)
if not form:
return []
for c in form.controls:
id = c.id
if id and id.startswith(prefix):
names.append(id)
continue
name = c.name
if name and name.startswith(prefix):
names.append(name)
return names
def _set_prompt(self):
"Set the prompt to the current page."
url = commands.browser.get_url()
if url is None:
url = " *empty page* "
self.prompt = "current page: %s\n>> " % (url,)
def precmd(self, line):
"Run before each command; save."
return line
def postcmd(self, stop, line):
"Run after each command; set prompt."
self._set_prompt()
return stop
def default(self, line):
"Called when unknown command is executed."
# empty lines ==> emptyline(); here we just want to remove
# leading whitespace.
line = line.strip()
# look for command
global_dict, local_dict = namespaces.get_twill_glocals()
cmd, args = parse.parse_command(line, global_dict, local_dict)
# ignore comments & empty stuff
if cmd is None:
return
try:
parse.execute_command(cmd, args, global_dict, local_dict,
"<shell>")
except SystemExit:
raise
except Exception, e:
print '\nERROR: %s\n' % (str(e),)
if self.fail_on_unknown:
raise
def emptyline(self):
"Ignore empty lines."
pass
def do_EOF(self, *args):
"Exit on CTRL-D"
if self._history_file and readline:
readline.write_history_file(self._history_file)
raise SystemExit()
def help_help(self):
print "\nWhat do YOU think the command 'help' does?!?\n"
def do_version(self, *args):
print "\ntwill version %s.\n" % (__version__,)
print "See http://www.idyll.org/~t/www-tools/twill/ for more info."
print ""
def help_version(self):
print "\nPrint version information.\n"
def do_exit(self, *args):
raise SystemExit()
def help_exit(self):
print "\nExit twill.\n"
do_quit = do_exit
help_quit = help_exit
####
twillargs = [] # contains sys.argv *after* last '--'
interactive = False # 'True' if interacting with user
def main():
global twillargs, interactive
import sys
from twill import TwillCommandLoop, execute_file, __version__
from twill.utils import gather_filenames
from optparse import OptionParser
from cStringIO import StringIO
###
# make sure that the current working directory is in the path. does this
# work on Windows??
if not '.' in sys.path:
sys.path.append('.')
###
#### OPTIONS
parser = OptionParser()
parser.add_option('-q', '--quiet', action="store_true", dest="quiet",
help = 'do not show normal output')
parser.add_option('-i', '--interactive', action="store_true", dest="interact",
help = 'drop into an interactive shell after running files (if any)')
parser.add_option('-f', '--fail', action="store_true", dest="fail",
help = 'fail exit on first file to fail')
parser.add_option('-n', '--never-fail', action="store_true",
dest="never_fail",
help = 'continue executing scripts past errors')
parser.add_option('-v', '--version', action="store_true", dest="show_version",
help = 'show version information and exit')
parser.add_option('-u', '--url', nargs=1, action="store", dest="url",
help="start at the given URL before each script")
####
# parse arguments.
sysargs = sys.argv[1:]
if '--' in sysargs:
found = False
for last in range(len(sysargs) - 1, -1, -1):
if sysargs[last] == '--':
found = True
break
if found:
twillargs = sysargs[last + 1:]
sysargs = sysargs[:last]
(options, args) = parser.parse_args(sysargs)
if options.show_version:
print 'twill version %s.' % (__version__,)
sys.exit(0)
if options.quiet:
assert not options.interact, "interactive mode is incompatible with -q"
assert args, "interactive mode is incompatible with -q"
old_stdout = sys.stdout
sys.stdout = StringIO()
# If run from the command line, find & run any scripts put on the command
# line. If none, drop into an interactive AutoShell.
failed = False
if len(args):
success = []
failure = []
filenames = gather_filenames(args)
for filename in filenames:
print '>> EXECUTING FILE', filename
try:
interactive = False
execute_file(filename,
initial_url=options.url,
never_fail=options.never_fail)
success.append(filename)
except Exception, e:
if options.fail:
# import pdb
# _, _, tb = sys.exc_info()
# pdb.post_mortem(tb)
raise
else:
print '** UNHANDLED EXCEPTION:', str(e)
failure.append(filename)
print '--'
print '%d of %d files SUCCEEDED.' % (len(success),
len(success) + len(failure),)
if len(failure):
print 'Failed:\n\t',
print "\n\t".join(failure)
failed = True
if not args or options.interact:
welcome_msg = ""
if not args:
welcome_msg = "\n -= Welcome to twill! =-\n"
interactive = True
shell = TwillCommandLoop(initial_url=options.url)
while 1:
try:
shell.cmdloop(welcome_msg)
except KeyboardInterrupt:
sys.stdout.write('\n')
except SystemExit:
raise
welcome_msg = ""
if failed:
sys.exit(1)
sys.exit(0)
|