~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/blackbox/test_status.py

  • Committer: Patch Queue Manager
  • Date: 2011-09-22 14:12:18 UTC
  • mfrom: (6155.3.1 jam)
  • Revision ID: pqm@pqm.ubuntu.com-20110922141218-86s4uu6nqvourw4f
(jameinel) Cleanup comments bzrlib/smart/__init__.py (John A Meinel)

Show diffs side-by-side

added added

removed removed

Lines of Context:
45
45
 
46
46
class BranchStatus(TestCaseWithTransport):
47
47
 
 
48
    def setUp(self):
 
49
        super(BranchStatus, self).setUp()
 
50
        # As TestCase.setUp clears all hooks, we install this default
 
51
        # post_status hook handler for the test.
 
52
        status.hooks.install_named_hook('post_status',
 
53
            status._show_shelve_summary,
 
54
            'bzr status')
 
55
 
48
56
    def assertStatus(self, expected_lines, working_tree,
49
57
        revision=None, short=False, pending=True, verbose=False):
50
58
        """Run status in working_tree and look for output.
203
211
        wt = self.make_branch_and_tree('.')
204
212
        b = wt.branch
205
213
 
206
 
        self.build_tree(['directory/','directory/hello.c', 'bye.c','test.c','dir2/'])
 
214
        self.build_tree(['directory/','directory/hello.c',
 
215
                         'bye.c','test.c','dir2/',
 
216
                         'missing.c'])
207
217
        wt.add('directory')
208
218
        wt.add('test.c')
209
219
        wt.commit('testing')
 
220
        wt.add('missing.c')
 
221
        unlink('missing.c')
210
222
 
211
223
        self.assertStatus([
 
224
                'missing:\n',
 
225
                '  missing.c\n',
212
226
                'unknown:\n',
213
227
                '  bye.c\n',
214
228
                '  dir2/\n',
219
233
        self.assertStatus([
220
234
                '?   bye.c\n',
221
235
                '?   dir2/\n',
 
236
                '+!  missing.c\n',
222
237
                '?   directory/hello.c\n'
223
238
                ],
224
239
                wt, short=True)
261
276
        tof.seek(0)
262
277
        self.assertEquals(tof.readlines(), ['+N  test.c\n'])
263
278
 
 
279
        tof = StringIO()
 
280
        show_tree_status(wt, specific_files=['missing.c'], to_file=tof)
 
281
        tof.seek(0)
 
282
        self.assertEquals(tof.readlines(),
 
283
                          ['missing:\n',
 
284
                           '  missing.c\n'])
 
285
 
 
286
        tof = StringIO()
 
287
        show_tree_status(wt, specific_files=['missing.c'], to_file=tof,
 
288
                         short=True)
 
289
        tof.seek(0)
 
290
        self.assertEquals(tof.readlines(),
 
291
                          ['+!  missing.c\n'])
 
292
 
264
293
    def test_specific_files_conflicts(self):
265
294
        tree = self.make_branch_and_tree('.')
266
295
        self.build_tree(['dir2/'])
295
324
        wt.add('FILE_D')
296
325
        wt.add('FILE_E')
297
326
        wt.commit('Create five empty files.')
298
 
        open('FILE_B', 'w').write('Modification to file FILE_B.')
299
 
        open('FILE_C', 'w').write('Modification to file FILE_C.')
 
327
        with open('FILE_B', 'w') as f: f.write('Modification to file FILE_B.')
 
328
        with open('FILE_C', 'w') as f: f.write('Modification to file FILE_C.')
300
329
        unlink('FILE_E')  # FILE_E will be versioned but missing
301
 
        open('FILE_Q', 'w').write('FILE_Q is added but not committed.')
 
330
        with open('FILE_Q', 'w') as f: f.write('FILE_Q is added but not committed.')
302
331
        wt.add('FILE_Q')  # FILE_Q will be added but not committed
303
332
        open('UNVERSIONED_BUT_EXISTING', 'w')
304
333
        return wt
448
477
          ' M  FILE_B\n',
449
478
          'X   NONEXISTENT\n',
450
479
          ]
 
480
        expected.sort()
451
481
        out, err = self.run_bzr('status --short NONEXISTENT '
452
482
                                'FILE_A FILE_B UNVERSIONED_BUT_EXISTING '
453
483
                                'FILE_C FILE_D FILE_E FILE_Q', retcode=3)
454
 
        self.assertEqual(expected, out.splitlines(True))
 
484
        actual = out.splitlines(True)
 
485
        actual.sort()
 
486
        self.assertEqual(expected, actual)
455
487
        self.assertContainsRe(err,
456
488
                              r'.*ERROR: Path\(s\) do not exist: '
457
489
                              'NONEXISTENT.*')
530
562
        self.run_bzr(['shelve', '--all', '-m', 'foo'])
531
563
        self.build_tree(['bye.c'])
532
564
        wt.add('bye.c')
533
 
        # As TestCase.setUp clears all hooks, we install this default
534
 
        # post_status hook handler for the test.
535
 
        status.hooks.install_named_hook('post_status',
536
 
            status._show_shelve_summary,
537
 
            'bzr status')
538
565
        self.assertStatus([
539
566
                'added:\n',
540
567
                '  bye.c\n',
541
 
                '1 shelves exist. See "bzr shelve --list" for details.\n',
 
568
                '1 shelf exists. See "bzr shelve --list" for details.\n',
 
569
            ],
 
570
            wt)
 
571
        self.run_bzr(['shelve', '--all', '-m', 'bar'])
 
572
        self.build_tree(['spam.c'])
 
573
        wt.add('spam.c')
 
574
        self.assertStatus([
 
575
                'added:\n',
 
576
                '  spam.c\n',
 
577
                '2 shelves exist. See "bzr shelve --list" for details.\n',
542
578
            ],
543
579
            wt)
544
580
 
601
637
        self.assertContainsRe(result, "[+]N  hello.txt\n")
602
638
 
603
639
        self.build_tree(['world.txt'])
604
 
        result = self.run_bzr("status --short -r 0")[0]
 
640
        result = self.run_bzr("status -S -r 0")[0]
605
641
        self.assertContainsRe(result, "[+]N  hello.txt\n" \
606
642
                                      "[?]   world.txt\n")
607
 
        result2 = self.run_bzr("status --short -r 0..")[0]
 
643
        result2 = self.run_bzr("status -S -r 0..")[0]
608
644
        self.assertEquals(result2, result)
609
645
 
610
646
    def test_status_versioned(self):