Merge lp:~richard-wilbur/bzr/branches-uncommitted into lp:bzr

Proposed by Richard Wilbur
Status: Work in progress
Proposed branch: lp:~richard-wilbur/bzr/branches-uncommitted
Merge into: lp:bzr
Diff against target: 272 lines (+81/-29)
7 files modified
bzrlib/branch.py (+13/-2)
bzrlib/builtins.py (+12/-11)
bzrlib/remote.py (+5/-1)
bzrlib/tests/blackbox/test_branch.py (+2/-2)
bzrlib/tests/blackbox/test_branches.py (+37/-10)
bzrlib/tests/blackbox/test_init.py (+2/-2)
bzrlib/tests/per_branch/test_branch.py (+10/-1)
To merge this branch: bzr merge lp:~richard-wilbur/bzr/branches-uncommitted
Reviewer Review Type Date Requested Status
Vincent Ladeuil Needs Fixing
Richard Wilbur concept already approved on another branch. Approve
Review via email: mp+259295@code.launchpad.net

Commit message

Fixed up Aaron Bentley's branches-uncommitted code (from 2 years ago) to merge into current trunk.

Description of the change

Updated Aaron Bentley's branches-uncommitted branch from 2013 to work with new trunk: 2 new tests on trunk failed because of change in 'branches' command output formatting and content. Fixed regression in test suite caused by unintentional change in behaviour of 'branches' command (original behaviour restored). Added documentation for status flags in output.

Implemented John Arbash-Meinel's recommendation for code style uniformity.

To post a comment you must log in.
6608. By Richard Wilbur

Provide a little more explanation in documentation.

6609. By Richard Wilbur

Update copyright dates.

Revision history for this message
Richard Wilbur (richard-wilbur) wrote :

John, you and I had already approved of Aaron Bentley's changes that this branch is based on--with the suggestion of reformatting part of it to make the code style more consistent.

I fixed an unnoticed regression in that code, the attendant bit rot of two years, and added a little polish to the documentation.

Revision history for this message
Richard Wilbur (richard-wilbur) wrote :

I guess John is pretty busy. On the authority that the concept was already approved and these are relatively trivial changes, I'll approve this and go ahead an merge it.

review: Approve (concept already approved on another branch.)
Revision history for this message
Richard Wilbur (richard-wilbur) wrote :

sent to pqm by email

Revision history for this message
Vincent Ladeuil (vila) wrote :

I can't help but think that 'uncommitted' in not part of the branch domain.

I can see dragons around shelves rotting in side a branch.

shelves are working tree related, it's expected that they rot there and the tools to deal with that are related to working trees.

If one want to keep some unfinished work, I can't see the cons about committing it.

As a bzr user I know how to resume work from this revision as well as stepping back from it to continue work without that revision.

review: Needs Fixing

Unmerged revisions

6609. By Richard Wilbur

Update copyright dates.

6608. By Richard Wilbur

Provide a little more explanation in documentation.

6607. By Richard Wilbur

Make boolean->visual flag conversion with consistent syntax. Document flags.

6606. By Richard Wilbur

Fix branches command handling of active flags.

6605. By Richard Wilbur

Fix 2 trivial test failures simply due to change in branches output format.

6604. By Richard Wilbur

Show uncommitted changes in branches.(Aaron Bentley) Suffers from some test breakage(3).

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'bzrlib/branch.py'
--- bzrlib/branch.py 2013-05-23 10:04:17 +0000
+++ bzrlib/branch.py 2015-05-20 19:29:33 +0000
@@ -1,4 +1,4 @@
1# Copyright (C) 2005-2012 Canonical Ltd1# Copyright (C) 2005-2013, 2015 Canonical Ltd
2#2#
3# This program is free software; you can redistribute it and/or modify3# 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 by4# it under the terms of the GNU General Public License as published by
@@ -261,6 +261,9 @@
261 """261 """
262 raise NotImplementedError(self.store_uncommitted)262 raise NotImplementedError(self.store_uncommitted)
263263
264 def has_uncommitted(self):
265 return False
266
264 def get_unshelver(self, tree):267 def get_unshelver(self, tree):
265 """Return a shelf.Unshelver for this branch and tree.268 """Return a shelf.Unshelver for this branch and tree.
266269
@@ -2412,6 +2415,10 @@
2412 else:2415 else:
2413 return self2416 return self
24142417
2418 @staticmethod
2419 def _has_uncommitted(branch):
2420 return branch._transport.has('stored-transform')
2421
2415 def store_uncommitted(self, creator):2422 def store_uncommitted(self, creator):
2416 """Store uncommitted changes from a ShelfCreator.2423 """Store uncommitted changes from a ShelfCreator.
24172424
@@ -2423,13 +2430,17 @@
2423 if creator is None:2430 if creator is None:
2424 branch._transport.delete('stored-transform')2431 branch._transport.delete('stored-transform')
2425 return2432 return
2426 if branch._transport.has('stored-transform'):2433 if self._has_uncommitted(branch):
2427 raise errors.ChangesAlreadyStored2434 raise errors.ChangesAlreadyStored
2428 transform = StringIO()2435 transform = StringIO()
2429 creator.write_shelf(transform)2436 creator.write_shelf(transform)
2430 transform.seek(0)2437 transform.seek(0)
2431 branch._transport.put_file('stored-transform', transform)2438 branch._transport.put_file('stored-transform', transform)
24322439
2440 def has_uncommitted(self):
2441 branch = self._uncommitted_branch()
2442 return self._has_uncommitted(branch)
2443
2433 def get_unshelver(self, tree):2444 def get_unshelver(self, tree):
2434 """Return a shelf.Unshelver for this branch and tree.2445 """Return a shelf.Unshelver for this branch and tree.
24352446
24362447
=== modified file 'bzrlib/builtins.py'
--- bzrlib/builtins.py 2013-05-23 10:04:17 +0000
+++ bzrlib/builtins.py 2015-05-20 19:29:33 +0000
@@ -1,4 +1,4 @@
1# Copyright (C) 2005-2012 Canonical Ltd1# Copyright (C) 2005-2013, 2015 Canonical Ltd
2#2#
3# This program is free software; you can redistribute it and/or modify3# 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 by4# it under the terms of the GNU General Public License as published by
@@ -1547,7 +1547,8 @@
1547 __doc__ = """List the branches available at the current location.1547 __doc__ = """List the branches available at the current location.
15481548
1549 This command will print the names of all the branches at the current1549 This command will print the names of all the branches at the current
1550 location.1550 location. Flags colocated branches: '*' for active (current working
1551 tree) and 'U' for uncommitted changes.
1551 """1552 """
15521553
1553 takes_args = ['location?']1554 takes_args = ['location?']
@@ -1578,17 +1579,17 @@
1578 continue1579 continue
1579 active = (active_branch is not None and1580 active = (active_branch is not None and
1580 active_branch.base == branch.base)1581 active_branch.base == branch.base)
1581 names[name] = active1582 names[name] = active, branch.has_uncommitted()
1583 branch_list = sorted(names.items())
1582 # Only mention the current branch explicitly if it's not1584 # Only mention the current branch explicitly if it's not
1583 # one of the colocated branches1585 # one of the colocated branches
1584 if not any(names.values()) and active_branch is not None:1586 if not any([active for (active, u) in names.values()]) and active_branch is not None:
1585 self.outf.write("* %s\n" % gettext("(default)"))1587 branch_list.insert(0,
1586 for name in sorted(names.keys()):1588 (gettext("(default)"),
1587 active = names[name]1589 (True, active_branch.has_uncommitted())))
1588 if active:1590 for name, (active, uncommitted) in branch_list:
1589 prefix = "*"1591 prefix = "*" if active else " "
1590 else:1592 prefix += 'U' if uncommitted else ' '
1591 prefix = " "
1592 self.outf.write("%s %s\n" % (1593 self.outf.write("%s %s\n" % (
1593 prefix, name.encode(self.outf.encoding)))1594 prefix, name.encode(self.outf.encoding)))
15941595
15951596
=== modified file 'bzrlib/remote.py'
--- bzrlib/remote.py 2012-09-19 07:58:27 +0000
+++ bzrlib/remote.py 2015-05-20 19:29:33 +0000
@@ -1,4 +1,4 @@
1# Copyright (C) 2006-2012 Canonical Ltd1# Copyright (C) 2006-2013, 2015 Canonical Ltd
2#2#
3# This program is free software; you can redistribute it and/or modify3# 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 by4# it under the terms of the GNU General Public License as published by
@@ -3403,6 +3403,10 @@
3403 self._ensure_real()3403 self._ensure_real()
3404 return self._real_branch.store_uncommitted(creator)3404 return self._real_branch.store_uncommitted(creator)
34053405
3406 def has_uncommitted(self):
3407 self._ensure_real()
3408 return self._real_branch.has_uncommitted()
3409
3406 def get_unshelver(self, tree):3410 def get_unshelver(self, tree):
3407 self._ensure_real()3411 self._ensure_real()
3408 return self._real_branch.get_unshelver(tree)3412 return self._real_branch.get_unshelver(tree)
34093413
=== modified file 'bzrlib/tests/blackbox/test_branch.py'
--- bzrlib/tests/blackbox/test_branch.py 2012-02-23 23:26:35 +0000
+++ bzrlib/tests/blackbox/test_branch.py 2015-05-20 19:29:33 +0000
@@ -1,4 +1,4 @@
1# Copyright (C) 2006-2012 Canonical Ltd1# Copyright (C) 2006-2012, 2015 Canonical Ltd
2#2#
3# This program is free software; you can redistribute it and/or modify3# 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 by4# it under the terms of the GNU General Public License as published by
@@ -87,7 +87,7 @@
87 self.assertEqual('', out)87 self.assertEqual('', out)
88 self.assertEqual('Branched 2 revisions.\n', err)88 self.assertEqual('Branched 2 revisions.\n', err)
89 out, err = self.run_bzr('branches b')89 out, err = self.run_bzr('branches b')
90 self.assertEqual(" orig\n thiswasa\n", out)90 self.assertEqual(" orig\n thiswasa\n", out)
91 self.assertEqual('', err)91 self.assertEqual('', err)
92 out,err = self.run_bzr('branch a file:b,branch=orig', retcode=3)92 out,err = self.run_bzr('branch a file:b,branch=orig', retcode=3)
93 self.assertEqual('', out)93 self.assertEqual('', out)
9494
=== modified file 'bzrlib/tests/blackbox/test_branches.py'
--- bzrlib/tests/blackbox/test_branches.py 2012-02-13 17:34:46 +0000
+++ bzrlib/tests/blackbox/test_branches.py 2015-05-20 19:29:33 +0000
@@ -1,4 +1,4 @@
1# Copyright (C) 2011 Canonical Ltd1# Copyright (C) 2011-2013, 2015 Canonical Ltd
2#2#
3# This program is free software; you can redistribute it and/or modify3# 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 by4# it under the terms of the GNU General Public License as published by
@@ -19,6 +19,7 @@
1919
20from bzrlib.bzrdir import BzrDir20from bzrlib.bzrdir import BzrDir
21from bzrlib.tests import TestCaseWithTransport21from bzrlib.tests import TestCaseWithTransport
22from bzrlib.tests.per_branch.test_branch import FakeShelfCreator
2223
2324
24class TestBranches(TestCaseWithTransport):25class TestBranches(TestCaseWithTransport):
@@ -28,7 +29,7 @@
28 # support.29 # support.
29 self.run_bzr('init a')30 self.run_bzr('init a')
30 out, err = self.run_bzr('branches a')31 out, err = self.run_bzr('branches a')
31 self.assertEquals(out, "* (default)\n")32 self.assertEquals(out, "* (default)\n")
3233
33 def test_no_branch(self):34 def test_no_branch(self):
34 # Listing the branches in a control directory without branches.35 # Listing the branches in a control directory without branches.
@@ -65,9 +66,9 @@
65 t.bzrdir.create_branch(name='another')66 t.bzrdir.create_branch(name='another')
66 t.bzrdir.create_branch(name='colocated')67 t.bzrdir.create_branch(name='colocated')
67 out, err = self.run_bzr('branches a')68 out, err = self.run_bzr('branches a')
68 self.assertEquals(out, "* (default)\n"69 self.assertEquals(out, "* (default)\n"
69 " another\n"70 " another\n"
70 " colocated\n")71 " colocated\n")
7172
72 def test_indicates_branch(self):73 def test_indicates_branch(self):
73 t = self.make_repository('a', format='development-colo')74 t = self.make_repository('a', format='development-colo')
@@ -75,8 +76,18 @@
75 branch = t.bzrdir.create_branch(name='colocated')76 branch = t.bzrdir.create_branch(name='colocated')
76 t.bzrdir.set_branch_reference(target_branch=branch)77 t.bzrdir.set_branch_reference(target_branch=branch)
77 out, err = self.run_bzr('branches a')78 out, err = self.run_bzr('branches a')
78 self.assertEquals(out, " another\n"79 self.assertEquals(out, " another\n"
79 "* colocated\n")80 "* colocated\n")
81
82 def test_indicates_uncommitted(self):
83 t = self.make_repository('a', format='development-colo')
84 t.bzrdir.create_branch(name='another')
85 branch = t.bzrdir.create_branch(name='colocated')
86 branch.store_uncommitted(FakeShelfCreator(branch))
87 t.bzrdir.set_branch_reference(target_branch=branch)
88 out, err = self.run_bzr('branches a')
89 self.assertEquals(out, " another\n"
90 "*U colocated\n")
8091
81 def test_shared_repos(self):92 def test_shared_repos(self):
82 self.make_repository('a', shared=True)93 self.make_repository('a', shared=True)
@@ -84,10 +95,26 @@
84 b = BzrDir.create_branch_convenience('a/branch2')95 b = BzrDir.create_branch_convenience('a/branch2')
85 b.create_checkout(lightweight=True, to_location='b')96 b.create_checkout(lightweight=True, to_location='b')
86 out, err = self.run_bzr('branches b')97 out, err = self.run_bzr('branches b')
87 self.assertEquals(out, " branch1\n"98 self.assertEquals(out, " branch1\n"
88 "* branch2\n")99 "* branch2\n")
100
101 def test_shared_repos_uncommitted(self):
102 self.make_repository('a', shared=True)
103 BzrDir.create_branch_convenience('a/branch1')
104 b = BzrDir.create_branch_convenience('a/branch2')
105 b.create_checkout(lightweight=True, to_location='b')
106 b.store_uncommitted(FakeShelfCreator(b))
107 out, err = self.run_bzr('branches b')
108 self.assertEquals(out, " branch1\n"
109 "*U branch2\n")
89110
90 def test_standalone_branch(self):111 def test_standalone_branch(self):
91 self.make_branch('a')112 self.make_branch('a')
92 out, err = self.run_bzr('branches a')113 out, err = self.run_bzr('branches a')
93 self.assertEquals(out, "* (default)\n")114 self.assertEquals(out, "* (default)\n")
115
116 def test_standalone_branch_uncommitted(self):
117 b = self.make_branch('a')
118 b.store_uncommitted(FakeShelfCreator(b))
119 out, err = self.run_bzr('branches a')
120 self.assertEquals(out, "*U (default)\n")
94121
=== modified file 'bzrlib/tests/blackbox/test_init.py'
--- bzrlib/tests/blackbox/test_init.py 2012-08-23 14:24:38 +0000
+++ bzrlib/tests/blackbox/test_init.py 2015-05-20 19:29:33 +0000
@@ -1,4 +1,4 @@
1# Copyright (C) 2006-2011 Canonical Ltd1# Copyright (C) 2006-2012, 2015 Canonical Ltd
2#2#
3# This program is free software; you can redistribute it and/or modify3# 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 by4# it under the terms of the GNU General Public License as published by
@@ -61,7 +61,7 @@
61 out)61 out)
62 self.assertEqual('', err)62 self.assertEqual('', err)
63 out, err = self.run_bzr('branches')63 out, err = self.run_bzr('branches')
64 self.assertEqual(" abranch\n", out)64 self.assertEqual(" abranch\n", out)
65 self.assertEqual('', err)65 self.assertEqual('', err)
6666
67 def test_init_at_repository_root(self):67 def test_init_at_repository_root(self):
6868
=== modified file 'bzrlib/tests/per_branch/test_branch.py'
--- bzrlib/tests/per_branch/test_branch.py 2012-07-19 19:27:22 +0000
+++ bzrlib/tests/per_branch/test_branch.py 2015-05-20 19:29:33 +0000
@@ -1,4 +1,4 @@
1# Copyright (C) 2005-2012 Canonical Ltd1# Copyright (C) 2005-2013, 2015 Canonical Ltd
2#2#
3# This program is free software; you can redistribute it and/or modify3# 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 by4# it under the terms of the GNU General Public License as published by
@@ -1125,6 +1125,15 @@
1125 branch.store_uncommitted(None)1125 branch.store_uncommitted(None)
1126 self.assertIs(None, branch.get_unshelver(None))1126 self.assertIs(None, branch.get_unshelver(None))
11271127
1128 def test_has_uncommitted(self):
1129 branch = self.make_branch('b')
1130 self.assertFalse(branch.has_uncommitted())
1131 with skip_if_storing_uncommitted_unsupported():
1132 branch.store_uncommitted(FakeShelfCreator(branch))
1133 self.assertTrue(branch.has_uncommitted())
1134 branch.store_uncommitted(None)
1135 self.assertFalse(branch.has_uncommitted())
1136
1128 def test_get_unshelver(self):1137 def test_get_unshelver(self):
1129 tree = self.make_branch_and_tree('tree')1138 tree = self.make_branch_and_tree('tree')
1130 tree.commit('')1139 tree.commit('')