30
27
def test_comment_is_ignored(self):
31
28
self.assertEquals([], script._script_to_commands('#comment\n'))
33
def test_comment_multiple_lines(self):
35
(['bar'], None, None, None),
37
script._script_to_commands("""
38
# this comment is ignored
44
def test_trim_blank_lines(self):
45
"""Blank lines are respected, but trimmed at the start and end.
47
Python triple-quoted syntax is going to give stubby/empty blank lines
48
right at the start and the end. These are cut off so that callers don't
49
need special syntax to avoid them.
51
However we do want to be able to match commands that emit blank lines.
54
(['bar'], None, '\n', None),
56
script._script_to_commands("""
30
def test_empty_line_is_ignored(self):
31
self.assertEquals([], script._script_to_commands('\n'))
61
33
def test_simple_command(self):
62
34
self.assertEquals([(['cd', 'trunk'], None, None, None)],
161
133
class TestExecution(script.TestCaseWithTransportAndScript):
163
135
def test_unknown_command(self):
164
"""A clear error is reported for commands that aren't recognised
166
Testing the attributes of the SyntaxError instance is equivalent to
167
using traceback.format_exception_only and comparing with:
168
File "<string>", line 1
171
SyntaxError: Command not found "foo"
173
e = self.assertRaises(SyntaxError, self.run_script, "$ foo --frob")
174
self.assertContainsRe(e.msg, "not found.*foo")
175
self.assertEquals(e.text, "foo --frob")
177
def test_blank_output_mismatches_output(self):
178
"""If you give output, the output must actually be blank.
180
See <https://bugs.launchpad.net/bzr/+bug/637830>: previously blank
181
output was a wildcard. Now you must say ... if you want that.
183
self.assertRaises(AssertionError,
189
def test_null_output_matches_option(self):
190
"""If you want null output to be a wild card, you can pass
191
null_output_matches_anything to run_script"""
195
""", null_output_matches_anything=True)
197
def test_ellipsis_everything(self):
198
"""A simple ellipsis matches everything."""
204
def test_ellipsis_matches_empty(self):
136
self.assertRaises(SyntaxError, self.run_script, 'foo')
210
138
def test_stops_on_unexpected_output(self):
292
218
cat dog "chicken" 'dragon'
295
def test_verbosity_isolated(self):
296
"""Global verbosity is isolated from commands run in scripts.
298
# see also 656694; we should get rid of global verbosity
302
self.assertEquals(trace.is_quiet(), False)
305
222
class TestCat(script.TestCaseWithTransportAndScript):
386
self.assertPathExists('dir')
387
self.assertPathExists('dir2')
303
self.failUnlessExists('dir')
304
self.failUnlessExists('dir2')
390
307
class TestCd(script.TestCaseWithTransportAndScript):
412
329
class TestBzr(script.TestCaseWithTransportAndScript):
414
331
def test_bzr_smoke(self):
417
Created a standalone tree (format: ...)
419
self.assertPathExists('branch')
332
self.run_script('$ bzr init branch')
333
self.failUnlessExists('branch')
422
336
class TestEcho(script.TestCaseWithMemoryTransportAndScript):
463
377
self.assertEquals(None, err)
464
378
self.assertFileEqual('hello\nhappy\n', 'file')
466
def test_empty_line_in_output_is_respected(self):
475
381
class TestRm(script.TestCaseWithTransportAndScript):
481
387
def test_rm_file(self):
482
388
self.run_script('$ echo content >file')
483
self.assertPathExists('file')
389
self.failUnlessExists('file')
484
390
self.run_script('$ rm file')
485
self.assertPathDoesNotExist('file')
391
self.failIfExists('file')
487
393
def test_rm_file_force(self):
488
self.assertPathDoesNotExist('file')
394
self.failIfExists('file')
489
395
self.run_script('$ rm -f file')
490
self.assertPathDoesNotExist('file')
396
self.failIfExists('file')
492
398
def test_rm_files(self):
493
399
self.run_script("""
494
400
$ echo content >file
495
401
$ echo content >file2
497
self.assertPathExists('file2')
403
self.failUnlessExists('file2')
498
404
self.run_script('$ rm file file2')
499
self.assertPathDoesNotExist('file2')
405
self.failIfExists('file2')
501
407
def test_rm_dir(self):
502
408
self.run_script('$ mkdir dir')
503
self.assertPathExists('dir')
409
self.failUnlessExists('dir')
504
410
self.run_script("""
506
412
2>rm: cannot remove 'dir': Is a directory
508
self.assertPathExists('dir')
414
self.failUnlessExists('dir')
510
416
def test_rm_dir_recursive(self):
511
417
self.run_script("""
515
self.assertPathDoesNotExist('dir')
421
self.failIfExists('dir')
518
424
class TestMv(script.TestCaseWithTransportAndScript):
525
431
def test_move_file(self):
526
432
self.run_script('$ echo content >file')
527
self.assertPathExists('file')
433
self.failUnlessExists('file')
528
434
self.run_script('$ mv file new_name')
529
self.assertPathDoesNotExist('file')
530
self.assertPathExists('new_name')
435
self.failIfExists('file')
436
self.failUnlessExists('new_name')
532
438
def test_move_unknown_file(self):
533
439
self.assertRaises(AssertionError,
539
445
$ echo content >dir/file
541
447
self.run_script('$ mv dir new_name')
542
self.assertPathDoesNotExist('dir')
543
self.assertPathExists('new_name')
544
self.assertPathExists('new_name/file')
448
self.failIfExists('dir')
449
self.failUnlessExists('new_name')
450
self.failUnlessExists('new_name/file')
546
452
def test_move_file_into_dir(self):
547
453
self.run_script("""
549
455
$ echo content > file
551
457
self.run_script('$ mv file dir')
552
self.assertPathExists('dir')
553
self.assertPathDoesNotExist('file')
554
self.assertPathExists('dir/file')
557
class cmd_test_confirm(commands.Command):
560
if ui.ui_factory.get_boolean(
562
# 'bzrlib.tests.test_script.confirm',
565
self.outf.write('Do it!\n')
570
class TestUserInteraction(script.TestCaseWithMemoryTransportAndScript):
572
def test_confirm_action(self):
573
"""You can write tests that demonstrate user confirmation.
575
Specifically, ScriptRunner does't care if the output line for the prompt
576
isn't terminated by a newline from the program; it's implicitly terminated
579
commands.builtin_command_registry.register(cmd_test_confirm)
580
self.addCleanup(commands.builtin_command_registry.remove, 'test-confirm')
583
2>Really do it? [y/n]:
587
2>Really do it? [y/n]:
458
self.failUnlessExists('dir')
459
self.failIfExists('file')
460
self.failUnlessExists('dir/file')