13
13
# You should have received a copy of the GNU General Public License
14
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
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17
17
"""Test the uncommit command."""
104
103
uncommit.uncommit(b)
105
104
self.assertEqual(len(b.revision_history()), 2)
106
105
self.assertEqual(len(t_a.branch.revision_history()), 2)
107
# update A's tree to not have the uncommitted revision referenced.
106
# update A's tree to not have the uncomitted revision referenced.
109
108
t_a.commit('commit 3b')
110
109
self.assertRaises(BoundBranchOutOfDate, uncommit.uncommit, b)
111
110
b.pull(t_a.branch)
112
111
uncommit.uncommit(b)
114
def test_uncommit_bound_local(self):
115
t_a = self.make_branch_and_tree('a')
116
rev_id1 = t_a.commit('commit 1')
117
rev_id2 = t_a.commit('commit 2')
118
rev_id3 = t_a.commit('commit 3')
119
b = t_a.branch.create_checkout('b').branch
121
out, err = self.run_bzr(['uncommit', '--local', 'b', '--force'])
122
self.assertEqual(rev_id3, t_a.last_revision())
123
self.assertEqual((3, rev_id3), t_a.branch.last_revision_info())
124
self.assertEqual((2, rev_id2), b.last_revision_info())
126
113
def test_uncommit_revision(self):
127
114
wt = self.create_simple_tree()
174
161
wt = self.create_simple_tree()
176
163
tree2 = wt.bzrdir.sprout('tree2').open_workingtree()
177
165
tree2.commit('unchanged', rev_id='b3')
179
tree3 = wt.bzrdir.sprout('tree3').open_workingtree()
180
tree3.commit('unchanged', rev_id='c3')
182
167
wt.merge_from_branch(tree2.branch)
183
168
wt.commit('merge b3', rev_id='a3')
185
wt.merge_from_branch(tree3.branch)
186
wt.commit('merge c3', rev_id='a4')
170
tree2.commit('unchanged', rev_id='b4')
172
wt.merge_from_branch(tree2.branch)
173
wt.commit('merge b4', rev_id='a4')
188
175
self.assertEqual(['a4'], wt.get_parent_ids())
191
178
out, err = self.run_bzr('uncommit --force -r 2')
193
self.assertEqual(['a2', 'b3', 'c3'], wt.get_parent_ids())
180
self.assertEqual(['a2', 'b3', 'b4'], wt.get_parent_ids())
195
182
def test_uncommit_merge_plus_pending(self):
196
183
wt = self.create_simple_tree()
198
185
tree2 = wt.bzrdir.sprout('tree2').open_workingtree()
199
187
tree2.commit('unchanged', rev_id='b3')
200
tree3 = wt.bzrdir.sprout('tree3').open_workingtree()
201
tree3.commit('unchanged', rev_id='c3')
203
188
wt.branch.fetch(tree2.branch)
204
189
wt.set_pending_merges(['b3'])
205
190
wt.commit('merge b3', rev_id='a3')
208
wt.merge_from_branch(tree3.branch)
210
self.assertEqual(['a3', 'c3'], wt.get_parent_ids())
192
tree2.commit('unchanged', rev_id='b4')
193
wt.branch.fetch(tree2.branch)
194
wt.set_pending_merges(['b4'])
196
self.assertEqual(['a3', 'b4'], wt.get_parent_ids())
213
199
out, err = self.run_bzr('uncommit --force -r 2')
215
self.assertEqual(['a2', 'b3', 'c3'], wt.get_parent_ids())
217
def test_uncommit_shows_log_with_revision_id(self):
218
wt = self.create_simple_tree()
220
script = ScriptRunner()
221
script.run_script(self, """
223
$ bzr uncommit --force
227
The above revision(s) will be removed.
228
You can restore the old tip by running:
229
bzr pull . -r revid:a2
201
self.assertEqual(['a2', 'b3', 'b4'], wt.get_parent_ids())
232
203
def test_uncommit_octopus_merge(self):
233
204
# Check that uncommit keeps the pending merges in the same order
234
# though it will also filter out ones in the ancestry
235
205
wt = self.create_simple_tree()
237
207
tree2 = wt.bzrdir.sprout('tree2').open_workingtree()
240
210
tree2.commit('unchanged', rev_id='b3')
241
211
tree3.commit('unchanged', rev_id='c3')
243
213
wt.merge_from_branch(tree2.branch)
244
wt.merge_from_branch(tree3.branch, force=True)
214
wt.merge_from_branch(tree3.branch)
245
215
wt.commit('merge b3, c3', rev_id='a3')
247
217
tree2.commit('unchanged', rev_id='b4')
248
218
tree3.commit('unchanged', rev_id='c4')
250
220
wt.merge_from_branch(tree3.branch)
251
wt.merge_from_branch(tree2.branch, force=True)
221
wt.merge_from_branch(tree2.branch)
252
222
wt.commit('merge b4, c4', rev_id='a4')
254
224
self.assertEqual(['a4'], wt.get_parent_ids())
257
227
out, err = self.run_bzr('uncommit --force -r 2')
259
self.assertEqual(['a2', 'c4', 'b4'], wt.get_parent_ids())
261
def test_uncommit_nonascii(self):
262
tree = self.make_branch_and_tree('tree')
263
tree.commit(u'\u1234 message')
264
out, err = self.run_bzr('uncommit --force tree', encoding='ascii')
265
self.assertContainsRe(out, r'\? message')
229
self.assertEqual(['a2', 'b3', 'c3', 'c4', 'b4'], wt.get_parent_ids())