/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar
6614.1.3 by Vincent Ladeuil
Fix assertEquals being deprecated by using assertEqual.
1
# Copyright (C) 2006-2012, 2016 Canonical Ltd
1887.1.1 by Adeodato Simó
Do not separate paragraphs in the copyright statement with blank lines,
2
#
1614.2.9 by Olaf Conradi
Added testcases for using push with --remember. Moved remember code to
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.
1887.1.1 by Adeodato Simó
Do not separate paragraphs in the copyright statement with blank lines,
7
#
1614.2.9 by Olaf Conradi
Added testcases for using push with --remember. Moved remember code to
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.
1887.1.1 by Adeodato Simó
Do not separate paragraphs in the copyright statement with blank lines,
12
#
1614.2.9 by Olaf Conradi
Added testcases for using push with --remember. Moved remember code to
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
4183.7.1 by Sabin Iacob
update FSF mailing address
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
1614.2.9 by Olaf Conradi
Added testcases for using push with --remember. Moved remember code to
16
17
6622.1.29 by Jelmer Vernooij
Fix some more tests.
18
"""Black-box tests for brz push."""
1614.2.9 by Olaf Conradi
Added testcases for using push with --remember. Moved remember code to
19
3066.3.2 by jml at canonical
Add tests to check the handling of TooManyRedirections.
20
import re
1614.2.9 by Olaf Conradi
Added testcases for using push with --remember. Moved remember code to
21
6622.1.34 by Jelmer Vernooij
Rename brzlib => breezy.
22
from breezy import (
4420.1.1 by Vincent Ladeuil
Cleanup imports.
23
    branch,
6207.3.3 by jelmer at samba
Fix tests and the like.
24
    controldir,
2227.3.1 by John Arbash Meinel
Allow push to create Branch when necessary, and add --use-existing
25
    errors,
4420.1.1 by Vincent Ladeuil
Cleanup imports.
26
    osutils,
27
    tests,
3878.4.4 by Vincent Ladeuil
Cleanup.
28
    transport,
4420.1.1 by Vincent Ladeuil
Cleanup imports.
29
    uncommit,
2220.2.9 by Martin Pool
Add specific tests for push -d and pull -d
30
    urlutils,
4420.1.1 by Vincent Ladeuil
Cleanup imports.
31
    workingtree
2227.3.1 by John Arbash Meinel
Allow push to create Branch when necessary, and add --use-existing
32
    )
6670.4.3 by Jelmer Vernooij
Fix more imports.
33
from breezy.bzr import (
34
    bzrdir,
35
    )
6670.4.5 by Jelmer Vernooij
Move breezy.repofmt contents to breezy.bzr.
36
from breezy.bzr import knitrepo
6622.1.34 by Jelmer Vernooij
Rename brzlib => breezy.
37
from breezy.tests import (
4925.1.1 by Jelmer Vernooij
Print a proper error when attempting to push to a foreign VCS for which
38
    http_server,
5559.2.2 by Martin Pool
Change to using standard load_tests_apply_scenarios.
39
    scenarios,
6175.2.4 by Vincent Ladeuil
Add script tests and documentation.
40
    script,
4925.1.1 by Jelmer Vernooij
Print a proper error when attempting to push to a foreign VCS for which
41
    test_foreign,
42
    )
6622.1.34 by Jelmer Vernooij
Rename brzlib => breezy.
43
from breezy.tests.matchers import ContainsNoVfsCalls
44
from breezy.transport import memory
4420.1.1 by Vincent Ladeuil
Cleanup imports.
45
46
5559.2.2 by Martin Pool
Change to using standard load_tests_apply_scenarios.
47
load_tests = scenarios.load_tests_apply_scenarios
4487.2.2 by Vincent Ladeuil
Add tests for push --strict against pending merges.
48
49
4420.1.1 by Vincent Ladeuil
Cleanup imports.
50
class TestPush(tests.TestCaseWithTransport):
1614.2.9 by Olaf Conradi
Added testcases for using push with --remember. Moved remember code to
51
4017.2.3 by Robert Collins
Review feedback.
52
    def test_push_error_on_vfs_http(self):
53
        """ pushing a branch to a HTTP server fails cleanly. """
54
        # the trunk is published on a web server
4420.1.1 by Vincent Ladeuil
Cleanup imports.
55
        self.transport_readonly_server = http_server.HttpServer
4017.2.3 by Robert Collins
Review feedback.
56
        self.make_branch('source')
57
        public_url = self.get_readonly_url('target')
7027.4.1 by Jelmer Vernooij
Use StringIOWithEncoding on Python3.
58
        self.run_bzr_error(['http does not support mkdir'],
4017.2.3 by Robert Collins
Review feedback.
59
                           ['push', public_url],
60
                           working_dir='source')
61
6394.1.1 by Jelmer Vernooij
Suggest using :parent in "bzr push" if there was no push location specified or remembered.
62
    def test_push_suggests_parent_alias(self):
63
        """Push suggests using :parent if there is a known parent branch."""
64
        tree_a = self.make_branch_and_tree('a')
65
        tree_a.commit('this is a commit')
66
        tree_b = self.make_branch_and_tree('b')
67
68
        # If there is no parent location set, :parent isn't mentioned.
69
        out = self.run_bzr('push', working_dir='a', retcode=3)
6614.1.3 by Vincent Ladeuil
Fix assertEquals being deprecated by using assertEqual.
70
        self.assertEqual(out,
7027.4.1 by Jelmer Vernooij
Use StringIOWithEncoding on Python3.
71
                ('', 'brz: ERROR: No push location known or specified.\n'))
6394.1.1 by Jelmer Vernooij
Suggest using :parent in "bzr push" if there was no push location specified or remembered.
72
73
        # If there is a parent location set, the error suggests :parent.
74
        tree_a.branch.set_parent(tree_b.branch.base)
75
        out = self.run_bzr('push', working_dir='a', retcode=3)
6614.1.3 by Vincent Ladeuil
Fix assertEquals being deprecated by using assertEqual.
76
        self.assertEqual(out,
7027.4.1 by Jelmer Vernooij
Use StringIOWithEncoding on Python3.
77
            ('', 'brz: ERROR: No push location known or specified. '
78
                'To push to the parent branch '
79
                '(at %s), use \'brz push :parent\'.\n' %
6394.1.3 by Jelmer Vernooij
mention parent URL
80
                urlutils.unescape_for_display(tree_b.branch.base, 'utf-8')))
6394.1.1 by Jelmer Vernooij
Suggest using :parent in "bzr push" if there was no push location specified or remembered.
81
1614.2.9 by Olaf Conradi
Added testcases for using push with --remember. Moved remember code to
82
    def test_push_remember(self):
83
        """Push changes from one branch to another and test push location."""
1614.2.16 by Olaf Conradi
Modified blackbox test cases to use bzrlib API.
84
        transport = self.get_transport()
85
        tree_a = self.make_branch_and_tree('branch_a')
86
        branch_a = tree_a.branch
87
        self.build_tree(['branch_a/a'])
88
        tree_a.add('a')
89
        tree_a.commit('commit a')
6653.6.1 by Jelmer Vernooij
Rename a number of attributes from bzrdir to controldir.
90
        tree_b = branch_a.controldir.sprout('branch_b').open_workingtree()
1666.1.4 by Robert Collins
* 'Metadir' is now the default disk format. This improves behaviour in
91
        branch_b = tree_b.branch
6653.6.1 by Jelmer Vernooij
Rename a number of attributes from bzrdir to controldir.
92
        tree_c = branch_a.controldir.sprout('branch_c').open_workingtree()
1666.1.4 by Robert Collins
* 'Metadir' is now the default disk format. This improves behaviour in
93
        branch_c = tree_c.branch
1614.2.16 by Olaf Conradi
Modified blackbox test cases to use bzrlib API.
94
        self.build_tree(['branch_a/b'])
95
        tree_a.add('b')
96
        tree_a.commit('commit b')
97
        self.build_tree(['branch_b/c'])
98
        tree_b.add('c')
99
        tree_b.commit('commit c')
1614.2.9 by Olaf Conradi
Added testcases for using push with --remember. Moved remember code to
100
        # initial push location must be empty
1614.2.16 by Olaf Conradi
Modified blackbox test cases to use bzrlib API.
101
        self.assertEqual(None, branch_b.get_push_location())
1785.1.2 by John Arbash Meinel
Push should only save the location if it can actually connect (doesn't need to succeed)
102
1614.2.9 by Olaf Conradi
Added testcases for using push with --remember. Moved remember code to
103
        # test push for failure without push location set
4420.1.1 by Vincent Ladeuil
Cleanup imports.
104
        out = self.run_bzr('push', working_dir='branch_a', retcode=3)
6614.1.3 by Vincent Ladeuil
Fix assertEquals being deprecated by using assertEqual.
105
        self.assertEqual(out,
6809.1.1 by Martin
Apply 2to3 ws_comma fixer
106
                ('', 'brz: ERROR: No push location known or specified.\n'))
1785.1.2 by John Arbash Meinel
Push should only save the location if it can actually connect (doesn't need to succeed)
107
108
        # test not remembered if cannot actually push
4420.1.1 by Vincent Ladeuil
Cleanup imports.
109
        self.run_bzr('push path/which/doesnt/exist',
110
                     working_dir='branch_a', retcode=3)
111
        out = self.run_bzr('push', working_dir='branch_a', retcode=3)
6614.1.3 by Vincent Ladeuil
Fix assertEquals being deprecated by using assertEqual.
112
        self.assertEqual(
6622.1.29 by Jelmer Vernooij
Fix some more tests.
113
                ('', 'brz: ERROR: No push location known or specified.\n'),
1785.1.2 by John Arbash Meinel
Push should only save the location if it can actually connect (doesn't need to succeed)
114
                out)
115
1614.2.9 by Olaf Conradi
Added testcases for using push with --remember. Moved remember code to
116
        # test implicit --remember when no push location set, push fails
4420.1.1 by Vincent Ladeuil
Cleanup imports.
117
        out = self.run_bzr('push ../branch_b',
118
                           working_dir='branch_a', retcode=3)
6614.1.3 by Vincent Ladeuil
Fix assertEquals being deprecated by using assertEqual.
119
        self.assertEqual(out,
6809.1.1 by Martin
Apply 2to3 ws_comma fixer
120
                ('', 'brz: ERROR: These branches have diverged.  '
6622.1.29 by Jelmer Vernooij
Fix some more tests.
121
                 'See "brz help diverged-branches" for more information.\n'))
6404.6.6 by Vincent Ladeuil
Use idioms coherently and add comments to make their purpose clearer.
122
        # Refresh the branch as 'push' modified it
6653.6.1 by Jelmer Vernooij
Rename a number of attributes from bzrdir to controldir.
123
        branch_a = branch_a.controldir.open_branch()
6614.1.3 by Vincent Ladeuil
Fix assertEquals being deprecated by using assertEqual.
124
        self.assertEqual(osutils.abspath(branch_a.get_push_location()),
6653.6.1 by Jelmer Vernooij
Rename a number of attributes from bzrdir to controldir.
125
                          osutils.abspath(branch_b.controldir.root_transport.base))
1785.1.2 by John Arbash Meinel
Push should only save the location if it can actually connect (doesn't need to succeed)
126
1614.2.9 by Olaf Conradi
Added testcases for using push with --remember. Moved remember code to
127
        # test implicit --remember after resolving previous failure
4420.1.1 by Vincent Ladeuil
Cleanup imports.
128
        uncommit.uncommit(branch=branch_b, tree=tree_b)
1614.2.16 by Olaf Conradi
Modified blackbox test cases to use bzrlib API.
129
        transport.delete('branch_b/c')
4420.1.1 by Vincent Ladeuil
Cleanup imports.
130
        out, err = self.run_bzr('push', working_dir='branch_a')
6404.6.6 by Vincent Ladeuil
Use idioms coherently and add comments to make their purpose clearer.
131
        # Refresh the branch as 'push' modified it
6653.6.1 by Jelmer Vernooij
Rename a number of attributes from bzrdir to controldir.
132
        branch_a = branch_a.controldir.open_branch()
1785.1.1 by John Arbash Meinel
Fix the output of 'bzr push' so that it prints the location correctly.
133
        path = branch_a.get_push_location()
2220.2.38 by Martin Pool
Tag conflicts from push go to stdout.
134
        self.assertEqual(err,
5998.1.3 by Jonathan Riddell
add a test for bzr push -q
135
                         'Using saved push location: %s\n'
3978.2.2 by Jelmer Vernooij
Write status messages during push to stderr rather than stdout.
136
                         'All changes applied successfully.\n'
5998.1.3 by Jonathan Riddell
add a test for bzr push -q
137
                         'Pushed up to revision 2.\n'
138
                         % urlutils.local_path_from_url(path))
1785.1.1 by John Arbash Meinel
Fix the output of 'bzr push' so that it prints the location correctly.
139
        self.assertEqual(path,
6653.6.1 by Jelmer Vernooij
Rename a number of attributes from bzrdir to controldir.
140
                         branch_b.controldir.root_transport.base)
1614.2.9 by Olaf Conradi
Added testcases for using push with --remember. Moved remember code to
141
        # test explicit --remember
4420.1.1 by Vincent Ladeuil
Cleanup imports.
142
        self.run_bzr('push ../branch_c --remember', working_dir='branch_a')
6404.6.6 by Vincent Ladeuil
Use idioms coherently and add comments to make their purpose clearer.
143
        # Refresh the branch as 'push' modified it
6653.6.1 by Jelmer Vernooij
Rename a number of attributes from bzrdir to controldir.
144
        branch_a = branch_a.controldir.open_branch()
6614.1.3 by Vincent Ladeuil
Fix assertEquals being deprecated by using assertEqual.
145
        self.assertEqual(branch_a.get_push_location(),
6653.6.1 by Jelmer Vernooij
Rename a number of attributes from bzrdir to controldir.
146
                          branch_c.controldir.root_transport.base)
3943.8.1 by Marius Kruger
remove all trailing whitespace from bzr source
147
1692.3.1 by Robert Collins
Fix push to work with just a branch, no need for a working tree.
148
    def test_push_without_tree(self):
6622.1.29 by Jelmer Vernooij
Fix some more tests.
149
        # brz push from a branch that does not have a checkout should work.
1692.3.1 by Robert Collins
Fix push to work with just a branch, no need for a working tree.
150
        b = self.make_branch('.')
2552.2.3 by Vincent Ladeuil
Deprecate the varargs syntax and fix the tests.
151
        out, err = self.run_bzr('push pushed-location')
7027.4.1 by Jelmer Vernooij
Use StringIOWithEncoding on Python3.
152
        self.assertEqual('', out)
153
        self.assertEqual('Created new branch.\n', err)
4420.1.1 by Vincent Ladeuil
Cleanup imports.
154
        b2 = branch.Branch.open('pushed-location')
1692.3.1 by Robert Collins
Fix push to work with just a branch, no need for a working tree.
155
        self.assertEndsWith(b2.base, 'pushed-location/')
1692.3.6 by Robert Collins
Show the correct number of revisions pushed when pushing a new branch (Robert Collins).
156
5448.6.5 by Matthew Gordon
Added test for push --no-tree.
157
    def test_push_no_tree(self):
6622.1.29 by Jelmer Vernooij
Fix some more tests.
158
        # brz push --no-tree of a branch with working trees
5448.6.5 by Matthew Gordon
Added test for push --no-tree.
159
        b = self.make_branch_and_tree('push-from')
160
        self.build_tree(['push-from/file'])
161
        b.add('file')
162
        b.commit('commit 1')
163
        out, err = self.run_bzr('push --no-tree -d push-from push-to')
7027.4.1 by Jelmer Vernooij
Use StringIOWithEncoding on Python3.
164
        self.assertEqual('', out)
165
        self.assertEqual('Created new branch.\n', err)
5784.1.3 by Martin Pool
Switch away from using failUnlessExists and failIfExists
166
        self.assertPathDoesNotExist('push-to/file')
5448.6.5 by Matthew Gordon
Added test for push --no-tree.
167
1692.3.6 by Robert Collins
Show the correct number of revisions pushed when pushing a new branch (Robert Collins).
168
    def test_push_new_branch_revision_count(self):
6622.1.29 by Jelmer Vernooij
Fix some more tests.
169
        # brz push of a branch with revisions to a new location
3943.8.1 by Marius Kruger
remove all trailing whitespace from bzr source
170
        # should print the number of revisions equal to the length of the
1692.3.6 by Robert Collins
Show the correct number of revisions pushed when pushing a new branch (Robert Collins).
171
        # local branch.
172
        t = self.make_branch_and_tree('tree')
173
        self.build_tree(['tree/file'])
174
        t.add('file')
175
        t.commit('commit 1')
4420.1.1 by Vincent Ladeuil
Cleanup imports.
176
        out, err = self.run_bzr('push -d tree pushed-to')
7027.4.1 by Jelmer Vernooij
Use StringIOWithEncoding on Python3.
177
        self.assertEqual('', out)
178
        self.assertEqual('Created new branch.\n', err)
1711.2.3 by John Arbash Meinel
Fix push to only push revisions in the current ancestry. (bug???)
179
5998.1.3 by Jonathan Riddell
add a test for bzr push -q
180
    def test_push_quiet(self):
181
        # test that using -q makes output quiet
182
        t = self.make_branch_and_tree('tree')
183
        self.build_tree(['tree/file'])
184
        t.add('file')
185
        t.commit('commit 1')
186
        self.run_bzr('push -d tree pushed-to')
6404.6.6 by Vincent Ladeuil
Use idioms coherently and add comments to make their purpose clearer.
187
        # Refresh the branch as 'push' modified it and get the push location
6653.6.1 by Jelmer Vernooij
Rename a number of attributes from bzrdir to controldir.
188
        push_loc = t.branch.controldir.open_branch().get_push_location()
5998.1.3 by Jonathan Riddell
add a test for bzr push -q
189
        out, err = self.run_bzr('push', working_dir="tree")
6112.4.3 by Jelmer Vernooij
Fix push tests.
190
        self.assertEqual('Using saved push location: %s\n'
191
                         'No new revisions or tags to push.\n' %
6404.6.6 by Vincent Ladeuil
Use idioms coherently and add comments to make their purpose clearer.
192
                         urlutils.local_path_from_url(push_loc), err)
5998.1.3 by Jonathan Riddell
add a test for bzr push -q
193
        out, err = self.run_bzr('push -q', working_dir="tree")
7027.4.1 by Jelmer Vernooij
Use StringIOWithEncoding on Python3.
194
        self.assertEqual('', out)
195
        self.assertEqual('', err)
5998.1.3 by Jonathan Riddell
add a test for bzr push -q
196
1711.2.3 by John Arbash Meinel
Fix push to only push revisions in the current ancestry. (bug???)
197
    def test_push_only_pushes_history(self):
198
        # Knit branches should only push the history for the current revision.
4420.1.1 by Vincent Ladeuil
Cleanup imports.
199
        format = bzrdir.BzrDirMetaFormat1()
200
        format.repository_format = knitrepo.RepositoryFormatKnit1()
1711.2.3 by John Arbash Meinel
Fix push to only push revisions in the current ancestry. (bug???)
201
        shared_repo = self.make_repository('repo', format=format, shared=True)
202
        shared_repo.set_make_working_trees(True)
203
204
        def make_shared_tree(path):
6653.6.1 by Jelmer Vernooij
Rename a number of attributes from bzrdir to controldir.
205
            shared_repo.controldir.root_transport.mkdir(path)
6207.3.3 by jelmer at samba
Fix tests and the like.
206
            controldir.ControlDir.create_branch_convenience('repo/' + path)
4420.1.1 by Vincent Ladeuil
Cleanup imports.
207
            return workingtree.WorkingTree.open('repo/' + path)
1711.2.3 by John Arbash Meinel
Fix push to only push revisions in the current ancestry. (bug???)
208
        tree_a = make_shared_tree('a')
209
        self.build_tree(['repo/a/file'])
210
        tree_a.add('file')
6855.4.1 by Jelmer Vernooij
Yet more bees.
211
        tree_a.commit('commit a-1', rev_id=b'a-1')
1711.2.3 by John Arbash Meinel
Fix push to only push revisions in the current ancestry. (bug???)
212
        f = open('repo/a/file', 'ab')
6973.5.2 by Jelmer Vernooij
Add more bees.
213
        f.write(b'more stuff\n')
1711.2.3 by John Arbash Meinel
Fix push to only push revisions in the current ancestry. (bug???)
214
        f.close()
6855.4.1 by Jelmer Vernooij
Yet more bees.
215
        tree_a.commit('commit a-2', rev_id=b'a-2')
1711.2.3 by John Arbash Meinel
Fix push to only push revisions in the current ancestry. (bug???)
216
217
        tree_b = make_shared_tree('b')
218
        self.build_tree(['repo/b/file'])
219
        tree_b.add('file')
6855.4.1 by Jelmer Vernooij
Yet more bees.
220
        tree_b.commit('commit b-1', rev_id=b'b-1')
1711.2.3 by John Arbash Meinel
Fix push to only push revisions in the current ancestry. (bug???)
221
6973.5.2 by Jelmer Vernooij
Add more bees.
222
        self.assertTrue(shared_repo.has_revision(b'a-1'))
223
        self.assertTrue(shared_repo.has_revision(b'a-2'))
224
        self.assertTrue(shared_repo.has_revision(b'b-1'))
1711.2.3 by John Arbash Meinel
Fix push to only push revisions in the current ancestry. (bug???)
225
226
        # Now that we have a repository with shared files, make sure
227
        # that things aren't copied out by a 'push'
4420.1.1 by Vincent Ladeuil
Cleanup imports.
228
        self.run_bzr('push ../../push-b', working_dir='repo/b')
229
        pushed_tree = workingtree.WorkingTree.open('push-b')
1711.2.3 by John Arbash Meinel
Fix push to only push revisions in the current ancestry. (bug???)
230
        pushed_repo = pushed_tree.branch.repository
6973.5.2 by Jelmer Vernooij
Add more bees.
231
        self.assertFalse(pushed_repo.has_revision(b'a-1'))
232
        self.assertFalse(pushed_repo.has_revision(b'a-2'))
233
        self.assertTrue(pushed_repo.has_revision(b'b-1'))
1711.2.3 by John Arbash Meinel
Fix push to only push revisions in the current ancestry. (bug???)
234
1843.2.1 by Aaron Bentley
Add failing tests for funky ids
235
    def test_push_funky_id(self):
236
        t = self.make_branch_and_tree('tree')
4420.1.1 by Vincent Ladeuil
Cleanup imports.
237
        self.build_tree(['tree/filename'])
7045.1.14 by Jelmer Vernooij
More fixes.
238
        t.add('filename', b'funky-chars<>%&;"\'')
1843.2.1 by Aaron Bentley
Add failing tests for funky ids
239
        t.commit('commit filename')
4420.1.1 by Vincent Ladeuil
Cleanup imports.
240
        self.run_bzr('push -d tree new-tree')
2227.3.1 by John Arbash Meinel
Allow push to create Branch when necessary, and add --use-existing
241
2220.2.9 by Martin Pool
Add specific tests for push -d and pull -d
242
    def test_push_dash_d(self):
243
        t = self.make_branch_and_tree('from')
244
        t.commit(allow_pointless=True,
245
                message='first commit')
2530.3.1 by Martin Pool
Cleanup old variations on run_bzr in the test suite
246
        self.run_bzr('push -d from to-one')
5784.1.3 by Martin Pool
Switch away from using failUnlessExists and failIfExists
247
        self.assertPathExists('to-one')
3943.8.1 by Marius Kruger
remove all trailing whitespace from bzr source
248
        self.run_bzr('push -d %s %s'
2220.2.9 by Martin Pool
Add specific tests for push -d and pull -d
249
            % tuple(map(urlutils.local_path_to_url, ['from', 'to-two'])))
5784.1.3 by Martin Pool
Switch away from using failUnlessExists and failIfExists
250
        self.assertPathExists('to-two')
2279.3.1 by mbp at sourcefrog
Add a -d option to push, pull, merge (ported from tags branch)
251
5609.26.1 by John Arbash Meinel
Fix bug #465517, 'bzr push' to a target with a repo but no branch
252
    def test_push_repository_no_branch_doesnt_fetch_all_revs(self):
253
        # See https://bugs.launchpad.net/bzr/+bug/465517
254
        target_repo = self.make_repository('target')
255
        source = self.make_branch_builder('source')
256
        source.start_series()
6816.2.1 by Jelmer Vernooij
Migrate some build_snapshot code over to having revision_id as keyword argument.
257
        source.build_snapshot(None, [
6973.13.2 by Jelmer Vernooij
Fix some more tests.
258
            ('add', ('', b'root-id', 'directory', None))],
6855.4.1 by Jelmer Vernooij
Yet more bees.
259
            revision_id=b'A')
6973.13.2 by Jelmer Vernooij
Fix some more tests.
260
        source.build_snapshot([b'A'], [], revision_id=b'B')
261
        source.build_snapshot([b'A'], [], revision_id=b'C')
5609.26.1 by John Arbash Meinel
Fix bug #465517, 'bzr push' to a target with a repo but no branch
262
        source.finish_series()
263
        self.run_bzr('push target -d source')
264
        self.addCleanup(target_repo.lock_read().unlock)
265
        # We should have pushed 'C', but not 'B', since it isn't in the
266
        # ancestry
6973.13.2 by Jelmer Vernooij
Fix some more tests.
267
        self.assertEqual([(b'A',), (b'C',)], sorted(target_repo.revisions.keys()))
5609.26.1 by John Arbash Meinel
Fix bug #465517, 'bzr push' to a target with a repo but no branch
268
4011.2.1 by Robert Collins
Add ratchet style blackbox effort tests for push over bzr+ssh. (Andrew Bennetts, Robert Collins)
269
    def test_push_smart_non_stacked_streaming_acceptance(self):
4017.2.1 by Robert Collins
Add BzrDirFormatMeta1 test for the amount of rpc calls made initializing over the network.
270
        self.setup_smart_server_with_call_log()
4011.2.1 by Robert Collins
Add ratchet style blackbox effort tests for push over bzr+ssh. (Andrew Bennetts, Robert Collins)
271
        t = self.make_branch_and_tree('from')
272
        t.commit(allow_pointless=True, message='first commit')
4017.2.1 by Robert Collins
Add BzrDirFormatMeta1 test for the amount of rpc calls made initializing over the network.
273
        self.reset_smart_call_log()
4011.2.1 by Robert Collins
Add ratchet style blackbox effort tests for push over bzr+ssh. (Andrew Bennetts, Robert Collins)
274
        self.run_bzr(['push', self.get_url('to-one')], working_dir='from')
4011.2.4 by Robert Collins
Make the ratchet aspect of the blackbox smart server push acceptance tests clearer.
275
        # This figure represent the amount of work to perform this use case. It
276
        # is entirely ok to reduce this number if a test fails due to rpc_count
277
        # being too low. If rpc_count increases, more network roundtrips have
278
        # become necessary for this use case. Please do not adjust this number
279
        # upwards without agreement from bzr's network support maintainers.
4307.2.2 by Robert Collins
Lock repositories created by BzrDirFormat.initialize_on_transport_ex.
280
        self.assertLength(9, self.hpss_calls)
6366.1.4 by Jelmer Vernooij
Test connection count calls for most blackbox commands.
281
        self.assertLength(1, self.hpss_connections)
282
        self.assertThat(self.hpss_calls, ContainsNoVfsCalls)
4011.2.1 by Robert Collins
Add ratchet style blackbox effort tests for push over bzr+ssh. (Andrew Bennetts, Robert Collins)
283
284
    def test_push_smart_stacked_streaming_acceptance(self):
4017.2.1 by Robert Collins
Add BzrDirFormatMeta1 test for the amount of rpc calls made initializing over the network.
285
        self.setup_smart_server_with_call_log()
4011.2.1 by Robert Collins
Add ratchet style blackbox effort tests for push over bzr+ssh. (Andrew Bennetts, Robert Collins)
286
        parent = self.make_branch_and_tree('parent', format='1.9')
287
        parent.commit(message='first commit')
6653.6.1 by Jelmer Vernooij
Rename a number of attributes from bzrdir to controldir.
288
        local = parent.controldir.sprout('local').open_workingtree()
4011.2.1 by Robert Collins
Add ratchet style blackbox effort tests for push over bzr+ssh. (Andrew Bennetts, Robert Collins)
289
        local.commit(message='local commit')
4017.2.1 by Robert Collins
Add BzrDirFormatMeta1 test for the amount of rpc calls made initializing over the network.
290
        self.reset_smart_call_log()
4011.2.1 by Robert Collins
Add ratchet style blackbox effort tests for push over bzr+ssh. (Andrew Bennetts, Robert Collins)
291
        self.run_bzr(['push', '--stacked', '--stacked-on', '../parent',
292
            self.get_url('public')], working_dir='local')
4011.2.4 by Robert Collins
Make the ratchet aspect of the blackbox smart server push acceptance tests clearer.
293
        # This figure represent the amount of work to perform this use case. It
294
        # is entirely ok to reduce this number if a test fails due to rpc_count
295
        # being too low. If rpc_count increases, more network roundtrips have
296
        # become necessary for this use case. Please do not adjust this number
297
        # upwards without agreement from bzr's network support maintainers.
6404.6.1 by Vincent Ladeuil
Tests passing for a first rough version of a cached branch config store. The changes here are too invasive and several parallel proposals have been made.
298
        self.assertLength(15, self.hpss_calls)
6366.1.4 by Jelmer Vernooij
Test connection count calls for most blackbox commands.
299
        self.assertLength(1, self.hpss_connections)
300
        self.assertThat(self.hpss_calls, ContainsNoVfsCalls)
4420.1.1 by Vincent Ladeuil
Cleanup imports.
301
        remote = branch.Branch.open('public')
4011.2.1 by Robert Collins
Add ratchet style blackbox effort tests for push over bzr+ssh. (Andrew Bennetts, Robert Collins)
302
        self.assertEndsWith(remote.get_stacked_on_url(), '/parent')
303
4556.2.1 by Andrew Bennetts
Add Branch.set_tags_bytes RPC, with HPSS call count acceptance test. Also fixes serialisation of LockDir, and uses external_url() in LockDir's repr and contention message.
304
    def test_push_smart_tags_streaming_acceptance(self):
305
        self.setup_smart_server_with_call_log()
306
        t = self.make_branch_and_tree('from')
307
        rev_id = t.commit(allow_pointless=True, message='first commit')
308
        t.branch.tags.set_tag('new-tag', rev_id)
309
        self.reset_smart_call_log()
310
        self.run_bzr(['push', self.get_url('to-one')], working_dir='from')
311
        # This figure represent the amount of work to perform this use case. It
312
        # is entirely ok to reduce this number if a test fails due to rpc_count
313
        # being too low. If rpc_count increases, more network roundtrips have
314
        # become necessary for this use case. Please do not adjust this number
315
        # upwards without agreement from bzr's network support maintainers.
316
        self.assertLength(11, self.hpss_calls)
6366.1.4 by Jelmer Vernooij
Test connection count calls for most blackbox commands.
317
        self.assertLength(1, self.hpss_connections)
318
        self.assertThat(self.hpss_calls, ContainsNoVfsCalls)
4556.2.1 by Andrew Bennetts
Add Branch.set_tags_bytes RPC, with HPSS call count acceptance test. Also fixes serialisation of LockDir, and uses external_url() in LockDir's repr and contention message.
319
4634.47.3 by Andrew Bennetts
Add a BzrDir.open_2.1 verb that indicates if there is a workingtree present. Removes the last 2 VFS calls from incremental pushes.
320
    def test_push_smart_incremental_acceptance(self):
321
        self.setup_smart_server_with_call_log()
322
        t = self.make_branch_and_tree('from')
323
        rev_id1 = t.commit(allow_pointless=True, message='first commit')
324
        rev_id2 = t.commit(allow_pointless=True, message='second commit')
325
        self.run_bzr(
326
            ['push', self.get_url('to-one'), '-r1'], working_dir='from')
327
        self.reset_smart_call_log()
328
        self.run_bzr(['push', self.get_url('to-one')], working_dir='from')
329
        # This figure represent the amount of work to perform this use case. It
330
        # is entirely ok to reduce this number if a test fails due to rpc_count
331
        # being too low. If rpc_count increases, more network roundtrips have
332
        # become necessary for this use case. Please do not adjust this number
333
        # upwards without agreement from bzr's network support maintainers.
334
        self.assertLength(11, self.hpss_calls)
6366.1.4 by Jelmer Vernooij
Test connection count calls for most blackbox commands.
335
        self.assertLength(1, self.hpss_connections)
336
        self.assertThat(self.hpss_calls, ContainsNoVfsCalls)
4634.47.3 by Andrew Bennetts
Add a BzrDir.open_2.1 verb that indicates if there is a workingtree present. Removes the last 2 VFS calls from incremental pushes.
337
4416.3.1 by Jonathan Lange
Add two tests, the second of which demonstrates bug 385132.
338
    def test_push_smart_with_default_stacking_url_path_segment(self):
4416.3.2 by Jonathan Lange
Comment the blackbox tests, for my own sanity.
339
        # If the default stacked-on location is a path element then branches
340
        # we push there over the smart server are stacked and their
341
        # stacked_on_url is that exact path segment. Added to nail bug 385132.
4416.3.1 by Jonathan Lange
Add two tests, the second of which demonstrates bug 385132.
342
        self.setup_smart_server_with_call_log()
343
        self.make_branch('stack-on', format='1.9')
6653.6.5 by Jelmer Vernooij
Rename make_bzrdir to make_controldir.
344
        self.make_controldir('.').get_config().set_default_stack_on(
4416.3.9 by Jonathan Lange
Put the test back the way it was.
345
            '/stack-on')
4416.3.1 by Jonathan Lange
Add two tests, the second of which demonstrates bug 385132.
346
        self.make_branch('from', format='1.9')
347
        out, err = self.run_bzr(['push', '-d', 'from', self.get_url('to')])
4416.3.10 by Jonathan Lange
Merge trunk
348
        b = branch.Branch.open(self.get_url('to'))
4416.3.12 by Jonathan Lange
This makes the test pass, but it's a bit ick.
349
        self.assertEqual('/extra/stack-on', b.get_stacked_on_url())
4416.3.1 by Jonathan Lange
Add two tests, the second of which demonstrates bug 385132.
350
351
    def test_push_smart_with_default_stacking_relative_path(self):
4416.3.2 by Jonathan Lange
Comment the blackbox tests, for my own sanity.
352
        # If the default stacked-on location is a relative path then branches
353
        # we push there over the smart server are stacked and their
354
        # stacked_on_url is a relative path. Added to nail bug 385132.
4416.3.1 by Jonathan Lange
Add two tests, the second of which demonstrates bug 385132.
355
        self.setup_smart_server_with_call_log()
356
        self.make_branch('stack-on', format='1.9')
6653.6.5 by Jelmer Vernooij
Rename make_bzrdir to make_controldir.
357
        self.make_controldir('.').get_config().set_default_stack_on('stack-on')
4416.3.1 by Jonathan Lange
Add two tests, the second of which demonstrates bug 385132.
358
        self.make_branch('from', format='1.9')
359
        out, err = self.run_bzr(['push', '-d', 'from', self.get_url('to')])
4416.3.10 by Jonathan Lange
Merge trunk
360
        b = branch.Branch.open(self.get_url('to'))
361
        self.assertEqual('../stack-on', b.get_stacked_on_url())
4416.3.1 by Jonathan Lange
Add two tests, the second of which demonstrates bug 385132.
362
2227.3.1 by John Arbash Meinel
Allow push to create Branch when necessary, and add --use-existing
363
    def create_simple_tree(self):
364
        tree = self.make_branch_and_tree('tree')
365
        self.build_tree(['tree/a'])
6855.4.1 by Jelmer Vernooij
Yet more bees.
366
        tree.add(['a'], [b'a-id'])
367
        tree.commit('one', rev_id=b'r1')
2227.3.1 by John Arbash Meinel
Allow push to create Branch when necessary, and add --use-existing
368
        return tree
369
370
    def test_push_create_prefix(self):
6622.1.29 by Jelmer Vernooij
Fix some more tests.
371
        """'brz push --create-prefix' will create leading directories."""
2227.3.1 by John Arbash Meinel
Allow push to create Branch when necessary, and add --use-existing
372
        tree = self.create_simple_tree()
373
7027.4.1 by Jelmer Vernooij
Use StringIOWithEncoding on Python3.
374
        self.run_bzr_error(['Parent directory of ../new/tree does not exist'],
2552.2.3 by Vincent Ladeuil
Deprecate the varargs syntax and fix the tests.
375
                           'push ../new/tree',
2227.3.1 by John Arbash Meinel
Allow push to create Branch when necessary, and add --use-existing
376
                           working_dir='tree')
2552.2.3 by Vincent Ladeuil
Deprecate the varargs syntax and fix the tests.
377
        self.run_bzr('push ../new/tree --create-prefix',
2227.3.1 by John Arbash Meinel
Allow push to create Branch when necessary, and add --use-existing
378
                     working_dir='tree')
4420.1.1 by Vincent Ladeuil
Cleanup imports.
379
        new_tree = workingtree.WorkingTree.open('new/tree')
2227.3.1 by John Arbash Meinel
Allow push to create Branch when necessary, and add --use-existing
380
        self.assertEqual(tree.last_revision(), new_tree.last_revision())
5784.1.3 by Martin Pool
Switch away from using failUnlessExists and failIfExists
381
        self.assertPathExists('new/tree/a')
2227.3.1 by John Arbash Meinel
Allow push to create Branch when necessary, and add --use-existing
382
383
    def test_push_use_existing(self):
6622.1.29 by Jelmer Vernooij
Fix some more tests.
384
        """'brz push --use-existing-dir' can push into an existing dir.
2227.3.1 by John Arbash Meinel
Allow push to create Branch when necessary, and add --use-existing
385
6622.1.29 by Jelmer Vernooij
Fix some more tests.
386
        By default, 'brz push' will not use an existing, non-versioned dir.
2227.3.1 by John Arbash Meinel
Allow push to create Branch when necessary, and add --use-existing
387
        """
388
        tree = self.create_simple_tree()
389
        self.build_tree(['target/'])
390
7027.4.1 by Jelmer Vernooij
Use StringIOWithEncoding on Python3.
391
        self.run_bzr_error(['Target directory ../target already exists',
392
                            'Supply --use-existing-dir',
2552.2.3 by Vincent Ladeuil
Deprecate the varargs syntax and fix the tests.
393
                           ],
394
                           'push ../target', working_dir='tree')
2227.3.4 by John Arbash Meinel
Switch back to --use-existing-dir
395
2552.2.3 by Vincent Ladeuil
Deprecate the varargs syntax and fix the tests.
396
        self.run_bzr('push --use-existing-dir ../target',
2227.3.1 by John Arbash Meinel
Allow push to create Branch when necessary, and add --use-existing
397
                     working_dir='tree')
398
4420.1.1 by Vincent Ladeuil
Cleanup imports.
399
        new_tree = workingtree.WorkingTree.open('target')
2227.3.1 by John Arbash Meinel
Allow push to create Branch when necessary, and add --use-existing
400
        self.assertEqual(tree.last_revision(), new_tree.last_revision())
401
        # The push should have created target/a
5784.1.3 by Martin Pool
Switch away from using failUnlessExists and failIfExists
402
        self.assertPathExists('target/a')
2227.3.1 by John Arbash Meinel
Allow push to create Branch when necessary, and add --use-existing
403
4634.105.1 by Andrew Bennetts
Fix traceback when doing 'bzr push --use-existing-dir' into a dir with an invalid .bzr directory.
404
    def test_push_use_existing_into_empty_bzrdir(self):
6622.1.30 by Jelmer Vernooij
Some more test fixes.
405
        """'brz push --use-existing-dir' into a dir with an empty .bzr dir
4634.105.1 by Andrew Bennetts
Fix traceback when doing 'bzr push --use-existing-dir' into a dir with an invalid .bzr directory.
406
        fails.
407
        """
408
        tree = self.create_simple_tree()
409
        self.build_tree(['target/', 'target/.bzr/'])
410
        self.run_bzr_error(
6622.1.30 by Jelmer Vernooij
Some more test fixes.
411
            ['Target directory ../target already contains a .bzr directory, '
4634.105.2 by Andrew Bennetts
Clearer code and error message.
412
             'but it is not valid.'],
4634.105.1 by Andrew Bennetts
Fix traceback when doing 'bzr push --use-existing-dir' into a dir with an invalid .bzr directory.
413
            'push ../target --use-existing-dir', working_dir='tree')
414
2227.3.1 by John Arbash Meinel
Allow push to create Branch when necessary, and add --use-existing
415
    def test_push_onto_repo(self):
6622.1.29 by Jelmer Vernooij
Fix some more tests.
416
        """We should be able to 'brz push' into an existing bzrdir."""
2227.3.1 by John Arbash Meinel
Allow push to create Branch when necessary, and add --use-existing
417
        tree = self.create_simple_tree()
418
        repo = self.make_repository('repo', shared=True)
419
2552.2.3 by Vincent Ladeuil
Deprecate the varargs syntax and fix the tests.
420
        self.run_bzr('push ../repo',
2227.3.1 by John Arbash Meinel
Allow push to create Branch when necessary, and add --use-existing
421
                     working_dir='tree')
422
423
        # Pushing onto an existing bzrdir will create a repository and
424
        # branch as needed, but will only create a working tree if there was
425
        # no BzrDir before.
4420.1.1 by Vincent Ladeuil
Cleanup imports.
426
        self.assertRaises(errors.NoWorkingTree,
427
                          workingtree.WorkingTree.open, 'repo')
428
        new_branch = branch.Branch.open('repo')
2227.3.1 by John Arbash Meinel
Allow push to create Branch when necessary, and add --use-existing
429
        self.assertEqual(tree.last_revision(), new_branch.last_revision())
430
431
    def test_push_onto_just_bzrdir(self):
432
        """We don't handle when the target is just a bzrdir.
433
434
        Because you shouldn't be able to create *just* a bzrdir in the wild.
435
        """
436
        # TODO: jam 20070109 Maybe it would be better to create the repository
437
        #       if at this point
438
        tree = self.create_simple_tree()
6653.6.5 by Jelmer Vernooij
Rename make_bzrdir to make_controldir.
439
        a_controldir = self.make_controldir('dir')
2227.3.1 by John Arbash Meinel
Allow push to create Branch when necessary, and add --use-existing
440
7027.4.1 by Jelmer Vernooij
Use StringIOWithEncoding on Python3.
441
        self.run_bzr_error(['At ../dir you have a valid .bzr control'],
2552.2.3 by Vincent Ladeuil
Deprecate the varargs syntax and fix the tests.
442
                'push ../dir',
2227.3.1 by John Arbash Meinel
Allow push to create Branch when necessary, and add --use-existing
443
                working_dir='tree')
3066.3.1 by jml at canonical
Catch redirects raised by mkdir() in the push command. This is primarily
444
3256.1.1 by Daniel Watkins
Added test for push with a revspec.
445
    def test_push_with_revisionspec(self):
3256.1.3 by Daniel Watkins
Clarified test intent.
446
        """We should be able to push a revision older than the tip."""
3256.1.1 by Daniel Watkins
Added test for push with a revspec.
447
        tree_from = self.make_branch_and_tree('from')
6973.5.2 by Jelmer Vernooij
Add more bees.
448
        tree_from.commit("One.", rev_id=b"from-1")
449
        tree_from.commit("Two.", rev_id=b"from-2")
3256.1.1 by Daniel Watkins
Added test for push with a revspec.
450
451
        self.run_bzr('push -r1 ../to', working_dir='from')
452
4420.1.1 by Vincent Ladeuil
Cleanup imports.
453
        tree_to = workingtree.WorkingTree.open('to')
3256.1.1 by Daniel Watkins
Added test for push with a revspec.
454
        repo_to = tree_to.branch.repository
6973.5.2 by Jelmer Vernooij
Add more bees.
455
        self.assertTrue(repo_to.has_revision(b'from-1'))
456
        self.assertFalse(repo_to.has_revision(b'from-2'))
457
        self.assertEqual(tree_to.branch.last_revision_info()[1], b'from-1')
6519.3.2 by Neil Martinsen-Burrell
add direct test as well
458
        self.assertFalse(
459
            tree_to.changes_from(tree_to.basis_tree()).has_changed())
3256.1.1 by Daniel Watkins
Added test for push with a revspec.
460
3256.1.4 by Daniel Watkins
Added test to ensure that passing a range of revisions errors.
461
        self.run_bzr_error(
6622.1.29 by Jelmer Vernooij
Fix some more tests.
462
            ['brz: ERROR: brz push --revision '
4325.4.6 by Vincent Ladeuil
Fixed as per John's and Markus reviews.
463
             'takes exactly one revision identifier\n'],
3256.1.4 by Daniel Watkins
Added test to ensure that passing a range of revisions errors.
464
            'push -r0..2 ../to', working_dir='from')
465
3221.11.13 by Robert Collins
Allow push --shallow to just work, and fix the testing HTTPServer to not be affected by chdir() calls.
466
    def create_trunk_and_feature_branch(self):
3221.11.12 by Robert Collins
Basic push --reference support, requires url, slow.
467
        # We have a mainline
468
        trunk_tree = self.make_branch_and_tree('target',
4241.6.8 by Robert Collins, John Arbash Meinel, Ian Clatworthy, Vincent Ladeuil
Add --development6-rich-root, disabling the legacy and unneeded development2 format, and activating the tests for CHK features disabled pending this format. (Robert Collins, John Arbash Meinel, Ian Clatworthy, Vincent Ladeuil)
469
            format='1.9')
3221.11.12 by Robert Collins
Basic push --reference support, requires url, slow.
470
        trunk_tree.commit('mainline')
471
        # and a branch from it
472
        branch_tree = self.make_branch_and_tree('branch',
4241.6.8 by Robert Collins, John Arbash Meinel, Ian Clatworthy, Vincent Ladeuil
Add --development6-rich-root, disabling the legacy and unneeded development2 format, and activating the tests for CHK features disabled pending this format. (Robert Collins, John Arbash Meinel, Ian Clatworthy, Vincent Ladeuil)
473
            format='1.9')
3221.11.12 by Robert Collins
Basic push --reference support, requires url, slow.
474
        branch_tree.pull(trunk_tree.branch)
3221.11.13 by Robert Collins
Allow push --shallow to just work, and fix the testing HTTPServer to not be affected by chdir() calls.
475
        branch_tree.branch.set_parent(trunk_tree.branch.base)
3221.11.12 by Robert Collins
Basic push --reference support, requires url, slow.
476
        # with some work on it
3221.11.13 by Robert Collins
Allow push --shallow to just work, and fix the testing HTTPServer to not be affected by chdir() calls.
477
        branch_tree.commit('moar work plz')
478
        return trunk_tree, branch_tree
479
3221.11.14 by Robert Collins
Refactor to reduce duplication.
480
    def assertPublished(self, branch_revid, stacked_on):
481
        """Assert that the branch 'published' has been published correctly."""
4420.1.1 by Vincent Ladeuil
Cleanup imports.
482
        published_branch = branch.Branch.open('published')
3221.11.14 by Robert Collins
Refactor to reduce duplication.
483
        # The published branch refers to the mainline
3537.3.1 by Martin Pool
Rename branch.get_stacked_on to get_stacked_on_url
484
        self.assertEqual(stacked_on, published_branch.get_stacked_on_url())
3221.11.14 by Robert Collins
Refactor to reduce duplication.
485
        # and the branch's work was pushed
486
        self.assertTrue(published_branch.repository.has_revision(branch_revid))
487
3549.1.1 by Martin Pool
rename push --reference to --stacked-on
488
    def test_push_new_branch_stacked_on(self):
489
        """Pushing a new branch with --stacked-on creates a stacked branch."""
3221.11.13 by Robert Collins
Allow push --shallow to just work, and fix the testing HTTPServer to not be affected by chdir() calls.
490
        trunk_tree, branch_tree = self.create_trunk_and_feature_branch()
491
        # we publish branch_tree with a reference to the mainline.
3549.1.1 by Martin Pool
rename push --reference to --stacked-on
492
        out, err = self.run_bzr(['push', '--stacked-on', trunk_tree.branch.base,
3221.11.12 by Robert Collins
Basic push --reference support, requires url, slow.
493
            self.get_url('published')], working_dir='branch')
7027.4.1 by Jelmer Vernooij
Use StringIOWithEncoding on Python3.
494
        self.assertEqual('', out)
495
        self.assertEqual('Created new stacked branch referring to %s.\n' %
3978.2.2 by Jelmer Vernooij
Write status messages during push to stderr rather than stdout.
496
            trunk_tree.branch.base, err)
3221.11.14 by Robert Collins
Refactor to reduce duplication.
497
        self.assertPublished(branch_tree.last_revision(),
498
            trunk_tree.branch.base)
3221.11.13 by Robert Collins
Allow push --shallow to just work, and fix the testing HTTPServer to not be affected by chdir() calls.
499
3221.19.4 by Ian Clatworthy
shallow -> stacked
500
    def test_push_new_branch_stacked_uses_parent_when_no_public_url(self):
3221.11.17 by Robert Collins
no public location causes the parent to be used directly with push --shallow.
501
        """When the parent has no public url the parent is used as-is."""
502
        trunk_tree, branch_tree = self.create_trunk_and_feature_branch()
3221.19.4 by Ian Clatworthy
shallow -> stacked
503
        # now we do a stacked push, which should determine the public location
3221.11.17 by Robert Collins
no public location causes the parent to be used directly with push --shallow.
504
        # for us.
3221.19.4 by Ian Clatworthy
shallow -> stacked
505
        out, err = self.run_bzr(['push', '--stacked',
3221.11.17 by Robert Collins
no public location causes the parent to be used directly with push --shallow.
506
            self.get_url('published')], working_dir='branch')
7027.4.1 by Jelmer Vernooij
Use StringIOWithEncoding on Python3.
507
        self.assertEqual('', out)
508
        self.assertEqual('Created new stacked branch referring to %s.\n' %
3978.2.2 by Jelmer Vernooij
Write status messages during push to stderr rather than stdout.
509
            trunk_tree.branch.base, err)
4420.1.1 by Vincent Ladeuil
Cleanup imports.
510
        self.assertPublished(branch_tree.last_revision(),
511
                             trunk_tree.branch.base)
3221.11.17 by Robert Collins
no public location causes the parent to be used directly with push --shallow.
512
3221.19.4 by Ian Clatworthy
shallow -> stacked
513
    def test_push_new_branch_stacked_uses_parent_public(self):
514
        """Pushing a new branch with --stacked creates a stacked branch."""
3221.11.13 by Robert Collins
Allow push --shallow to just work, and fix the testing HTTPServer to not be affected by chdir() calls.
515
        trunk_tree, branch_tree = self.create_trunk_and_feature_branch()
516
        # the trunk is published on a web server
4420.1.1 by Vincent Ladeuil
Cleanup imports.
517
        self.transport_readonly_server = http_server.HttpServer
4241.6.8 by Robert Collins, John Arbash Meinel, Ian Clatworthy, Vincent Ladeuil
Add --development6-rich-root, disabling the legacy and unneeded development2 format, and activating the tests for CHK features disabled pending this format. (Robert Collins, John Arbash Meinel, Ian Clatworthy, Vincent Ladeuil)
518
        trunk_public = self.make_branch('public_trunk', format='1.9')
3221.11.13 by Robert Collins
Allow push --shallow to just work, and fix the testing HTTPServer to not be affected by chdir() calls.
519
        trunk_public.pull(trunk_tree.branch)
520
        trunk_public_url = self.get_readonly_url('public_trunk')
6404.6.1 by Vincent Ladeuil
Tests passing for a first rough version of a cached branch config store. The changes here are too invasive and several parallel proposals have been made.
521
        br = trunk_tree.branch
6404.6.7 by Vincent Ladeuil
Change set/remove to require a lock for the branch config files.
522
        br.set_public_branch(trunk_public_url)
3221.19.4 by Ian Clatworthy
shallow -> stacked
523
        # now we do a stacked push, which should determine the public location
3221.11.13 by Robert Collins
Allow push --shallow to just work, and fix the testing HTTPServer to not be affected by chdir() calls.
524
        # for us.
3221.19.4 by Ian Clatworthy
shallow -> stacked
525
        out, err = self.run_bzr(['push', '--stacked',
3221.11.13 by Robert Collins
Allow push --shallow to just work, and fix the testing HTTPServer to not be affected by chdir() calls.
526
            self.get_url('published')], working_dir='branch')
7027.4.1 by Jelmer Vernooij
Use StringIOWithEncoding on Python3.
527
        self.assertEqual('', out)
528
        self.assertEqual('Created new stacked branch referring to %s.\n' %
3978.2.2 by Jelmer Vernooij
Write status messages during push to stderr rather than stdout.
529
            trunk_public_url, err)
3221.11.14 by Robert Collins
Refactor to reduce duplication.
530
        self.assertPublished(branch_tree.last_revision(), trunk_public_url)
3221.11.12 by Robert Collins
Basic push --reference support, requires url, slow.
531
3221.19.4 by Ian Clatworthy
shallow -> stacked
532
    def test_push_new_branch_stacked_no_parent(self):
533
        """Pushing with --stacked and no parent branch errors."""
4241.6.8 by Robert Collins, John Arbash Meinel, Ian Clatworthy, Vincent Ladeuil
Add --development6-rich-root, disabling the legacy and unneeded development2 format, and activating the tests for CHK features disabled pending this format. (Robert Collins, John Arbash Meinel, Ian Clatworthy, Vincent Ladeuil)
534
        branch = self.make_branch_and_tree('branch', format='1.9')
3221.19.4 by Ian Clatworthy
shallow -> stacked
535
        # now we do a stacked push, which should fail as the place to refer too
3221.11.15 by Robert Collins
no parent branch causes an error on push --shallow.
536
        # cannot be determined.
537
        out, err = self.run_bzr_error(
3221.19.4 by Ian Clatworthy
shallow -> stacked
538
            ['Could not determine branch to refer to\\.'], ['push', '--stacked',
3221.11.15 by Robert Collins
no parent branch causes an error on push --shallow.
539
            self.get_url('published')], working_dir='branch')
7027.4.1 by Jelmer Vernooij
Use StringIOWithEncoding on Python3.
540
        self.assertEqual('', out)
3221.11.15 by Robert Collins
no parent branch causes an error on push --shallow.
541
        self.assertFalse(self.get_transport('published').has('.'))
542
3606.8.3 by John Arbash Meinel
push doesn't notify because it doesn't notice by default.
543
    def test_push_notifies_default_stacking(self):
3735.1.2 by Robert Collins
Remove 1.5 series dev formats and document development2 a little better.
544
        self.make_branch('stack_on', format='1.6')
6653.6.5 by Jelmer Vernooij
Rename make_bzrdir to make_controldir.
545
        self.make_controldir('.').get_config().set_default_stack_on('stack_on')
3735.1.2 by Robert Collins
Remove 1.5 series dev formats and document development2 a little better.
546
        self.make_branch('from', format='1.6')
3242.3.34 by Aaron Bentley
Add notification of default stacking
547
        out, err = self.run_bzr('push -d from to')
3641.1.1 by John Arbash Meinel
Merge in 1.6rc5 and revert disabling default stack on policy
548
        self.assertContainsRe(err,
7027.4.1 by Jelmer Vernooij
Use StringIOWithEncoding on Python3.
549
                              'Using default stacking branch stack_on at .*')
3242.3.34 by Aaron Bentley
Add notification of default stacking
550
4165.2.1 by Robert Collins
Fix bzr failing to stack when a server requests it and the branch it is pushing from cannot stack but the branch it should stack on can.
551
    def test_push_stacks_with_default_stacking_if_target_is_stackable(self):
552
        self.make_branch('stack_on', format='1.6')
6653.6.5 by Jelmer Vernooij
Rename make_bzrdir to make_controldir.
553
        self.make_controldir('.').get_config().set_default_stack_on('stack_on')
4165.2.1 by Robert Collins
Fix bzr failing to stack when a server requests it and the branch it is pushing from cannot stack but the branch it should stack on can.
554
        self.make_branch('from', format='pack-0.92')
555
        out, err = self.run_bzr('push -d from to')
4420.1.1 by Vincent Ladeuil
Cleanup imports.
556
        b = branch.Branch.open('to')
557
        self.assertEqual('../stack_on', b.get_stacked_on_url())
4165.2.1 by Robert Collins
Fix bzr failing to stack when a server requests it and the branch it is pushing from cannot stack but the branch it should stack on can.
558
559
    def test_push_does_not_change_format_with_default_if_target_cannot(self):
560
        self.make_branch('stack_on', format='pack-0.92')
6653.6.5 by Jelmer Vernooij
Rename make_bzrdir to make_controldir.
561
        self.make_controldir('.').get_config().set_default_stack_on('stack_on')
4165.2.1 by Robert Collins
Fix bzr failing to stack when a server requests it and the branch it is pushing from cannot stack but the branch it should stack on can.
562
        self.make_branch('from', format='pack-0.92')
563
        out, err = self.run_bzr('push -d from to')
4420.1.1 by Vincent Ladeuil
Cleanup imports.
564
        b = branch.Branch.open('to')
6734.1.11 by Jelmer Vernooij
Move UnstackableBranchFormat.
565
        self.assertRaises(branch.UnstackableBranchFormat, b.get_stacked_on_url)
4165.2.1 by Robert Collins
Fix bzr failing to stack when a server requests it and the branch it is pushing from cannot stack but the branch it should stack on can.
566
3904.3.2 by Andrew Bennetts
Blackbox test that triggers the bug. Should get replaced with a unit test.
567
    def test_push_doesnt_create_broken_branch(self):
3904.3.7 by Andrew Bennetts
Comment the new tests.
568
        """Pushing a new standalone branch works even when there's a default
569
        stacking policy at the destination.
570
571
        The new branch will preserve the repo format (even if it isn't the
572
        default for the branch), and will be stacked when the repo format
573
        allows (which means that the branch format isn't necessarly preserved).
574
        """
3904.3.2 by Andrew Bennetts
Blackbox test that triggers the bug. Should get replaced with a unit test.
575
        self.make_repository('repo', shared=True, format='1.6')
576
        builder = self.make_branch_builder('repo/local', format='pack-0.92')
577
        builder.start_series()
6816.2.1 by Jelmer Vernooij
Migrate some build_snapshot code over to having revision_id as keyword argument.
578
        builder.build_snapshot(None, [
6973.13.2 by Jelmer Vernooij
Fix some more tests.
579
            ('add', ('', b'root-id', 'directory', '')),
7027.4.1 by Jelmer Vernooij
Use StringIOWithEncoding on Python3.
580
            ('add', ('filename', b'f-id', 'file', b'content\n'))],
6855.4.1 by Jelmer Vernooij
Yet more bees.
581
            revision_id=b'rev-1')
6883.22.11 by Jelmer Vernooij
merge trunk
582
        builder.build_snapshot([b'rev-1'], [], revision_id=b'rev-2')
583
        builder.build_snapshot([b'rev-2'],
584
            [('modify', ('filename', b'new-content\n'))],
6855.4.1 by Jelmer Vernooij
Yet more bees.
585
            revision_id=b'rev-3')
3904.3.2 by Andrew Bennetts
Blackbox test that triggers the bug. Should get replaced with a unit test.
586
        builder.finish_series()
587
        branch = builder.get_branch()
3904.3.7 by Andrew Bennetts
Comment the new tests.
588
        # Push rev-1 to "trunk", so that we can stack on it.
3904.3.2 by Andrew Bennetts
Blackbox test that triggers the bug. Should get replaced with a unit test.
589
        self.run_bzr('push -d repo/local trunk -r 1')
3904.3.7 by Andrew Bennetts
Comment the new tests.
590
        # Set a default stacking policy so that new branches will automatically
591
        # stack on trunk.
6653.6.5 by Jelmer Vernooij
Rename make_bzrdir to make_controldir.
592
        self.make_controldir('.').get_config().set_default_stack_on('trunk')
3904.3.7 by Andrew Bennetts
Comment the new tests.
593
        # Push rev-2 to a new branch "remote".  It will be stacked on "trunk".
3904.3.2 by Andrew Bennetts
Blackbox test that triggers the bug. Should get replaced with a unit test.
594
        out, err = self.run_bzr('push -d repo/local remote -r 2')
595
        self.assertContainsRe(
7027.4.1 by Jelmer Vernooij
Use StringIOWithEncoding on Python3.
596
            err, 'Using default stacking branch trunk at .*')
3904.3.7 by Andrew Bennetts
Comment the new tests.
597
        # Push rev-3 onto "remote".  If "remote" not stacked and is missing the
598
        # fulltext record for f-id @ rev-1, then this will fail.
3904.3.2 by Andrew Bennetts
Blackbox test that triggers the bug. Should get replaced with a unit test.
599
        out, err = self.run_bzr('push -d repo/local remote -r 3')
600
3848.1.19 by Aaron Bentley
Show log for non-initial push -v
601
    def test_push_verbose_shows_log(self):
602
        tree = self.make_branch_and_tree('source')
603
        tree.commit('rev1')
604
        out, err = self.run_bzr('push -v -d source target')
605
        # initial push contains log
7027.4.1 by Jelmer Vernooij
Use StringIOWithEncoding on Python3.
606
        self.assertContainsRe(out, 'rev1')
3848.1.19 by Aaron Bentley
Show log for non-initial push -v
607
        tree.commit('rev2')
608
        out, err = self.run_bzr('push -v -d source target')
609
        # subsequent push contains log
7027.4.1 by Jelmer Vernooij
Use StringIOWithEncoding on Python3.
610
        self.assertContainsRe(out, 'rev2')
3848.1.19 by Aaron Bentley
Show log for non-initial push -v
611
        # subsequent log is accurate
7027.4.1 by Jelmer Vernooij
Use StringIOWithEncoding on Python3.
612
        self.assertNotContainsRe(out, 'rev1')
3848.1.19 by Aaron Bentley
Show log for non-initial push -v
613
4453.1.2 by Matthew Fuller
Add a test for pushing from subdir.
614
    def test_push_from_subdir(self):
615
        t = self.make_branch_and_tree('tree')
616
        self.build_tree(['tree/dir/', 'tree/dir/file'])
6973.13.2 by Jelmer Vernooij
Fix some more tests.
617
        t.add(['dir', 'dir/file'])
4453.1.2 by Matthew Fuller
Add a test for pushing from subdir.
618
        t.commit('r1')
619
        out, err = self.run_bzr('push ../../pushloc', working_dir='tree/dir')
7027.4.1 by Jelmer Vernooij
Use StringIOWithEncoding on Python3.
620
        self.assertEqual('', out)
621
        self.assertEqual('Created new branch.\n', err)
4453.1.2 by Matthew Fuller
Add a test for pushing from subdir.
622
6159.2.1 by Jelmer Vernooij
Add some tests for 'bzr push --overwrite-tags'.
623
    def test_overwrite_tags(self):
624
        """--overwrite-tags only overwrites tags, not revisions."""
625
        from_tree = self.make_branch_and_tree('from')
7027.10.1 by Jelmer Vernooij
Various blackbox test fixes.
626
        from_tree.branch.tags.set_tag("mytag", b"somerevid")
6159.2.1 by Jelmer Vernooij
Add some tests for 'bzr push --overwrite-tags'.
627
        to_tree = self.make_branch_and_tree('to')
7027.10.1 by Jelmer Vernooij
Various blackbox test fixes.
628
        to_tree.branch.tags.set_tag("mytag", b"anotherrevid")
6159.2.1 by Jelmer Vernooij
Add some tests for 'bzr push --overwrite-tags'.
629
        revid1 = to_tree.commit('my commit')
630
        out = self.run_bzr(['push', '-d', 'from', 'to'])
6614.1.3 by Vincent Ladeuil
Fix assertEquals being deprecated by using assertEqual.
631
        self.assertEqual(out,
6159.2.1 by Jelmer Vernooij
Add some tests for 'bzr push --overwrite-tags'.
632
            ('Conflicting tags:\n    mytag\n', 'No new revisions to push.\n'))
633
        out = self.run_bzr(['push', '-d', 'from', '--overwrite-tags', 'to'])
6614.1.3 by Vincent Ladeuil
Fix assertEquals being deprecated by using assertEqual.
634
        self.assertEqual(out, ('', '1 tag updated.\n'))
635
        self.assertEqual(to_tree.branch.tags.lookup_tag('mytag'),
7045.1.14 by Jelmer Vernooij
More fixes.
636
                          b'somerevid')
6614.1.3 by Vincent Ladeuil
Fix assertEquals being deprecated by using assertEqual.
637
        self.assertEqual(to_tree.branch.last_revision(), revid1)
6159.2.1 by Jelmer Vernooij
Add some tests for 'bzr push --overwrite-tags'.
638
3066.3.1 by jml at canonical
Catch redirects raised by mkdir() in the push command. This is primarily
639
4420.1.1 by Vincent Ladeuil
Cleanup imports.
640
class RedirectingMemoryTransport(memory.MemoryTransport):
3066.3.1 by jml at canonical
Catch redirects raised by mkdir() in the push command. This is primarily
641
3878.4.4 by Vincent Ladeuil
Cleanup.
642
    def mkdir(self, relpath, mode=None):
643
        if self._cwd == '/source/':
644
            raise errors.RedirectRequested(self.abspath(relpath),
645
                                           self.abspath('../target'),
646
                                           is_permanent=True)
647
        elif self._cwd == '/infinite-loop/':
648
            raise errors.RedirectRequested(self.abspath(relpath),
649
                                           self.abspath('../infinite-loop'),
650
                                           is_permanent=True)
3066.3.1 by jml at canonical
Catch redirects raised by mkdir() in the push command. This is primarily
651
        else:
652
            return super(RedirectingMemoryTransport, self).mkdir(
3878.4.4 by Vincent Ladeuil
Cleanup.
653
                relpath, mode)
654
4547.2.2 by Andrew Bennetts
Add test for read_mergeable_from_transport raising NotABundle when TooManyRedirections happens.
655
    def get(self, relpath):
656
        if self.clone(relpath)._cwd == '/infinite-loop/':
657
            raise errors.RedirectRequested(self.abspath(relpath),
658
                                           self.abspath('../infinite-loop'),
659
                                           is_permanent=True)
660
        else:
661
            return super(RedirectingMemoryTransport, self).get(relpath)
662
3878.4.5 by Vincent Ladeuil
Don't use the exception as a parameter for _redirected_to.
663
    def _redirected_to(self, source, target):
3878.4.4 by Vincent Ladeuil
Cleanup.
664
        # We do accept redirections
3878.4.5 by Vincent Ladeuil
Don't use the exception as a parameter for _redirected_to.
665
        return transport.get_transport(target)
3066.3.1 by jml at canonical
Catch redirects raised by mkdir() in the push command. This is primarily
666
667
5017.3.45 by Vincent Ladeuil
Move MemoryServer back into bzrlib.transport.memory as it's needed as soon as a MemoryTransport is used. Add a NEWS entry.
668
class RedirectingMemoryServer(memory.MemoryServer):
3066.3.1 by jml at canonical
Catch redirects raised by mkdir() in the push command. This is primarily
669
4934.3.3 by Martin Pool
Rename Server.setUp to Server.start_server
670
    def start_server(self):
3066.3.1 by jml at canonical
Catch redirects raised by mkdir() in the push command. This is primarily
671
        self._dirs = {'/': None}
672
        self._files = {}
673
        self._locks = {}
674
        self._scheme = 'redirecting-memory+%s:///' % id(self)
3878.4.4 by Vincent Ladeuil
Cleanup.
675
        transport.register_transport(self._scheme, self._memory_factory)
3066.3.3 by jml at canonical
Unregister the test transport in order to be clean and to make test_selftest pass.
676
677
    def _memory_factory(self, url):
678
        result = RedirectingMemoryTransport(url)
679
        result._dirs = self._dirs
680
        result._files = self._files
681
        result._locks = self._locks
682
        return result
683
4934.3.1 by Martin Pool
Rename Server.tearDown to .stop_server
684
    def stop_server(self):
3878.4.4 by Vincent Ladeuil
Cleanup.
685
        transport.unregister_transport(self._scheme, self._memory_factory)
3066.3.1 by jml at canonical
Catch redirects raised by mkdir() in the push command. This is primarily
686
687
4420.1.1 by Vincent Ladeuil
Cleanup imports.
688
class TestPushRedirect(tests.TestCaseWithTransport):
3066.3.1 by jml at canonical
Catch redirects raised by mkdir() in the push command. This is primarily
689
690
    def setUp(self):
6552.1.4 by Vincent Ladeuil
Remaining tests matching setup(self) that can be rewritten with super().
691
        super(TestPushRedirect, self).setUp()
3066.3.1 by jml at canonical
Catch redirects raised by mkdir() in the push command. This is primarily
692
        self.memory_server = RedirectingMemoryServer()
4659.1.2 by Robert Collins
Refactor creation and shutdown of test servers to use a common helper,
693
        self.start_server(self.memory_server)
3066.3.2 by jml at canonical
Add tests to check the handling of TooManyRedirections.
694
        # Make the branch and tree that we'll be pushing.
695
        t = self.make_branch_and_tree('tree')
696
        self.build_tree(['tree/file'])
697
        t.add('file')
698
        t.commit('commit 1')
699
3066.3.1 by jml at canonical
Catch redirects raised by mkdir() in the push command. This is primarily
700
    def test_push_redirects_on_mkdir(self):
701
        """If the push requires a mkdir, push respects redirect requests.
702
703
        This is added primarily to handle lp:/ URI support, so that users can
704
        push to new branches by specifying lp:/ URIs.
705
        """
706
        destination_url = self.memory_server.get_url() + 'source'
3878.4.4 by Vincent Ladeuil
Cleanup.
707
        self.run_bzr(['push', '-d', 'tree', destination_url])
3066.3.1 by jml at canonical
Catch redirects raised by mkdir() in the push command. This is primarily
708
4420.1.1 by Vincent Ladeuil
Cleanup imports.
709
        local_revision = branch.Branch.open('tree').last_revision()
710
        remote_revision = branch.Branch.open(
3066.3.1 by jml at canonical
Catch redirects raised by mkdir() in the push command. This is primarily
711
            self.memory_server.get_url() + 'target').last_revision()
712
        self.assertEqual(remote_revision, local_revision)
3066.3.2 by jml at canonical
Add tests to check the handling of TooManyRedirections.
713
714
    def test_push_gracefully_handles_too_many_redirects(self):
715
        """Push fails gracefully if the mkdir generates a large number of
716
        redirects.
717
        """
718
        destination_url = self.memory_server.get_url() + 'infinite-loop'
719
        out, err = self.run_bzr_error(
720
            ['Too many redirections trying to make %s\\.\n'
721
             % re.escape(destination_url)],
3878.4.4 by Vincent Ladeuil
Cleanup.
722
            ['push', '-d', 'tree', destination_url], retcode=3)
7027.4.1 by Jelmer Vernooij
Use StringIOWithEncoding on Python3.
723
        self.assertEqual('', out)
4420.1.2 by Vincent Ladeuil
Fix bug #284038 by adding a --strict option to push.
724
725
4487.2.6 by Vincent Ladeuil
Fixed as per jam's review.
726
class TestPushStrictMixin(object):
4420.1.2 by Vincent Ladeuil
Fix bug #284038 by adding a --strict option to push.
727
728
    def make_local_branch_and_tree(self):
4487.2.2 by Vincent Ladeuil
Add tests for push --strict against pending merges.
729
        self.tree = self.make_branch_and_tree('local')
6855.4.1 by Jelmer Vernooij
Yet more bees.
730
        self.build_tree_contents([('local/file', b'initial')])
4487.2.2 by Vincent Ladeuil
Add tests for push --strict against pending merges.
731
        self.tree.add('file')
6855.4.1 by Jelmer Vernooij
Yet more bees.
732
        self.tree.commit('adding file', rev_id=b'added')
733
        self.build_tree_contents([('local/file', b'modified')])
734
        self.tree.commit('modify file', rev_id=b'modified')
4487.2.2 by Vincent Ladeuil
Add tests for push --strict against pending merges.
735
736
    def set_config_push_strict(self, value):
6404.6.1 by Vincent Ladeuil
Tests passing for a first rough version of a cached branch config store. The changes here are too invasive and several parallel proposals have been made.
737
        br = branch.Branch.open('local')
6404.6.7 by Vincent Ladeuil
Change set/remove to require a lock for the branch config files.
738
        br.get_config_stack().set('push_strict', value)
4420.1.5 by Vincent Ladeuil
Start implementing jam's review feedback.
739
4487.2.6 by Vincent Ladeuil
Fixed as per jam's review.
740
    _default_command = ['push', '../to']
741
    _default_wd = 'local'
7027.4.1 by Jelmer Vernooij
Use StringIOWithEncoding on Python3.
742
    _default_errors = ['Working tree ".*/local/" has uncommitted '
743
                       'changes \\(See brz status\\)\\.',]
744
    _default_additional_error = 'Use --no-strict to force the push.\n'
745
    _default_additional_warning = 'Uncommitted changes will not be pushed.'
5171.2.3 by Vincent Ladeuil
Fixed as per Andrew's review.
746
4487.2.6 by Vincent Ladeuil
Fixed as per jam's review.
747
4487.2.2 by Vincent Ladeuil
Add tests for push --strict against pending merges.
748
    def assertPushFails(self, args):
5171.2.3 by Vincent Ladeuil
Fixed as per Andrew's review.
749
        out, err = self.run_bzr_error(self._default_errors,
750
                                      self._default_command + args,
751
                                      working_dir=self._default_wd, retcode=3)
752
        self.assertContainsRe(err, self._default_additional_error)
4420.1.5 by Vincent Ladeuil
Start implementing jam's review feedback.
753
5171.2.3 by Vincent Ladeuil
Fixed as per Andrew's review.
754
    def assertPushSucceeds(self, args, with_warning=False, revid_to_push=None):
5147.2.1 by Vincent Ladeuil
Failing tests for bug #519319.
755
        if with_warning:
756
            error_regexes = self._default_errors
757
        else:
758
            error_regexes = []
5171.2.3 by Vincent Ladeuil
Fixed as per Andrew's review.
759
        out, err = self.run_bzr(self._default_command + args,
760
                                working_dir=self._default_wd,
761
                                error_regexes=error_regexes)
762
        if with_warning:
763
            self.assertContainsRe(err, self._default_additional_warning)
764
        else:
765
            self.assertNotContainsRe(err, self._default_additional_warning)
766
        branch_from = branch.Branch.open(self._default_wd)
767
        if revid_to_push is None:
768
            revid_to_push = branch_from.last_revision()
769
        branch_to = branch.Branch.open('to')
770
        repo_to = branch_to.repository
771
        self.assertTrue(repo_to.has_revision(revid_to_push))
772
        self.assertEqual(revid_to_push, branch_to.last_revision())
4420.1.2 by Vincent Ladeuil
Fix bug #284038 by adding a --strict option to push.
773
4487.2.2 by Vincent Ladeuil
Add tests for push --strict against pending merges.
774
4487.2.6 by Vincent Ladeuil
Fixed as per jam's review.
775
class TestPushStrictWithoutChanges(tests.TestCaseWithTransport,
776
                                   TestPushStrictMixin):
4487.2.2 by Vincent Ladeuil
Add tests for push --strict against pending merges.
777
778
    def setUp(self):
779
        super(TestPushStrictWithoutChanges, self).setUp()
780
        self.make_local_branch_and_tree()
781
782
    def test_push_default(self):
783
        self.assertPushSucceeds([])
784
785
    def test_push_strict(self):
786
        self.assertPushSucceeds(['--strict'])
787
788
    def test_push_no_strict(self):
789
        self.assertPushSucceeds(['--no-strict'])
790
791
    def test_push_config_var_strict(self):
792
        self.set_config_push_strict('true')
793
        self.assertPushSucceeds([])
794
795
    def test_push_config_var_no_strict(self):
796
        self.set_config_push_strict('false')
797
        self.assertPushSucceeds([])
798
799
5559.2.2 by Martin Pool
Change to using standard load_tests_apply_scenarios.
800
strict_push_change_scenarios = [
801
    ('uncommitted',
802
        dict(_changes_type= '_uncommitted_changes')),
803
    ('pending-merges',
804
        dict(_changes_type= '_pending_merges')),
805
    ('out-of-sync-trees',
806
        dict(_changes_type= '_out_of_sync_trees')),
807
    ]
808
809
4487.2.6 by Vincent Ladeuil
Fixed as per jam's review.
810
class TestPushStrictWithChanges(tests.TestCaseWithTransport,
811
                                TestPushStrictMixin):
4487.2.2 by Vincent Ladeuil
Add tests for push --strict against pending merges.
812
5559.2.2 by Martin Pool
Change to using standard load_tests_apply_scenarios.
813
    scenarios = strict_push_change_scenarios 
4487.2.3 by Vincent Ladeuil
--strict is meaningless when --revision is specified.
814
    _changes_type = None # Set by load_tests
4487.2.2 by Vincent Ladeuil
Add tests for push --strict against pending merges.
815
816
    def setUp(self):
817
        super(TestPushStrictWithChanges, self).setUp()
4721.2.6 by Vincent Ladeuil
More agressive test sharing between push and dpush.
818
        # Apply the changes defined in load_tests: one of _uncommitted_changes,
819
        # _pending_merges or _out_of_sync_trees
4487.2.3 by Vincent Ladeuil
--strict is meaningless when --revision is specified.
820
        getattr(self, self._changes_type)()
4487.2.2 by Vincent Ladeuil
Add tests for push --strict against pending merges.
821
4487.2.3 by Vincent Ladeuil
--strict is meaningless when --revision is specified.
822
    def _uncommitted_changes(self):
4487.2.2 by Vincent Ladeuil
Add tests for push --strict against pending merges.
823
        self.make_local_branch_and_tree()
824
        # Make a change without committing it
6855.4.1 by Jelmer Vernooij
Yet more bees.
825
        self.build_tree_contents([('local/file', b'in progress')])
4487.2.2 by Vincent Ladeuil
Add tests for push --strict against pending merges.
826
4487.2.3 by Vincent Ladeuil
--strict is meaningless when --revision is specified.
827
    def _pending_merges(self):
4487.2.2 by Vincent Ladeuil
Add tests for push --strict against pending merges.
828
        self.make_local_branch_and_tree()
829
        # Create 'other' branch containing a new file
6653.6.1 by Jelmer Vernooij
Rename a number of attributes from bzrdir to controldir.
830
        other_bzrdir = self.tree.controldir.sprout('other')
4487.2.2 by Vincent Ladeuil
Add tests for push --strict against pending merges.
831
        other_tree = other_bzrdir.open_workingtree()
6855.4.1 by Jelmer Vernooij
Yet more bees.
832
        self.build_tree_contents([('other/other-file', b'other')])
4487.2.2 by Vincent Ladeuil
Add tests for push --strict against pending merges.
833
        other_tree.add('other-file')
6855.4.1 by Jelmer Vernooij
Yet more bees.
834
        other_tree.commit('other commit', rev_id=b'other')
4487.2.2 by Vincent Ladeuil
Add tests for push --strict against pending merges.
835
        # Merge and revert, leaving a pending merge
836
        self.tree.merge_from_branch(other_tree.branch)
837
        self.tree.revert(filenames=['other-file'], backups=False)
838
4487.2.6 by Vincent Ladeuil
Fixed as per jam's review.
839
    def _out_of_sync_trees(self):
840
        self.make_local_branch_and_tree()
841
        self.run_bzr(['checkout', '--lightweight', 'local', 'checkout'])
842
        # Make a change and commit it
6855.4.1 by Jelmer Vernooij
Yet more bees.
843
        self.build_tree_contents([('local/file', b'modified in local')])
844
        self.tree.commit('modify file', rev_id=b'modified-in-local')
4487.2.6 by Vincent Ladeuil
Fixed as per jam's review.
845
        # Exercise commands from the checkout directory
846
        self._default_wd = 'checkout'
847
        self._default_errors = ["Working tree is out of date, please run"
6798.1.1 by Jelmer Vernooij
Properly escape backslashes.
848
                                " 'brz update'\\.",]
4487.2.6 by Vincent Ladeuil
Fixed as per jam's review.
849
4487.2.2 by Vincent Ladeuil
Add tests for push --strict against pending merges.
850
    def test_push_default(self):
5147.2.1 by Vincent Ladeuil
Failing tests for bug #519319.
851
        self.assertPushSucceeds([], with_warning=True)
4420.1.5 by Vincent Ladeuil
Start implementing jam's review feedback.
852
4487.2.3 by Vincent Ladeuil
--strict is meaningless when --revision is specified.
853
    def test_push_with_revision(self):
7045.3.1 by Jelmer Vernooij
Fix another ~500 tests.
854
        self.assertPushSucceeds(['-r', 'revid:added'], revid_to_push=b'added')
4487.2.3 by Vincent Ladeuil
--strict is meaningless when --revision is specified.
855
856
    def test_push_no_strict(self):
4487.2.2 by Vincent Ladeuil
Add tests for push --strict against pending merges.
857
        self.assertPushSucceeds(['--no-strict'])
4420.1.2 by Vincent Ladeuil
Fix bug #284038 by adding a --strict option to push.
858
859
    def test_push_strict_with_changes(self):
4487.2.2 by Vincent Ladeuil
Add tests for push --strict against pending merges.
860
        self.assertPushFails(['--strict'])
4420.1.5 by Vincent Ladeuil
Start implementing jam's review feedback.
861
862
    def test_push_respect_config_var_strict(self):
4487.2.2 by Vincent Ladeuil
Add tests for push --strict against pending merges.
863
        self.set_config_push_strict('true')
864
        self.assertPushFails([])
4420.1.5 by Vincent Ladeuil
Start implementing jam's review feedback.
865
4420.1.6 by Vincent Ladeuil
Fixed as per John's review feedback.
866
    def test_push_bogus_config_var_ignored(self):
4487.2.2 by Vincent Ladeuil
Add tests for push --strict against pending merges.
867
        self.set_config_push_strict("I don't want you to be strict")
5147.2.1 by Vincent Ladeuil
Failing tests for bug #519319.
868
        self.assertPushSucceeds([], with_warning=True)
4420.1.6 by Vincent Ladeuil
Fixed as per John's review feedback.
869
4420.1.5 by Vincent Ladeuil
Start implementing jam's review feedback.
870
    def test_push_no_strict_command_line_override_config(self):
4487.2.2 by Vincent Ladeuil
Add tests for push --strict against pending merges.
871
        self.set_config_push_strict('yES')
872
        self.assertPushFails([])
873
        self.assertPushSucceeds(['--no-strict'])
4420.1.5 by Vincent Ladeuil
Start implementing jam's review feedback.
874
875
    def test_push_strict_command_line_override_config(self):
4487.2.2 by Vincent Ladeuil
Add tests for push --strict against pending merges.
876
        self.set_config_push_strict('oFF')
877
        self.assertPushFails(['--strict'])
878
        self.assertPushSucceeds([])
4925.1.1 by Jelmer Vernooij
Print a proper error when attempting to push to a foreign VCS for which
879
880
5283.4.5 by Martin Pool
Update remaining subclasses of ExternalBase
881
class TestPushForeign(tests.TestCaseWithTransport):
4925.1.1 by Jelmer Vernooij
Print a proper error when attempting to push to a foreign VCS for which
882
883
    def setUp(self):
884
        super(TestPushForeign, self).setUp()
885
        test_foreign.register_dummy_foreign_for_test(self)
886
887
    def make_dummy_builder(self, relpath):
888
        builder = self.make_branch_builder(
889
            relpath, format=test_foreign.DummyForeignVcsDirFormat())
6816.2.1 by Jelmer Vernooij
Migrate some build_snapshot code over to having revision_id as keyword argument.
890
        builder.build_snapshot(None,
6855.4.1 by Jelmer Vernooij
Yet more bees.
891
            [('add', ('', b'TREE_ROOT', 'directory', None)),
7045.1.14 by Jelmer Vernooij
More fixes.
892
             ('add', ('foo', b'fooid', 'file', b'bar'))],
6855.4.1 by Jelmer Vernooij
Yet more bees.
893
            revision_id=b'revid')
4925.1.1 by Jelmer Vernooij
Print a proper error when attempting to push to a foreign VCS for which
894
        return builder
895
896
    def test_no_roundtripping(self):
897
        target_branch = self.make_dummy_builder('dp').get_branch()
898
        source_tree = self.make_branch_and_tree("dc")
899
        output, error = self.run_bzr("push -d dc dp", retcode=3)
6614.1.3 by Vincent Ladeuil
Fix assertEquals being deprecated by using assertEqual.
900
        self.assertEqual("", output)
6622.1.29 by Jelmer Vernooij
Fix some more tests.
901
        self.assertEqual(error, "brz: ERROR: It is not possible to losslessly"
7143.13.2 by Jelmer Vernooij
Fix test.
902
            " push to dummy. You may want to use --lossy.\n")
6175.2.4 by Vincent Ladeuil
Add script tests and documentation.
903
904
905
class TestPushOutput(script.TestCaseWithTransportAndScript):
906
907
    def test_push_log_format(self):
908
        self.run_script("""
6622.1.29 by Jelmer Vernooij
Fix some more tests.
909
            $ brz init trunk
6175.2.4 by Vincent Ladeuil
Add script tests and documentation.
910
            Created a standalone tree (format: 2a)
911
            $ cd trunk
912
            $ echo foo > file
6622.1.29 by Jelmer Vernooij
Fix some more tests.
913
            $ brz add
6175.2.4 by Vincent Ladeuil
Add script tests and documentation.
914
            adding file
6622.1.29 by Jelmer Vernooij
Fix some more tests.
915
            $ brz commit -m 'we need some foo'
6175.2.4 by Vincent Ladeuil
Add script tests and documentation.
916
            2>Committing to:...trunk/
917
            2>added file
918
            2>Committed revision 1.
6622.1.29 by Jelmer Vernooij
Fix some more tests.
919
            $ brz init ../feature
6175.2.4 by Vincent Ladeuil
Add script tests and documentation.
920
            Created a standalone tree (format: 2a)
6622.1.29 by Jelmer Vernooij
Fix some more tests.
921
            $ brz push -v ../feature -Olog_format=line
6175.2.4 by Vincent Ladeuil
Add script tests and documentation.
922
            Added Revisions:
923
            1: jrandom@example.com ...we need some foo
924
            2>All changes applied successfully.
925
            2>Pushed up to revision 1.
926
            """)
6519.3.1 by Neil Martinsen-Burrell
when pushing specific revision, create working tree at that revision
927
928
    def test_push_with_revspec(self):
929
        self.run_script("""
6622.1.29 by Jelmer Vernooij
Fix some more tests.
930
            $ brz init-repo .
6519.3.1 by Neil Martinsen-Burrell
when pushing specific revision, create working tree at that revision
931
            Shared repository with trees (format: 2a)
932
            Location:
933
              shared repository: .
6622.1.29 by Jelmer Vernooij
Fix some more tests.
934
            $ brz init trunk
6519.3.1 by Neil Martinsen-Burrell
when pushing specific revision, create working tree at that revision
935
            Created a repository tree (format: 2a)
936
            Using shared repository...
937
            $ cd trunk
6622.1.29 by Jelmer Vernooij
Fix some more tests.
938
            $ brz commit -m 'first rev' --unchanged
6519.3.1 by Neil Martinsen-Burrell
when pushing specific revision, create working tree at that revision
939
            2>Committing to:...trunk/
940
            2>Committed revision 1.
941
            $ echo foo > file
6622.1.29 by Jelmer Vernooij
Fix some more tests.
942
            $ brz add
6519.3.1 by Neil Martinsen-Burrell
when pushing specific revision, create working tree at that revision
943
            adding file
6622.1.29 by Jelmer Vernooij
Fix some more tests.
944
            $ brz commit -m 'we need some foo'
6519.3.1 by Neil Martinsen-Burrell
when pushing specific revision, create working tree at that revision
945
            2>Committing to:...trunk/
946
            2>added file
947
            2>Committed revision 2.
6622.1.29 by Jelmer Vernooij
Fix some more tests.
948
            $ brz push -r 1 ../other
6519.3.1 by Neil Martinsen-Burrell
when pushing specific revision, create working tree at that revision
949
            2>Created new branch.
6622.1.29 by Jelmer Vernooij
Fix some more tests.
950
            $ brz st ../other # checking that file is not created (#484516)
6519.3.1 by Neil Martinsen-Burrell
when pushing specific revision, create working tree at that revision
951
            """)