~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Alexander Belchenko
  • Date: 2006-07-30 16:43:12 UTC
  • mto: (1711.2.111 jam-integration)
  • mto: This revision was merged to the branch mainline in revision 1906.
  • Revision ID: bialix@ukr.net-20060730164312-b025fd3ff0cee59e
rename  gpl.txt => COPYING.txt

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005, 2006 Canonical Ltd
 
1
# Copyright (C) 2005 by Canonical Ltd
 
2
# -*- coding: utf-8 -*-
2
3
#
3
4
# This program is free software; you can redistribute it and/or modify
4
5
# it under the terms of the GNU General Public License as published by
23
24
from bzrlib.branch import Branch
24
25
from bzrlib.tests.blackbox import ExternalBase
25
26
from bzrlib.uncommit import uncommit
26
 
from bzrlib import urlutils
27
27
 
28
28
 
29
29
class TestPull(ExternalBase):
30
30
 
31
31
    def example_branch(test):
32
 
        test.run_bzr('init')
 
32
        test.runbzr('init')
33
33
        file('hello', 'wt').write('foo')
34
 
        test.run_bzr('add hello')
35
 
        test.run_bzr('commit -m setup hello')
 
34
        test.runbzr('add hello')
 
35
        test.runbzr('commit -m setup hello')
36
36
        file('goodbye', 'wt').write('baz')
37
 
        test.run_bzr('add goodbye')
38
 
        test.run_bzr('commit -m setup goodbye')
 
37
        test.runbzr('add goodbye')
 
38
        test.runbzr('commit -m setup goodbye')
39
39
 
40
40
    def test_pull(self):
41
41
        """Pull changes from one branch to another."""
43
43
        os.chdir('a')
44
44
 
45
45
        self.example_branch()
46
 
        self.run_bzr('pull', retcode=3)
47
 
        self.run_bzr('missing', retcode=3)
48
 
        self.run_bzr('missing .')
49
 
        self.run_bzr('missing')
 
46
        self.runbzr('pull', retcode=3)
 
47
        self.runbzr('missing', retcode=3)
 
48
        self.runbzr('missing .')
 
49
        self.runbzr('missing')
50
50
        # this will work on windows because we check for the same branch
51
51
        # in pull - if it fails, it is a regression
52
 
        self.run_bzr('pull')
53
 
        self.run_bzr('pull /', retcode=3)
 
52
        self.runbzr('pull')
 
53
        self.runbzr('pull /', retcode=3)
54
54
        if sys.platform not in ('win32', 'cygwin'):
55
 
            self.run_bzr('pull')
 
55
            self.runbzr('pull')
56
56
 
57
57
        os.chdir('..')
58
 
        self.run_bzr('branch a b')
 
58
        self.runbzr('branch a b')
59
59
        os.chdir('b')
60
 
        self.run_bzr('pull')
 
60
        self.runbzr('pull')
61
61
        os.mkdir('subdir')
62
 
        self.run_bzr('add subdir')
63
 
        self.run_bzr('commit -m blah --unchanged')
 
62
        self.runbzr('add subdir')
 
63
        self.runbzr('commit -m blah --unchanged')
64
64
        os.chdir('../a')
65
65
        a = Branch.open('.')
66
66
        b = Branch.open('../b')
67
67
        self.assertEquals(a.revision_history(), b.revision_history()[:-1])
68
 
        self.run_bzr('pull ../b')
 
68
        self.runbzr('pull ../b')
69
69
        self.assertEquals(a.revision_history(), b.revision_history())
70
 
        self.run_bzr('commit -m blah2 --unchanged')
 
70
        self.runbzr('commit -m blah2 --unchanged')
71
71
        os.chdir('../b')
72
 
        self.run_bzr('commit -m blah3 --unchanged')
 
72
        self.runbzr('commit -m blah3 --unchanged')
73
73
        # no overwrite
74
 
        self.run_bzr('pull ../a', retcode=3)
 
74
        self.runbzr('pull ../a', retcode=3)
75
75
        os.chdir('..')
76
 
        self.run_bzr('branch b overwriteme')
 
76
        self.runbzr('branch b overwriteme')
77
77
        os.chdir('overwriteme')
78
 
        self.run_bzr('pull --overwrite ../a')
 
78
        self.runbzr('pull --overwrite ../a')
79
79
        overwritten = Branch.open('.')
80
80
        self.assertEqual(overwritten.revision_history(),
81
81
                         a.revision_history())
82
82
        os.chdir('../a')
83
 
        self.run_bzr('merge ../b')
84
 
        self.run_bzr('commit -m blah4 --unchanged')
 
83
        self.runbzr('merge ../b')
 
84
        self.runbzr('commit -m blah4 --unchanged')
85
85
        os.chdir('../b/subdir')
86
 
        self.run_bzr('pull ../../a')
 
86
        self.runbzr('pull ../../a')
87
87
        self.assertEquals(a.revision_history()[-1], b.revision_history()[-1])
88
 
        self.run_bzr('commit -m blah5 --unchanged')
89
 
        self.run_bzr('commit -m blah6 --unchanged')
 
88
        self.runbzr('commit -m blah5 --unchanged')
 
89
        self.runbzr('commit -m blah6 --unchanged')
90
90
        os.chdir('..')
91
 
        self.run_bzr('pull ../a')
 
91
        self.runbzr('pull ../a')
92
92
        os.chdir('../a')
93
 
        self.run_bzr('commit -m blah7 --unchanged')
94
 
        self.run_bzr('merge ../b')
95
 
        self.run_bzr('commit -m blah8 --unchanged')
96
 
        self.run_bzr('pull ../b')
97
 
        self.run_bzr('pull ../b')
98
 
 
99
 
    def test_pull_dash_d(self):
100
 
        os.mkdir('a')
101
 
        os.chdir('a')
102
 
        self.example_branch()
103
 
        self.run_bzr('init ../b')
104
 
        self.run_bzr('init ../c')
105
 
        # pull into that branch
106
 
        self.run_bzr('pull -d ../b .')
107
 
        # pull into a branch specified by a url
108
 
        c_url = urlutils.local_path_to_url('../c')
109
 
        self.assertStartsWith(c_url, 'file://')
110
 
        self.run_bzr('pull -d %s .' % c_url)
 
93
        self.runbzr('commit -m blah7 --unchanged')
 
94
        self.runbzr('merge ../b')
 
95
        self.runbzr('commit -m blah8 --unchanged')
 
96
        self.runbzr('pull ../b')
 
97
        self.runbzr('pull ../b')
111
98
 
112
99
    def test_pull_revision(self):
113
100
        """Pull some changes from one branch to another."""
116
103
 
117
104
        self.example_branch()
118
105
        file('hello2', 'wt').write('foo')
119
 
        self.run_bzr('add hello2')
120
 
        self.run_bzr('commit -m setup hello2')
 
106
        self.runbzr('add hello2')
 
107
        self.runbzr('commit -m setup hello2')
121
108
        file('goodbye2', 'wt').write('baz')
122
 
        self.run_bzr('add goodbye2')
123
 
        self.run_bzr('commit -m setup goodbye2')
 
109
        self.runbzr('add goodbye2')
 
110
        self.runbzr('commit -m setup goodbye2')
124
111
 
125
112
        os.chdir('..')
126
 
        self.run_bzr('branch -r 1 a b')
 
113
        self.runbzr('branch -r 1 a b')
127
114
        os.chdir('b')
128
 
        self.run_bzr('pull -r 2')
 
115
        self.runbzr('pull -r 2')
129
116
        a = Branch.open('../a')
130
117
        b = Branch.open('.')
131
118
        self.assertEquals(a.revno(),4)
132
119
        self.assertEquals(b.revno(),2)
133
 
        self.run_bzr('pull -r 3')
 
120
        self.runbzr('pull -r 3')
134
121
        self.assertEquals(b.revno(),3)
135
 
        self.run_bzr('pull -r 4')
 
122
        self.runbzr('pull -r 4')
136
123
        self.assertEquals(a.revision_history(), b.revision_history())
137
124
 
138
125
 
143
130
        bzr = self.run_bzr
144
131
 
145
132
        def get_rh(expected_len):
146
 
            rh = self.run_bzr('revision-history')[0]
 
133
            rh = self.capture('revision-history')
147
134
            # Make sure we don't have trailing empty revisions
148
135
            rh = rh.strip().split('\n')
149
136
            self.assertEqual(len(rh), expected_len)
153
140
        os.chdir('a')
154
141
        bzr('init')
155
142
        open('foo', 'wb').write('original\n')
156
 
        bzr('add foo')
157
 
        bzr(['commit', '-m', 'initial commit'])
 
143
        bzr('add', 'foo')
 
144
        bzr('commit', '-m', 'initial commit')
158
145
 
159
146
        os.chdir('..')
160
 
        bzr('branch a b')
 
147
        bzr('branch', 'a', 'b')
161
148
 
162
149
        os.chdir('a')
163
150
        open('foo', 'wb').write('changed\n')
164
 
        bzr(['commit', '-m', 'later change'])
 
151
        bzr('commit', '-m', 'later change')
165
152
 
166
153
        open('foo', 'wb').write('another\n')
167
 
        bzr(['commit', '-m', 'a third change'])
 
154
        bzr('commit', '-m', 'a third change')
168
155
 
169
156
        rev_history_a = get_rh(3)
170
157
 
171
158
        os.chdir('../b')
172
 
        bzr('merge ../a')
173
 
        bzr('commit -m merge')
 
159
        bzr('merge', '../a')
 
160
        bzr('commit', '-m', 'merge')
174
161
 
175
162
        rev_history_b = get_rh(2)
176
163
 
177
 
        bzr('pull --overwrite ../a')
 
164
        bzr('pull', '--overwrite', '../a')
178
165
        rev_history_b = get_rh(3)
179
166
 
180
167
        self.assertEqual(rev_history_b, rev_history_a)
185
172
        bzr = self.run_bzr
186
173
 
187
174
        def get_rh(expected_len):
188
 
            rh = self.run_bzr('revision-history')[0]
 
175
            rh = self.capture('revision-history')
189
176
            # Make sure we don't have trailing empty revisions
190
177
            rh = rh.strip().split('\n')
191
178
            self.assertEqual(len(rh), expected_len)
195
182
        os.chdir('a')
196
183
        bzr('init')
197
184
        open('foo', 'wb').write('original\n')
198
 
        bzr('add foo')
199
 
        bzr(['commit', '-m', 'initial commit'])
 
185
        bzr('add', 'foo')
 
186
        bzr('commit', '-m', 'initial commit')
200
187
 
201
188
        os.chdir('..')
202
 
        bzr('branch a b')
 
189
        bzr('branch', 'a', 'b')
203
190
 
204
191
        os.chdir('a')
205
192
        open('foo', 'wb').write('changed\n')
206
 
        bzr(['commit', '-m', 'later change'])
 
193
        bzr('commit', '-m', 'later change')
207
194
 
208
195
        open('foo', 'wb').write('another\n')
209
 
        bzr(['commit', '-m', 'a third change'])
 
196
        bzr('commit', '-m', 'a third change')
210
197
 
211
198
        rev_history_a = get_rh(3)
212
199
 
213
200
        os.chdir('../b')
214
 
        bzr('merge ../a')
215
 
        bzr('commit -m merge')
 
201
        bzr('merge', '../a')
 
202
        bzr('commit', '-m', 'merge')
216
203
 
217
204
        rev_history_b = get_rh(2)
218
205
 
219
206
        os.chdir('../a')
220
207
        open('foo', 'wb').write('a fourth change\n')
221
 
        bzr(['commit', '-m', 'a fourth change'])
 
208
        bzr('commit', '-m', 'a fourth change')
222
209
 
223
210
        rev_history_a = get_rh(4)
224
211
 
225
212
        # With convergence, we could just pull over the
226
213
        # new change, but with --overwrite, we want to switch our history
227
214
        os.chdir('../b')
228
 
        bzr('pull --overwrite ../a')
 
215
        bzr('pull', '--overwrite', '../a')
229
216
        rev_history_b = get_rh(4)
230
217
 
231
218
        self.assertEqual(rev_history_b, rev_history_a)
251
238
        self.assertEqual(None, branch_b.get_parent())
252
239
        # test pull for failure without parent set
253
240
        os.chdir('branch_b')
254
 
        out = self.run_bzr('pull', retcode=3)
 
241
        out = self.runbzr('pull', retcode=3)
255
242
        self.assertEquals(out,
256
243
                ('','bzr: ERROR: No pull location known or specified.\n'))
257
244
        # test implicit --remember when no parent set, this pull conflicts
258
245
        self.build_tree(['d'])
259
246
        tree_b.add('d')
260
247
        tree_b.commit('commit d')
261
 
        out = self.run_bzr('pull ../branch_a', retcode=3)
 
248
        out = self.runbzr('pull ../branch_a', retcode=3)
262
249
        self.assertEquals(out,
263
 
                ('','bzr: ERROR: These branches have diverged.'
264
 
                    ' Use the merge command to reconcile them.\n'))
 
250
                ('','bzr: ERROR: These branches have diverged.  Use the merge command to reconcile them.\n'))
265
251
        self.assertEquals(branch_b.get_parent(), parent)
266
252
        # test implicit --remember after resolving previous failure
267
253
        uncommit(branch=branch_b, tree=tree_b)
268
254
        transport.delete('branch_b/d')
269
 
        self.run_bzr('pull')
 
255
        self.runbzr('pull')
270
256
        self.assertEquals(branch_b.get_parent(), parent)
271
257
        # test explicit --remember
272
 
        self.run_bzr('pull ../branch_c --remember')
 
258
        self.runbzr('pull ../branch_c --remember')
273
259
        self.assertEquals(branch_b.get_parent(),
274
260
                          branch_c.bzrdir.root_transport.base)
275
261
 
294
280
        # Create the bundle for 'b' to pull
295
281
        os.chdir('branch_a')
296
282
        bundle_file = open('../bundle', 'wb')
297
 
        bundle_file.write(self.run_bzr('bundle ../branch_b')[0])
 
283
        bundle_file.write(self.run_bzr('bundle', '../branch_b')[0])
298
284
        bundle_file.close()
299
285
 
300
286
        os.chdir('../branch_b')
301
 
        out, err = self.run_bzr('pull ../bundle')
302
 
        self.assertEqual(out,
303
 
                         'Now on revision 2.\n')
304
 
        self.assertEqual(err,
305
 
                ' M  a\nAll changes applied successfully.\n')
 
287
        output = self.run_bzr('pull', '../bundle')
 
288
        self.assertEqual('', output[0])
 
289
        self.assertEqual('All changes applied successfully.\n'
 
290
                         '1 revision(s) pulled.\n', output[1])
306
291
 
307
292
        self.assertEqualDiff(tree_a.branch.revision_history(),
308
293
                             tree_b.branch.revision_history())
309
294
 
310
 
        testament_a = Testament.from_revision(tree_a.branch.repository,
311
 
                                              tree_a.get_parent_ids()[0])
 
295
        testament_a = Testament.from_revision(tree_a.branch.repository, 
 
296
                                              tree_a.last_revision())
312
297
        testament_b = Testament.from_revision(tree_b.branch.repository,
313
 
                                              tree_b.get_parent_ids()[0])
 
298
                                              tree_b.last_revision())
314
299
        self.assertEqualDiff(testament_a.as_text(),
315
300
                             testament_b.as_text())
316
301
 
317
302
        # it is legal to attempt to pull an already-merged bundle
318
 
        out, err = self.run_bzr('pull ../bundle')
319
 
        self.assertEqual(err, '')
320
 
        self.assertEqual(out, 'No revisions to pull.\n')
 
303
        output = self.run_bzr('pull', '../bundle')
 
304
        self.assertEqual('', output[0])
 
305
        self.assertEqual('0 revision(s) pulled.\n', output[1])