Mercurial > python-cmd2
annotate example/example.py @ 254:07dff0ba981e
multiple test files
author | Catherine Devlin <catherine.devlin@gmail.com> |
---|---|
date | Wed, 01 Apr 2009 18:05:51 -0400 |
parents | 7d215852f9a6 |
children | d62bb3dd58a0 |
rev | line source |
---|---|
106 | 1 '''A sample application for cmd2.''' |
2 | |
3 from cmd2 import Cmd, make_option, options, Cmd2TestCase | |
4 import unittest, optparse, sys | |
5 | |
6 class CmdLineApp(Cmd): | |
7 multilineCommands = ['orate'] | |
8 Cmd.shortcuts.update({'&': 'speak'}) | |
9 maxrepeats = 3 | |
10 Cmd.settable.append('maxrepeats') | |
11 | |
12 @options([make_option('-p', '--piglatin', action="store_true", help="atinLay"), | |
13 make_option('-s', '--shout', action="store_true", help="N00B EMULATION MODE"), | |
14 make_option('-r', '--repeat', type="int", help="output [n] times") | |
15 ]) | |
16 def do_speak(self, arg, opts=None): | |
17 """Repeats what you tell me to.""" | |
18 arg = ''.join(arg) | |
19 if opts.piglatin: | |
20 arg = '%s%say' % (arg[1:], arg[0]) | |
21 if opts.shout: | |
22 arg = arg.upper() | |
23 repetitions = opts.repeat or 1 | |
24 for i in range(min(repetitions, self.maxrepeats)): | |
25 self.stdout.write(arg) | |
26 self.stdout.write('\n') | |
27 # self.stdout.write is better than "print", because Cmd can be | |
28 # initialized with a non-standard output destination | |
29 | |
30 do_say = do_speak # now "say" is a synonym for "speak" | |
31 do_orate = do_speak # another synonym, but this one takes multi-line input | |
32 | |
33 class TestMyAppCase(Cmd2TestCase): | |
34 CmdApp = CmdLineApp | |
254
07dff0ba981e
multiple test files
Catherine Devlin <catherine.devlin@gmail.com>
parents:
113
diff
changeset
|
35 transcriptExtension = 'test' |
106 | 36 |
37 parser = optparse.OptionParser() | |
254
07dff0ba981e
multiple test files
Catherine Devlin <catherine.devlin@gmail.com>
parents:
113
diff
changeset
|
38 parser.add_option('-a', '--alltests', dest='test', action="store_true", |
07dff0ba981e
multiple test files
Catherine Devlin <catherine.devlin@gmail.com>
parents:
113
diff
changeset
|
39 help='Run all transcript tests') |
07dff0ba981e
multiple test files
Catherine Devlin <catherine.devlin@gmail.com>
parents:
113
diff
changeset
|
40 parser.add_option('-t', '--testfile', dest='testfile', metavar='FILE', |
07dff0ba981e
multiple test files
Catherine Devlin <catherine.devlin@gmail.com>
parents:
113
diff
changeset
|
41 help='Run a single transcript from file FILE') |
106 | 42 (callopts, callargs) = parser.parse_args() |
254
07dff0ba981e
multiple test files
Catherine Devlin <catherine.devlin@gmail.com>
parents:
113
diff
changeset
|
43 if callopts.testfile or callopts.test: |
07dff0ba981e
multiple test files
Catherine Devlin <catherine.devlin@gmail.com>
parents:
113
diff
changeset
|
44 CmdLineApp.testfile = callopts.testfile |
106 | 45 sys.argv = [sys.argv[0]] # the --test argument upsets unittest.main() |
46 unittest.main() | |
47 else: | |
48 app = CmdLineApp() | |
254
07dff0ba981e
multiple test files
Catherine Devlin <catherine.devlin@gmail.com>
parents:
113
diff
changeset
|
49 app.cmdloop() |