/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

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

  • Committer: Gustav Hartvigsson
  • Date: 2021-01-09 21:36:27 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20210109213627-h1xwcutzy9m7a99b
Added 'Case Preserving Working Tree Use Cases' from Canonical Wiki

* Addod a page from the Canonical Bazaar wiki
  with information on the scmeatics of case
  perserving filesystems an a case insensitive
  filesystem works.
  
  * Needs re-work, but this will do as it is the
    same inforamoton as what was on the linked
    page in the currint documentation.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2005-2012, 2016 Canonical Ltd
 
2
#
 
3
# This program is free software; you can redistribute it and/or modify
 
4
# it under the terms of the GNU General Public License as published by
 
5
# the Free Software Foundation; either version 2 of the License, or
 
6
# (at your option) any later version.
 
7
#
 
8
# This program is distributed in the hope that it will be useful,
 
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
# GNU General Public License for more details.
 
12
#
 
13
# You should have received a copy of the GNU General Public License
 
14
# along with this program; if not, write to the Free Software
 
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 
16
 
 
17
"""Tests of status command.
 
18
 
 
19
Most of these depend on the particular formatting used.
 
20
As such they really are blackbox tests even though some of the
 
21
tests are not using self.capture. If we add tests for the programmatic
 
22
interface later, they will be non blackbox tests.
 
23
"""
 
24
 
 
25
import codecs
 
26
from io import (
 
27
    BytesIO,
 
28
    StringIO,
 
29
    )
 
30
from os import mkdir, chdir, rmdir, unlink
 
31
import sys
 
32
 
 
33
from ... import (
 
34
    errors,
 
35
    osutils,
 
36
    status,
 
37
    )
 
38
from breezy.bzr import (
 
39
    bzrdir,
 
40
    conflicts,
 
41
    )
 
42
import breezy.branch
 
43
from ...osutils import pathjoin
 
44
from ...revisionspec import RevisionSpec
 
45
from ...status import show_tree_status
 
46
from .. import TestCaseWithTransport, TestSkipped
 
47
from ...workingtree import WorkingTree
 
48
 
 
49
 
 
50
class BranchStatus(TestCaseWithTransport):
 
51
 
 
52
    def setUp(self):
 
53
        super(BranchStatus, self).setUp()
 
54
        # As TestCase.setUp clears all hooks, we install this default
 
55
        # post_status hook handler for the test.
 
56
        status.hooks.install_named_hook('post_status',
 
57
                                        status._show_shelve_summary,
 
58
                                        'brz status')
 
59
 
 
60
    def assertStatus(self, expected_lines, working_tree, specific_files=None,
 
61
                     revision=None, short=False, pending=True, verbose=False):
 
62
        """Run status in working_tree and look for output.
 
63
 
 
64
        :param expected_lines: The lines to look for.
 
65
        :param working_tree: The tree to run status in.
 
66
        """
 
67
        output_string = self.status_string(working_tree, specific_files, revision, short,
 
68
                                           pending, verbose)
 
69
        self.assertEqual(expected_lines, output_string.splitlines(True))
 
70
 
 
71
    def status_string(self, wt, specific_files=None, revision=None,
 
72
                      short=False, pending=True, verbose=False):
 
73
        uio = self.make_utf8_encoded_stringio()
 
74
        show_tree_status(wt, specific_files=specific_files, to_file=uio,
 
75
                         revision=revision, short=short, show_pending=pending,
 
76
                         verbose=verbose)
 
77
        return uio.getvalue().decode('utf-8')
 
78
 
 
79
    def test_branch_status(self):
 
80
        """Test basic branch status"""
 
81
        wt = self.make_branch_and_tree('.')
 
82
 
 
83
        # status with no commits or files - it must
 
84
        # work and show no output. We do this with no
 
85
        # commits to be sure that it's not going to fail
 
86
        # as a corner case.
 
87
        self.assertStatus([], wt)
 
88
 
 
89
        self.build_tree(['hello.c', 'bye.c'])
 
90
        self.assertStatus([
 
91
            'unknown:\n',
 
92
            '  bye.c\n',
 
93
            '  hello.c\n',
 
94
            ],
 
95
            wt)
 
96
        self.assertStatus([
 
97
            '?   bye.c\n',
 
98
            '?   hello.c\n',
 
99
            ],
 
100
            wt, short=True)
 
101
 
 
102
        # add a commit to allow showing pending merges.
 
103
        wt.commit('create a parent to allow testing merge output')
 
104
 
 
105
        wt.add_parent_tree_id(b'pending@pending-0-0')
 
106
        self.assertStatus([
 
107
            'unknown:\n',
 
108
            '  bye.c\n',
 
109
            '  hello.c\n',
 
110
            'pending merge tips: (use -v to see all merge revisions)\n',
 
111
            '  (ghost) pending@pending-0-0\n',
 
112
            ],
 
113
            wt)
 
114
        self.assertStatus([
 
115
            'unknown:\n',
 
116
            '  bye.c\n',
 
117
            '  hello.c\n',
 
118
            'pending merges:\n',
 
119
            '  (ghost) pending@pending-0-0\n',
 
120
            ],
 
121
            wt, verbose=True)
 
122
        self.assertStatus([
 
123
            '?   bye.c\n',
 
124
            '?   hello.c\n',
 
125
            'P   (ghost) pending@pending-0-0\n',
 
126
            ],
 
127
            wt, short=True)
 
128
        self.assertStatus([
 
129
            'unknown:\n',
 
130
            '  bye.c\n',
 
131
            '  hello.c\n',
 
132
            ],
 
133
            wt, pending=False)
 
134
        self.assertStatus([
 
135
            '?   bye.c\n',
 
136
            '?   hello.c\n',
 
137
            ],
 
138
            wt, short=True, pending=False)
 
139
 
 
140
    def test_branch_status_revisions(self):
 
141
        """Tests branch status with revisions"""
 
142
        wt = self.make_branch_and_tree('.')
 
143
 
 
144
        self.build_tree(['hello.c', 'bye.c'])
 
145
        wt.add('hello.c')
 
146
        wt.add('bye.c')
 
147
        wt.commit('Test message')
 
148
 
 
149
        revs = [RevisionSpec.from_string('0')]
 
150
        self.assertStatus([
 
151
            'added:\n',
 
152
            '  bye.c\n',
 
153
            '  hello.c\n'
 
154
            ],
 
155
            wt,
 
156
            revision=revs)
 
157
 
 
158
        self.build_tree(['more.c'])
 
159
        wt.add('more.c')
 
160
        wt.commit('Another test message')
 
161
 
 
162
        revs.append(RevisionSpec.from_string('1'))
 
163
        self.assertStatus([
 
164
            'added:\n',
 
165
            '  bye.c\n',
 
166
            '  hello.c\n',
 
167
            ],
 
168
            wt,
 
169
            revision=revs)
 
170
 
 
171
    def test_pending(self):
 
172
        """Pending merges display works, including Unicode"""
 
173
        mkdir("./branch")
 
174
        wt = self.make_branch_and_tree('branch')
 
175
        b = wt.branch
 
176
        wt.commit("Empty commit 1")
 
177
        b_2_dir = b.controldir.sprout('./copy')
 
178
        b_2 = b_2_dir.open_branch()
 
179
        wt2 = b_2_dir.open_workingtree()
 
180
        wt.commit(u"\N{TIBETAN DIGIT TWO} Empty commit 2")
 
181
        wt2.merge_from_branch(wt.branch)
 
182
        message = self.status_string(wt2, verbose=True)
 
183
        self.assertStartsWith(message, "pending merges:\n")
 
184
        self.assertEndsWith(message, "Empty commit 2\n")
 
185
        wt2.commit("merged")
 
186
        # must be long to make sure we see elipsis at the end
 
187
        wt.commit("Empty commit 3 "
 
188
                  + "blah blah blah blah " * 100)
 
189
        wt2.merge_from_branch(wt.branch)
 
190
        message = self.status_string(wt2, verbose=True)
 
191
        self.assertStartsWith(message, "pending merges:\n")
 
192
        self.assertTrue("Empty commit 3" in message)
 
193
        self.assertEndsWith(message, "...\n")
 
194
 
 
195
    def test_tree_status_ignores(self):
 
196
        """Tests branch status with ignores"""
 
197
        wt = self.make_branch_and_tree('.')
 
198
        self.run_bzr('ignore *~')
 
199
        wt.commit('commit .bzrignore')
 
200
        self.build_tree(['foo.c', 'foo.c~'])
 
201
        self.assertStatus([
 
202
            'unknown:\n',
 
203
            '  foo.c\n',
 
204
            ],
 
205
            wt)
 
206
        self.assertStatus([
 
207
            '?   foo.c\n',
 
208
            ],
 
209
            wt, short=True)
 
210
 
 
211
    def test_tree_status_specific_files(self):
 
212
        """Tests branch status with given specific files"""
 
213
        wt = self.make_branch_and_tree('.')
 
214
        b = wt.branch
 
215
 
 
216
        self.build_tree(['directory/', 'directory/hello.c',
 
217
                         'bye.c', 'test.c', 'dir2/',
 
218
                         'missing.c'])
 
219
        wt.add('directory')
 
220
        wt.add('test.c')
 
221
        wt.commit('testing')
 
222
        wt.add('missing.c')
 
223
        unlink('missing.c')
 
224
 
 
225
        self.assertStatus([
 
226
            'missing:\n',
 
227
            '  missing.c\n',
 
228
            'unknown:\n',
 
229
            '  bye.c\n',
 
230
            '  dir2/\n',
 
231
            '  directory/hello.c\n'
 
232
            ],
 
233
            wt)
 
234
 
 
235
        self.assertStatus([
 
236
            '?   bye.c\n',
 
237
            '?   dir2/\n',
 
238
            '?   directory/hello.c\n',
 
239
            '+!  missing.c\n',
 
240
            ],
 
241
            wt, short=True)
 
242
 
 
243
        tof = StringIO()
 
244
        self.assertRaises(errors.PathsDoNotExist,
 
245
                          show_tree_status,
 
246
                          wt, specific_files=['bye.c', 'test.c', 'absent.c'],
 
247
                          to_file=tof)
 
248
 
 
249
        tof = StringIO()
 
250
        show_tree_status(wt, specific_files=['directory'], to_file=tof)
 
251
        tof.seek(0)
 
252
        self.assertEqual(tof.readlines(),
 
253
                         ['unknown:\n',
 
254
                          '  directory/hello.c\n'
 
255
                          ])
 
256
        tof = StringIO()
 
257
        show_tree_status(wt, specific_files=['directory'], to_file=tof,
 
258
                         short=True)
 
259
        tof.seek(0)
 
260
        self.assertEqual(tof.readlines(), ['?   directory/hello.c\n'])
 
261
 
 
262
        tof = StringIO()
 
263
        show_tree_status(wt, specific_files=['dir2'], to_file=tof)
 
264
        tof.seek(0)
 
265
        self.assertEqual(tof.readlines(),
 
266
                         ['unknown:\n',
 
267
                          '  dir2/\n'
 
268
                          ])
 
269
        tof = StringIO()
 
270
        show_tree_status(wt, specific_files=['dir2'], to_file=tof, short=True)
 
271
        tof.seek(0)
 
272
        self.assertEqual(tof.readlines(), ['?   dir2/\n'])
 
273
 
 
274
        tof = StringIO()
 
275
        revs = [RevisionSpec.from_string('0'), RevisionSpec.from_string('1')]
 
276
        show_tree_status(wt, specific_files=['test.c'], to_file=tof,
 
277
                         short=True, revision=revs)
 
278
        tof.seek(0)
 
279
        self.assertEqual(tof.readlines(), ['+N  test.c\n'])
 
280
 
 
281
        tof = StringIO()
 
282
        show_tree_status(wt, specific_files=['missing.c'], to_file=tof)
 
283
        tof.seek(0)
 
284
        self.assertEqual(tof.readlines(),
 
285
                         ['missing:\n',
 
286
                          '  missing.c\n'])
 
287
 
 
288
        tof = StringIO()
 
289
        show_tree_status(wt, specific_files=['missing.c'], to_file=tof,
 
290
                         short=True)
 
291
        tof.seek(0)
 
292
        self.assertEqual(tof.readlines(),
 
293
                         ['+!  missing.c\n'])
 
294
 
 
295
    def test_specific_files_conflicts(self):
 
296
        tree = self.make_branch_and_tree('.')
 
297
        self.build_tree(['dir2/'])
 
298
        tree.add('dir2')
 
299
        tree.commit('added dir2')
 
300
        tree.set_conflicts([conflicts.ContentsConflict('foo')])
 
301
        tof = BytesIO()
 
302
        show_tree_status(tree, specific_files=['dir2'], to_file=tof)
 
303
        self.assertEqualDiff(b'', tof.getvalue())
 
304
        tree.set_conflicts([conflicts.ContentsConflict('dir2')])
 
305
        tof = StringIO()
 
306
        show_tree_status(tree, specific_files=['dir2'], to_file=tof)
 
307
        self.assertEqualDiff('conflicts:\n  Contents conflict in dir2\n',
 
308
                             tof.getvalue())
 
309
 
 
310
        tree.set_conflicts([conflicts.ContentsConflict('dir2/file1')])
 
311
        tof = StringIO()
 
312
        show_tree_status(tree, specific_files=['dir2'], to_file=tof)
 
313
        self.assertEqualDiff('conflicts:\n  Contents conflict in dir2/file1\n',
 
314
                             tof.getvalue())
 
315
 
 
316
    def _prepare_nonexistent(self):
 
317
        wt = self.make_branch_and_tree('.')
 
318
        self.assertStatus([], wt)
 
319
        self.build_tree(['FILE_A', 'FILE_B', 'FILE_C', 'FILE_D', 'FILE_E', ])
 
320
        wt.add('FILE_A')
 
321
        wt.add('FILE_B')
 
322
        wt.add('FILE_C')
 
323
        wt.add('FILE_D')
 
324
        wt.add('FILE_E')
 
325
        wt.commit('Create five empty files.')
 
326
        with open('FILE_B', 'w') as f:
 
327
            f.write('Modification to file FILE_B.')
 
328
        with open('FILE_C', 'w') as f:
 
329
            f.write('Modification to file FILE_C.')
 
330
        unlink('FILE_E')  # FILE_E will be versioned but missing
 
331
        with open('FILE_Q', 'w') as f:
 
332
            f.write('FILE_Q is added but not committed.')
 
333
        wt.add('FILE_Q')  # FILE_Q will be added but not committed
 
334
        open('UNVERSIONED_BUT_EXISTING', 'w')
 
335
        return wt
 
336
 
 
337
    def test_status_nonexistent_file(self):
 
338
        # files that don't exist in either the basis tree or working tree
 
339
        # should give an error
 
340
        wt = self._prepare_nonexistent()
 
341
        self.assertStatus([
 
342
            'removed:\n',
 
343
            '  FILE_E\n',
 
344
            'added:\n',
 
345
            '  FILE_Q\n',
 
346
            'modified:\n',
 
347
            '  FILE_B\n',
 
348
            '  FILE_C\n',
 
349
            'unknown:\n',
 
350
            '  UNVERSIONED_BUT_EXISTING\n',
 
351
            ],
 
352
            wt)
 
353
        self.assertStatus([
 
354
            ' M  FILE_B\n',
 
355
            ' M  FILE_C\n',
 
356
            ' D  FILE_E\n',
 
357
            '+N  FILE_Q\n',
 
358
            '?   UNVERSIONED_BUT_EXISTING\n',
 
359
            ],
 
360
            wt, short=True)
 
361
 
 
362
        # Okay, everything's looking good with the existent files.
 
363
        # Let's see what happens when we throw in non-existent files.
 
364
 
 
365
        # brz st [--short] NONEXISTENT '
 
366
        expected = [
 
367
            'nonexistent:\n',
 
368
            '  NONEXISTENT\n',
 
369
            ]
 
370
        out, err = self.run_bzr('status NONEXISTENT', retcode=3)
 
371
        self.assertEqual(expected, out.splitlines(True))
 
372
        self.assertContainsRe(err,
 
373
                              r'.*ERROR: Path\(s\) do not exist: '
 
374
                              'NONEXISTENT.*')
 
375
        expected = [
 
376
            'X:   NONEXISTENT\n',
 
377
            ]
 
378
        out, err = self.run_bzr('status --short NONEXISTENT', retcode=3)
 
379
        self.assertContainsRe(err,
 
380
                              r'.*ERROR: Path\(s\) do not exist: '
 
381
                              'NONEXISTENT.*')
 
382
 
 
383
    def test_status_nonexistent_file_with_others(self):
 
384
        # brz st [--short] NONEXISTENT ...others..
 
385
        wt = self._prepare_nonexistent()
 
386
        expected = [
 
387
            'removed:\n',
 
388
            '  FILE_E\n',
 
389
            'modified:\n',
 
390
            '  FILE_B\n',
 
391
            '  FILE_C\n',
 
392
            'nonexistent:\n',
 
393
            '  NONEXISTENT\n',
 
394
            ]
 
395
        out, err = self.run_bzr('status NONEXISTENT '
 
396
                                'FILE_A FILE_B FILE_C FILE_D FILE_E',
 
397
                                retcode=3)
 
398
        self.assertEqual(expected, out.splitlines(True))
 
399
        self.assertContainsRe(err,
 
400
                              r'.*ERROR: Path\(s\) do not exist: '
 
401
                              'NONEXISTENT.*')
 
402
        expected = [
 
403
            ' M  FILE_B\n',
 
404
            ' M  FILE_C\n',
 
405
            ' D  FILE_E\n',
 
406
            'X   NONEXISTENT\n',
 
407
            ]
 
408
        out, err = self.run_bzr('status --short NONEXISTENT '
 
409
                                'FILE_A FILE_B FILE_C FILE_D FILE_E',
 
410
                                retcode=3)
 
411
        self.assertEqual(expected, out.splitlines(True))
 
412
        self.assertContainsRe(err,
 
413
                              r'.*ERROR: Path\(s\) do not exist: '
 
414
                              'NONEXISTENT.*')
 
415
 
 
416
    def test_status_multiple_nonexistent_files(self):
 
417
        # brz st [--short] NONEXISTENT ... ANOTHER_NONEXISTENT ...
 
418
        wt = self._prepare_nonexistent()
 
419
        expected = [
 
420
            'removed:\n',
 
421
            '  FILE_E\n',
 
422
            'modified:\n',
 
423
            '  FILE_B\n',
 
424
            '  FILE_C\n',
 
425
            'nonexistent:\n',
 
426
            '  ANOTHER_NONEXISTENT\n',
 
427
            '  NONEXISTENT\n',
 
428
            ]
 
429
        out, err = self.run_bzr('status NONEXISTENT '
 
430
                                'FILE_A FILE_B ANOTHER_NONEXISTENT '
 
431
                                'FILE_C FILE_D FILE_E', retcode=3)
 
432
        self.assertEqual(expected, out.splitlines(True))
 
433
        self.assertContainsRe(err,
 
434
                              r'.*ERROR: Path\(s\) do not exist: '
 
435
                              'ANOTHER_NONEXISTENT NONEXISTENT.*')
 
436
        expected = [
 
437
            ' M  FILE_B\n',
 
438
            ' M  FILE_C\n',
 
439
            ' D  FILE_E\n',
 
440
            'X   ANOTHER_NONEXISTENT\n',
 
441
            'X   NONEXISTENT\n',
 
442
            ]
 
443
        out, err = self.run_bzr('status --short NONEXISTENT '
 
444
                                'FILE_A FILE_B ANOTHER_NONEXISTENT '
 
445
                                'FILE_C FILE_D FILE_E', retcode=3)
 
446
        self.assertEqual(expected, out.splitlines(True))
 
447
        self.assertContainsRe(err,
 
448
                              r'.*ERROR: Path\(s\) do not exist: '
 
449
                              'ANOTHER_NONEXISTENT NONEXISTENT.*')
 
450
 
 
451
    def test_status_nonexistent_file_with_unversioned(self):
 
452
        # brz st [--short] NONEXISTENT A B UNVERSIONED_BUT_EXISTING C D E Q
 
453
        wt = self._prepare_nonexistent()
 
454
        expected = [
 
455
            'removed:\n',
 
456
            '  FILE_E\n',
 
457
            'added:\n',
 
458
            '  FILE_Q\n',
 
459
            'modified:\n',
 
460
            '  FILE_B\n',
 
461
            '  FILE_C\n',
 
462
            'unknown:\n',
 
463
            '  UNVERSIONED_BUT_EXISTING\n',
 
464
            'nonexistent:\n',
 
465
            '  NONEXISTENT\n',
 
466
            ]
 
467
        out, err = self.run_bzr('status NONEXISTENT '
 
468
                                'FILE_A FILE_B UNVERSIONED_BUT_EXISTING '
 
469
                                'FILE_C FILE_D FILE_E FILE_Q', retcode=3)
 
470
        self.assertEqual(expected, out.splitlines(True))
 
471
        self.assertContainsRe(err,
 
472
                              r'.*ERROR: Path\(s\) do not exist: '
 
473
                              'NONEXISTENT.*')
 
474
        expected = sorted([
 
475
            '+N  FILE_Q\n',
 
476
            '?   UNVERSIONED_BUT_EXISTING\n',
 
477
            ' D  FILE_E\n',
 
478
            ' M  FILE_C\n',
 
479
            ' M  FILE_B\n',
 
480
            'X   NONEXISTENT\n',
 
481
            ])
 
482
        out, err = self.run_bzr('status --short NONEXISTENT '
 
483
                                'FILE_A FILE_B UNVERSIONED_BUT_EXISTING '
 
484
                                'FILE_C FILE_D FILE_E FILE_Q', retcode=3)
 
485
        actual = out.splitlines(True)
 
486
        actual.sort()
 
487
        self.assertEqual(expected, actual)
 
488
        self.assertContainsRe(err,
 
489
                              r'.*ERROR: Path\(s\) do not exist: '
 
490
                              'NONEXISTENT.*')
 
491
 
 
492
    def test_status_out_of_date(self):
 
493
        """Simulate status of out-of-date tree after remote push"""
 
494
        tree = self.make_branch_and_tree('.')
 
495
        self.build_tree_contents([('a', b'foo\n')])
 
496
        with tree.lock_write():
 
497
            tree.add(['a'])
 
498
            tree.commit('add test file')
 
499
            # simulate what happens after a remote push
 
500
            tree.set_last_revision(b"0")
 
501
        out, err = self.run_bzr('status')
 
502
        self.assertEqual("working tree is out of date, run 'brz update'\n",
 
503
                         err)
 
504
 
 
505
    def test_status_on_ignored(self):
 
506
        """Tests branch status on an unversioned file which is considered ignored.
 
507
 
 
508
        See https://bugs.launchpad.net/bzr/+bug/40103
 
509
        """
 
510
        tree = self.make_branch_and_tree('.')
 
511
 
 
512
        self.build_tree(['test1.c', 'test1.c~', 'test2.c~'])
 
513
        result = self.run_bzr('status')[0]
 
514
        self.assertContainsRe(result, "unknown:\n  test1.c\n")
 
515
        short_result = self.run_bzr('status --short')[0]
 
516
        self.assertContainsRe(short_result, "\\?   test1.c\n")
 
517
 
 
518
        result = self.run_bzr('status test1.c')[0]
 
519
        self.assertContainsRe(result, "unknown:\n  test1.c\n")
 
520
        short_result = self.run_bzr('status --short test1.c')[0]
 
521
        self.assertContainsRe(short_result, "\\?   test1.c\n")
 
522
 
 
523
        result = self.run_bzr('status test1.c~')[0]
 
524
        self.assertContainsRe(result, "ignored:\n  test1.c~\n")
 
525
        short_result = self.run_bzr('status --short test1.c~')[0]
 
526
        self.assertContainsRe(short_result, "I   test1.c~\n")
 
527
 
 
528
        result = self.run_bzr('status test1.c~ test2.c~')[0]
 
529
        self.assertContainsRe(result, "ignored:\n  test1.c~\n  test2.c~\n")
 
530
        short_result = self.run_bzr('status --short test1.c~ test2.c~')[0]
 
531
        self.assertContainsRe(short_result, "I   test1.c~\nI   test2.c~\n")
 
532
 
 
533
        result = self.run_bzr('status test1.c test1.c~ test2.c~')[0]
 
534
        self.assertContainsRe(
 
535
            result, "unknown:\n  test1.c\nignored:\n  test1.c~\n  test2.c~\n")
 
536
        short_result = self.run_bzr(
 
537
            'status --short test1.c test1.c~ test2.c~')[0]
 
538
        self.assertContainsRe(
 
539
            short_result, "\\?   test1.c\nI   test1.c~\nI   test2.c~\n")
 
540
 
 
541
    def test_status_write_lock(self):
 
542
        """Test that status works without fetching history and
 
543
        having a write lock.
 
544
 
 
545
        See https://bugs.launchpad.net/bzr/+bug/149270
 
546
        """
 
547
        mkdir('branch1')
 
548
        wt = self.make_branch_and_tree('branch1')
 
549
        b = wt.branch
 
550
        wt.commit('Empty commit 1')
 
551
        wt2 = b.controldir.sprout('branch2').open_workingtree()
 
552
        wt2.commit('Empty commit 2')
 
553
        out, err = self.run_bzr('status branch1 -rbranch:branch2')
 
554
        self.assertEqual('', out)
 
555
 
 
556
    def test_status_with_shelves(self):
 
557
        """Ensure that _show_shelve_summary handler works.
 
558
        """
 
559
        wt = self.make_branch_and_tree('.')
 
560
        self.build_tree(['hello.c'])
 
561
        wt.add('hello.c')
 
562
        self.run_bzr(['shelve', '--all', '-m', 'foo'])
 
563
        self.build_tree(['bye.c'])
 
564
        wt.add('bye.c')
 
565
        self.assertStatus([
 
566
            'added:\n',
 
567
            '  bye.c\n',
 
568
            '1 shelf exists. See "brz shelve --list" for details.\n',
 
569
            ],
 
570
            wt)
 
571
        self.run_bzr(['shelve', '--all', '-m', 'bar'])
 
572
        self.build_tree(['eggs.c', 'spam.c'])
 
573
        wt.add('eggs.c')
 
574
        wt.add('spam.c')
 
575
        self.assertStatus([
 
576
            'added:\n',
 
577
            '  eggs.c\n',
 
578
            '  spam.c\n',
 
579
            '2 shelves exist. See "brz shelve --list" for details.\n',
 
580
            ],
 
581
            wt)
 
582
        self.assertStatus([
 
583
            'added:\n',
 
584
            '  spam.c\n',
 
585
            ],
 
586
            wt,
 
587
            specific_files=['spam.c'])
 
588
 
 
589
 
 
590
class CheckoutStatus(BranchStatus):
 
591
 
 
592
    def setUp(self):
 
593
        super(CheckoutStatus, self).setUp()
 
594
        mkdir('codir')
 
595
        chdir('codir')
 
596
 
 
597
    def make_branch_and_tree(self, relpath):
 
598
        source = self.make_branch(pathjoin('..', relpath))
 
599
        checkout = bzrdir.BzrDirMetaFormat1().initialize(relpath)
 
600
        checkout.set_branch_reference(source)
 
601
        return checkout.create_workingtree()
 
602
 
 
603
 
 
604
class TestStatus(TestCaseWithTransport):
 
605
 
 
606
    def test_status_plain(self):
 
607
        tree = self.make_branch_and_tree('.')
 
608
 
 
609
        self.build_tree(['hello.txt'])
 
610
        result = self.run_bzr("status")[0]
 
611
        self.assertContainsRe(result, "unknown:\n  hello.txt\n")
 
612
 
 
613
        tree.add("hello.txt")
 
614
        result = self.run_bzr("status")[0]
 
615
        self.assertContainsRe(result, "added:\n  hello.txt\n")
 
616
 
 
617
        tree.commit(message="added")
 
618
        result = self.run_bzr("status -r 0..1")[0]
 
619
        self.assertContainsRe(result, "added:\n  hello.txt\n")
 
620
 
 
621
        result = self.run_bzr("status -c 1")[0]
 
622
        self.assertContainsRe(result, "added:\n  hello.txt\n")
 
623
 
 
624
        self.build_tree(['world.txt'])
 
625
        result = self.run_bzr("status -r 0")[0]
 
626
        self.assertContainsRe(result, "added:\n  hello.txt\n"
 
627
                                      "unknown:\n  world.txt\n")
 
628
        result2 = self.run_bzr("status -r 0..")[0]
 
629
        self.assertEqual(result2, result)
 
630
 
 
631
    def test_status_short(self):
 
632
        tree = self.make_branch_and_tree('.')
 
633
 
 
634
        self.build_tree(['hello.txt'])
 
635
        result = self.run_bzr("status --short")[0]
 
636
        self.assertContainsRe(result, "[?]   hello.txt\n")
 
637
 
 
638
        tree.add("hello.txt")
 
639
        result = self.run_bzr("status --short")[0]
 
640
        self.assertContainsRe(result, "[+]N  hello.txt\n")
 
641
 
 
642
        tree.commit(message="added")
 
643
        result = self.run_bzr("status --short -r 0..1")[0]
 
644
        self.assertContainsRe(result, "[+]N  hello.txt\n")
 
645
 
 
646
        self.build_tree(['world.txt'])
 
647
        result = self.run_bzr("status -S -r 0")[0]
 
648
        self.assertContainsRe(result, "[+]N  hello.txt\n"
 
649
                                      "[?]   world.txt\n")
 
650
        result2 = self.run_bzr("status -S -r 0..")[0]
 
651
        self.assertEqual(result2, result)
 
652
 
 
653
    def test_status_versioned(self):
 
654
        tree = self.make_branch_and_tree('.')
 
655
 
 
656
        self.build_tree(['hello.txt'])
 
657
        result = self.run_bzr("status --versioned")[0]
 
658
        self.assertNotContainsRe(result, "unknown:\n  hello.txt\n")
 
659
 
 
660
        tree.add("hello.txt")
 
661
        result = self.run_bzr("status --versioned")[0]
 
662
        self.assertContainsRe(result, "added:\n  hello.txt\n")
 
663
 
 
664
        tree.commit("added")
 
665
        result = self.run_bzr("status --versioned -r 0..1")[0]
 
666
        self.assertContainsRe(result, "added:\n  hello.txt\n")
 
667
 
 
668
        self.build_tree(['world.txt'])
 
669
        result = self.run_bzr("status --versioned -r 0")[0]
 
670
        self.assertContainsRe(result, "added:\n  hello.txt\n")
 
671
        self.assertNotContainsRe(result, "unknown:\n  world.txt\n")
 
672
        result2 = self.run_bzr("status --versioned -r 0..")[0]
 
673
        self.assertEqual(result2, result)
 
674
 
 
675
    def test_status_SV(self):
 
676
        tree = self.make_branch_and_tree('.')
 
677
 
 
678
        self.build_tree(['hello.txt'])
 
679
        result = self.run_bzr("status -SV")[0]
 
680
        self.assertNotContainsRe(result, "hello.txt")
 
681
 
 
682
        tree.add("hello.txt")
 
683
        result = self.run_bzr("status -SV")[0]
 
684
        self.assertContainsRe(result, "[+]N  hello.txt\n")
 
685
 
 
686
        tree.commit(message="added")
 
687
        result = self.run_bzr("status -SV -r 0..1")[0]
 
688
        self.assertContainsRe(result, "[+]N  hello.txt\n")
 
689
 
 
690
        self.build_tree(['world.txt'])
 
691
        result = self.run_bzr("status -SV -r 0")[0]
 
692
        self.assertContainsRe(result, "[+]N  hello.txt\n")
 
693
 
 
694
        result2 = self.run_bzr("status -SV -r 0..")[0]
 
695
        self.assertEqual(result2, result)
 
696
 
 
697
    def assertStatusContains(self, pattern, short=False):
 
698
        """Run status, and assert it contains the given pattern"""
 
699
        if short:
 
700
            result = self.run_bzr("status --short")[0]
 
701
        else:
 
702
            result = self.run_bzr("status")[0]
 
703
        self.assertContainsRe(result, pattern)
 
704
 
 
705
    def test_kind_change_plain(self):
 
706
        tree = self.make_branch_and_tree('.')
 
707
        self.build_tree(['file'])
 
708
        tree.add('file')
 
709
        tree.commit('added file')
 
710
        unlink('file')
 
711
        self.build_tree(['file/'])
 
712
        self.assertStatusContains(
 
713
            'kind changed:\n  file \\(file => directory\\)')
 
714
        tree.rename_one('file', 'directory')
 
715
        self.assertStatusContains('renamed:\n  file => directory/\n'
 
716
                                  'modified:\n  directory/\n')
 
717
        rmdir('directory')
 
718
        self.assertStatusContains('removed:\n  file\n')
 
719
 
 
720
    def test_kind_change_short(self):
 
721
        tree = self.make_branch_and_tree('.')
 
722
        self.build_tree(['file'])
 
723
        tree.add('file')
 
724
        tree.commit('added file')
 
725
        unlink('file')
 
726
        self.build_tree(['file/'])
 
727
        self.assertStatusContains('K  file => file/',
 
728
                                  short=True)
 
729
        tree.rename_one('file', 'directory')
 
730
        self.assertStatusContains('RK  file => directory/',
 
731
                                  short=True)
 
732
        rmdir('directory')
 
733
        self.assertStatusContains('RD  file => directory',
 
734
                                  short=True)
 
735
 
 
736
    def test_status_illegal_revision_specifiers(self):
 
737
        out, err = self.run_bzr('status -r 1..23..123', retcode=3)
 
738
        self.assertContainsRe(err, 'one or two revision specifiers')
 
739
 
 
740
    def test_status_no_pending(self):
 
741
        a_tree = self.make_branch_and_tree('a')
 
742
        self.build_tree(['a/a'])
 
743
        a_tree.add('a')
 
744
        a_tree.commit('a')
 
745
        b_tree = a_tree.controldir.sprout('b').open_workingtree()
 
746
        self.build_tree(['b/b'])
 
747
        b_tree.add('b')
 
748
        b_tree.commit('b')
 
749
 
 
750
        self.run_bzr('merge ../b', working_dir='a')
 
751
        out, err = self.run_bzr('status --no-pending', working_dir='a')
 
752
        self.assertEqual(out, "added:\n  b\n")
 
753
 
 
754
    def test_pending_specific_files(self):
 
755
        """With a specific file list, pending merges are not shown."""
 
756
        tree = self.make_branch_and_tree('tree')
 
757
        self.build_tree_contents([('tree/a', b'content of a\n')])
 
758
        tree.add('a')
 
759
        r1_id = tree.commit('one')
 
760
        alt = tree.controldir.sprout('alt').open_workingtree()
 
761
        self.build_tree_contents([('alt/a', b'content of a\nfrom alt\n')])
 
762
        alt_id = alt.commit('alt')
 
763
        tree.merge_from_branch(alt.branch)
 
764
        output = self.make_utf8_encoded_stringio()
 
765
        show_tree_status(tree, to_file=output)
 
766
        self.assertContainsRe(output.getvalue(), b'pending merge')
 
767
        out, err = self.run_bzr('status tree/a')
 
768
        self.assertNotContainsRe(out, 'pending merge')
 
769
 
 
770
 
 
771
class TestStatusEncodings(TestCaseWithTransport):
 
772
 
 
773
    def make_uncommitted_tree(self):
 
774
        """Build a branch with uncommitted unicode named changes in the cwd."""
 
775
        working_tree = self.make_branch_and_tree(u'.')
 
776
        filename = u'hell\u00d8'
 
777
        try:
 
778
            self.build_tree_contents([(filename, b'contents of hello')])
 
779
        except UnicodeEncodeError:
 
780
            raise TestSkipped("can't build unicode working tree in "
 
781
                              "filesystem encoding %s" % sys.getfilesystemencoding())
 
782
        working_tree.add(filename)
 
783
        return working_tree
 
784
 
 
785
    def test_stdout_ascii(self):
 
786
        self.overrideAttr(osutils, '_cached_user_encoding', 'ascii')
 
787
        working_tree = self.make_uncommitted_tree()
 
788
        stdout, stderr = self.run_bzr("status")
 
789
 
 
790
        self.assertEqual(stdout, """\
 
791
added:
 
792
  hell?
 
793
""")
 
794
 
 
795
    def test_stdout_latin1(self):
 
796
        self.overrideAttr(osutils, '_cached_user_encoding', 'latin-1')
 
797
        working_tree = self.make_uncommitted_tree()
 
798
        stdout, stderr = self.run_bzr('status')
 
799
 
 
800
        expected = u"""\
 
801
added:
 
802
  hell\u00d8
 
803
"""
 
804
        self.assertEqual(stdout, expected)