forked from smurfix/flask-script
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tests.py
393 lines (274 loc) · 10.4 KB
/
tests.py
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
# -*- coding: utf-8 -*-
import sys
import unittest
from flask import Flask
from flaskext.script import Command, Manager, InvalidCommand, Option
class SimpleCommand(Command):
"simple command"
def run(self):
print "OK"
class CommandWithArgs(Command):
"command with args"
option_list = (
Option("name"),
)
def run(self, name):
print name
class CommandWithOptions(Command):
"command with options"
option_list = (
Option("-n", "--name",
help="name to pass in",
dest="name"),
)
def run(self, name):
print name
class CommandWithDynamicOptions(Command):
"command with options"
def __init__(self, default_name='Joe'):
self.default_name = default_name
def get_options(self):
return (
Option("-n", "--name",
help="name to pass in",
dest="name",
default=self.default_name),
)
def run(self, name):
print name
class CommandWithCatchAll(Command):
"command with catch all args"
capture_all_args = True
def get_options(self):
return (Option('--foo', dest='foo',
action='store_true'),)
def run(self, remaining_args, foo):
print remaining_args
class TestCommands(unittest.TestCase):
TESTING = True
def setUp(self):
self.app = Flask(__name__)
self.app.config.from_object(self)
class TestManager(unittest.TestCase):
TESTING = True
def setUp(self):
self.app = Flask(__name__)
self.app.config.from_object(self)
def test_with_default_commands(self):
manager = Manager(self.app)
assert 'runserver' in manager._commands
assert 'shell' in manager._commands
def test_without_default_commands(self):
manager = Manager(self.app, with_default_commands=False)
assert 'runserver' not in manager._commands
assert 'shell' not in manager._commands
def test_add_command(self):
manager = Manager(self.app)
manager.add_command("simple", SimpleCommand())
assert isinstance(manager._commands['simple'], SimpleCommand)
def test_simple_command_decorator(self):
manager = Manager(self.app)
@manager.command
def hello():
print "hello"
assert 'hello' in manager._commands
manager.handle("manage.py", "hello")
assert 'hello' in sys.stdout.getvalue()
def test_simple_command_decorator_with_pos_arg(self):
manager = Manager(self.app)
@manager.command
def hello(name):
print "hello", name
assert 'hello' in manager._commands
manager.handle("manage.py", "hello", ["joe"])
assert 'hello joe' in sys.stdout.getvalue()
def test_command_decorator_with_options(self):
manager = Manager(self.app)
@manager.command
def hello(name='fred'):
"Prints your name"
print "hello", name
assert 'hello' in manager._commands
manager.handle("manage.py", "hello", ["--name=joe"])
assert 'hello joe' in sys.stdout.getvalue()
manager.handle("manage.py", "hello", ["-n joe"])
assert 'hello joe' in sys.stdout.getvalue()
try:
manager.handle("manage.py", "hello", ["-h"])
except SystemExit:
pass
assert 'Prints your name' in sys.stdout.getvalue()
try:
manager.handle("manage.py", "hello", ["--help"])
except SystemExit:
pass
assert 'Prints your name' in sys.stdout.getvalue()
def test_command_decorator_with_boolean_options(self):
manager = Manager(self.app)
@manager.command
def verify(verified=False):
"Checks if verified"
print "VERIFIED ?", "YES" if verified else "NO"
assert 'verify' in manager._commands
manager.handle("manage.py", "verify", ["--verified"])
assert 'YES' in sys.stdout.getvalue()
manager.handle("manage.py", "verify", ["-v"])
assert 'YES' in sys.stdout.getvalue()
manager.handle("manage.py", "verify", [])
assert 'NO' in sys.stdout.getvalue()
try:
manager.handle("manage.py", "verify", ["-h"])
except SystemExit:
pass
assert 'Checks if verified' in sys.stdout.getvalue()
def test_simple_command_decorator_with_pos_arg_and_options(self):
manager = Manager(self.app)
@manager.command
def hello(name, url=None):
if url:
assert type(url) is unicode
print "hello", name, "from", url
else:
assert type(name) is unicode
print "hello", name
assert 'hello' in manager._commands
manager.handle("manage.py", "hello", ["joe"])
assert 'hello joe' in sys.stdout.getvalue()
manager.handle("manage.py", "hello", ["joe", '--url=reddit.com'])
assert 'hello joe from reddit.com' in sys.stdout.getvalue()
def test_command_decorator_with_additional_options(self):
manager = Manager(self.app)
@manager.option('-n', '--name', dest='name', help='Your name')
def hello(name):
print "hello", name
assert 'hello' in manager._commands
manager.handle("manage.py", "hello", ["--name=joe"])
assert 'hello joe' in sys.stdout.getvalue()
try:
manager.handle("manage.py", "hello", ["-h"])
except SystemExit:
pass
assert "Your name" in sys.stdout.getvalue()
@manager.option('-n', '--name', dest='name', help='Your name')
@manager.option('-u', '--url', dest='url', help='Your URL')
def hello_again(name, url=None):
if url:
print "hello", name, "from", url
else:
print "hello", name
assert 'hello_again' in manager._commands
manager.handle("manage.py", "hello_again", ["--name=joe"])
assert 'hello joe' in sys.stdout.getvalue()
manager.handle("manage.py", "hello_again",
["--name=joe", "--url=reddit.com"])
assert 'hello joe from reddit.com' in sys.stdout.getvalue()
def test_get_usage(self):
manager = Manager(self.app)
manager.add_command("simple", SimpleCommand())
assert "simple simple command" in manager.get_usage()
def test_get_usage_with_specified_usage(self):
manager = Manager(self.app, usage="hello")
manager.add_command("simple", SimpleCommand())
usage = manager.get_usage()
assert "simple simple command" in usage
assert "hello" in usage
def test_run_existing_command(self):
manager = Manager(self.app)
manager.add_command("simple", SimpleCommand())
manager.handle("manage.py", "simple")
assert 'OK' in sys.stdout.getvalue()
def test_run_non_existant_command(self):
manager = Manager(self.app)
self.assertRaises(InvalidCommand,
manager.handle,
"manage.py", "simple")
def test_run_existing(self):
manager = Manager(self.app)
manager.add_command("simple", SimpleCommand())
sys.argv = ["manage.py", "simple"]
try:
manager.run()
except SystemExit, e:
assert e.code == 0
assert 'OK' in sys.stdout.getvalue()
def test_run_existing_bind_later(self):
manager = Manager(self.app)
sys.argv = ["manage.py", "simple"]
try:
manager.run({'simple':SimpleCommand()})
except SystemExit, e:
assert e.code == 0
assert 'OK' in sys.stdout.getvalue()
def test_run_not_existing(self):
manager = Manager(self.app)
sys.argv = ["manage.py", "simple"]
try:
manager.run()
except SystemExit, e:
assert e.code == 1
assert 'OK' not in sys.stdout.getvalue()
def test_run_no_name(self):
manager = Manager(self.app)
sys.argv = ["manage.py"]
try:
manager.run()
except SystemExit, e:
assert e.code == 1
def test_run_good_options(self):
manager = Manager(self.app)
manager.add_command("simple", CommandWithOptions())
sys.argv = ["manage.py", "simple", "--name=Joe"]
try:
manager.run()
except SystemExit, e:
assert e.code == 0
assert "Joe" in sys.stdout.getvalue()
def test_run_dynamic_options(self):
manager = Manager(self.app)
manager.add_command("simple", CommandWithDynamicOptions('Fred'))
sys.argv = ["manage.py", "simple"]
try:
manager.run()
except SystemExit, e:
assert e.code == 0
assert "Fred" in sys.stdout.getvalue()
def test_run_catch_all(self):
manager = Manager(self.app)
manager.add_command("catch", CommandWithCatchAll())
sys.argv = ["manage.py", "catch", "pos1", "--foo", "pos2", "--bar"]
try:
manager.run()
except SystemExit, e:
assert e.code == 0
assert "['pos1', 'pos2', '--bar']" in sys.stdout.getvalue()
def test_run_bad_options(self):
manager = Manager(self.app)
manager.add_command("simple", CommandWithOptions())
sys.argv = ["manage.py", "simple", "--foo=bar"]
try:
manager.run()
except SystemExit, e:
assert e.code == 2
def test_init_with_flask_instance(self):
manager = Manager(self.app)
assert callable(manager.app)
def test_init_with_callable(self):
manager = Manager(lambda: app)
assert callable(manager.app)
def test_raise_index_error(self):
manager = Manager(self.app)
@manager.command
def error():
raise IndexError()
try:
self.assertRaises(IndexError, manager.run, default_command="error")
except SystemExit, e:
assert e.code == 1
def test_run_with_default_command(self):
manager = Manager(self.app)
manager.add_command('simple', SimpleCommand())
try:
manager.run(default_command='simple')
except SystemExit, e:
assert e.code==0
assert 'OK' in sys.stdout.getvalue()