56
57
['push', public_url],
57
58
working_dir='source')
60
def test_push_suggests_parent_alias(self):
61
"""Push suggests using :parent if there is a known parent branch."""
62
tree_a = self.make_branch_and_tree('a')
63
tree_a.commit('this is a commit')
64
tree_b = self.make_branch_and_tree('b')
66
# If there is no parent location set, :parent isn't mentioned.
67
out = self.run_bzr('push', working_dir='a', retcode=3)
69
('','bzr: ERROR: No push location known or specified.\n'))
71
# If there is a parent location set, the error suggests :parent.
72
tree_a.branch.set_parent(tree_b.branch.base)
73
out = self.run_bzr('push', working_dir='a', retcode=3)
75
('','bzr: ERROR: No push location known or specified. '
76
'To push to the parent branch '
77
'(at %s), use \'bzr push :parent\'.\n' %
78
urlutils.unescape_for_display(tree_b.branch.base, 'utf-8')))
59
80
def test_push_remember(self):
60
81
"""Push changes from one branch to another and test push location."""
61
82
transport = self.get_transport()
80
101
# test push for failure without push location set
81
102
out = self.run_bzr('push', working_dir='branch_a', retcode=3)
82
self.assertEquals(out,
103
self.assertEqual(out,
83
104
('','bzr: ERROR: No push location known or specified.\n'))
85
106
# test not remembered if cannot actually push
86
107
self.run_bzr('push path/which/doesnt/exist',
87
108
working_dir='branch_a', retcode=3)
88
109
out = self.run_bzr('push', working_dir='branch_a', retcode=3)
90
111
('', 'bzr: ERROR: No push location known or specified.\n'),
93
114
# test implicit --remember when no push location set, push fails
94
115
out = self.run_bzr('push ../branch_b',
95
116
working_dir='branch_a', retcode=3)
96
self.assertEquals(out,
117
self.assertEqual(out,
97
118
('','bzr: ERROR: These branches have diverged. '
98
119
'See "bzr help diverged-branches" for more information.\n'))
99
self.assertEquals(osutils.abspath(branch_a.get_push_location()),
120
# Refresh the branch as 'push' modified it
121
branch_a = branch_a.bzrdir.open_branch()
122
self.assertEqual(osutils.abspath(branch_a.get_push_location()),
100
123
osutils.abspath(branch_b.bzrdir.root_transport.base))
102
125
# test implicit --remember after resolving previous failure
103
126
uncommit.uncommit(branch=branch_b, tree=tree_b)
104
127
transport.delete('branch_b/c')
105
128
out, err = self.run_bzr('push', working_dir='branch_a')
129
# Refresh the branch as 'push' modified it
130
branch_a = branch_a.bzrdir.open_branch()
106
131
path = branch_a.get_push_location()
107
self.assertEquals(out,
108
'Using saved push location: %s\n'
109
% urlutils.local_path_from_url(path))
110
132
self.assertEqual(err,
133
'Using saved push location: %s\n'
111
134
'All changes applied successfully.\n'
112
'Pushed up to revision 2.\n')
135
'Pushed up to revision 2.\n'
136
% urlutils.local_path_from_url(path))
113
137
self.assertEqual(path,
114
138
branch_b.bzrdir.root_transport.base)
115
139
# test explicit --remember
116
140
self.run_bzr('push ../branch_c --remember', working_dir='branch_a')
117
self.assertEquals(branch_a.get_push_location(),
141
# Refresh the branch as 'push' modified it
142
branch_a = branch_a.bzrdir.open_branch()
143
self.assertEqual(branch_a.get_push_location(),
118
144
branch_c.bzrdir.root_transport.base)
120
146
def test_push_without_tree(self):
149
175
self.assertEqual('', out)
150
176
self.assertEqual('Created new branch.\n', err)
178
def test_push_quiet(self):
179
# test that using -q makes output quiet
180
t = self.make_branch_and_tree('tree')
181
self.build_tree(['tree/file'])
184
self.run_bzr('push -d tree pushed-to')
185
# Refresh the branch as 'push' modified it and get the push location
186
push_loc = t.branch.bzrdir.open_branch().get_push_location()
187
out, err = self.run_bzr('push', working_dir="tree")
188
self.assertEqual('Using saved push location: %s\n'
189
'No new revisions or tags to push.\n' %
190
urlutils.local_path_from_url(push_loc), err)
191
out, err = self.run_bzr('push -q', working_dir="tree")
192
self.assertEqual('', out)
193
self.assertEqual('', err)
152
195
def test_push_only_pushes_history(self):
153
196
# Knit branches should only push the history for the current revision.
154
197
format = bzrdir.BzrDirMetaFormat1()
159
202
def make_shared_tree(path):
160
203
shared_repo.bzrdir.root_transport.mkdir(path)
161
shared_repo.bzrdir.create_branch_convenience('repo/' + path)
204
controldir.ControlDir.create_branch_convenience('repo/' + path)
162
205
return workingtree.WorkingTree.open('repo/' + path)
163
206
tree_a = make_shared_tree('a')
164
207
self.build_tree(['repo/a/file'])
232
275
# become necessary for this use case. Please do not adjust this number
233
276
# upwards without agreement from bzr's network support maintainers.
234
277
self.assertLength(9, self.hpss_calls)
278
self.assertLength(1, self.hpss_connections)
279
self.assertThat(self.hpss_calls, ContainsNoVfsCalls)
236
281
def test_push_smart_stacked_streaming_acceptance(self):
237
282
self.setup_smart_server_with_call_log()
247
292
# being too low. If rpc_count increases, more network roundtrips have
248
293
# become necessary for this use case. Please do not adjust this number
249
294
# upwards without agreement from bzr's network support maintainers.
250
self.assertLength(13, self.hpss_calls)
295
self.assertLength(15, self.hpss_calls)
296
self.assertLength(1, self.hpss_connections)
297
self.assertThat(self.hpss_calls, ContainsNoVfsCalls)
251
298
remote = branch.Branch.open('public')
252
299
self.assertEndsWith(remote.get_stacked_on_url(), '/parent')
264
311
# become necessary for this use case. Please do not adjust this number
265
312
# upwards without agreement from bzr's network support maintainers.
266
313
self.assertLength(11, self.hpss_calls)
314
self.assertLength(1, self.hpss_connections)
315
self.assertThat(self.hpss_calls, ContainsNoVfsCalls)
268
317
def test_push_smart_incremental_acceptance(self):
269
318
self.setup_smart_server_with_call_log()
280
329
# become necessary for this use case. Please do not adjust this number
281
330
# upwards without agreement from bzr's network support maintainers.
282
331
self.assertLength(11, self.hpss_calls)
332
self.assertLength(1, self.hpss_connections)
333
self.assertThat(self.hpss_calls, ContainsNoVfsCalls)
284
335
def test_push_smart_with_default_stacking_url_path_segment(self):
285
336
# If the default stacked-on location is a path element then branches
462
515
trunk_public = self.make_branch('public_trunk', format='1.9')
463
516
trunk_public.pull(trunk_tree.branch)
464
517
trunk_public_url = self.get_readonly_url('public_trunk')
465
trunk_tree.branch.set_public_branch(trunk_public_url)
518
br = trunk_tree.branch
519
br.set_public_branch(trunk_public_url)
466
520
# now we do a stacked push, which should determine the public location
468
522
out, err = self.run_bzr(['push', '--stacked',
561
615
self.assertEqual('', out)
562
616
self.assertEqual('Created new branch.\n', err)
618
def test_overwrite_tags(self):
619
"""--overwrite-tags only overwrites tags, not revisions."""
620
from_tree = self.make_branch_and_tree('from')
621
from_tree.branch.tags.set_tag("mytag", "somerevid")
622
to_tree = self.make_branch_and_tree('to')
623
to_tree.branch.tags.set_tag("mytag", "anotherrevid")
624
revid1 = to_tree.commit('my commit')
625
out = self.run_bzr(['push', '-d', 'from', 'to'])
626
self.assertEqual(out,
627
('Conflicting tags:\n mytag\n', 'No new revisions to push.\n'))
628
out = self.run_bzr(['push', '-d', 'from', '--overwrite-tags', 'to'])
629
self.assertEqual(out, ('', '1 tag updated.\n'))
630
self.assertEqual(to_tree.branch.tags.lookup_tag('mytag'),
632
self.assertEqual(to_tree.branch.last_revision(), revid1)
565
635
class RedirectingMemoryTransport(memory.MemoryTransport):
659
729
self.tree.commit('modify file', rev_id='modified')
661
731
def set_config_push_strict(self, value):
662
# set config var (any of bazaar.conf, locations.conf, branch.conf
664
conf = self.tree.branch.get_config()
665
conf.set_user_option('push_strict', value)
732
br = branch.Branch.open('local')
733
br.get_config_stack().set('push_strict', value)
667
735
_default_command = ['push', '../to']
668
736
_default_wd = 'local'
824
892
target_branch = self.make_dummy_builder('dp').get_branch()
825
893
source_tree = self.make_branch_and_tree("dc")
826
894
output, error = self.run_bzr("push -d dc dp", retcode=3)
827
self.assertEquals("", output)
828
self.assertEquals(error, "bzr: ERROR: It is not possible to losslessly"
895
self.assertEqual("", output)
896
self.assertEqual(error, "bzr: ERROR: It is not possible to losslessly"
829
897
" push to dummy. You may want to use dpush instead.\n")
900
class TestPushOutput(script.TestCaseWithTransportAndScript):
902
def test_push_log_format(self):
905
Created a standalone tree (format: 2a)
910
$ bzr commit -m 'we need some foo'
911
2>Committing to:...trunk/
913
2>Committed revision 1.
914
$ bzr init ../feature
915
Created a standalone tree (format: 2a)
916
$ bzr push -v ../feature -Olog_format=line
918
1: jrandom@example.com ...we need some foo
919
2>All changes applied successfully.
920
2>Pushed up to revision 1.
923
def test_push_with_revspec(self):
926
Shared repository with trees (format: 2a)
930
Created a repository tree (format: 2a)
931
Using shared repository...
933
$ bzr commit -m 'first rev' --unchanged
934
2>Committing to:...trunk/
935
2>Committed revision 1.
939
$ bzr commit -m 'we need some foo'
940
2>Committing to:...trunk/
942
2>Committed revision 2.
943
$ bzr push -r 1 ../other
944
2>Created new branch.
945
$ bzr st ../other # checking that file is not created (#484516)