30
from bzrlib.tests import (
35
from bzrlib.tests.blackbox import test_push
38
def load_tests(standard_tests, module, loader):
39
"""Multiply tests for the dpush command."""
40
result = loader.suiteClass()
42
# one for each king of change
43
changes_tests, remaining_tests = tests.split_suite_by_condition(
44
standard_tests, tests.condition_isinstance((
45
TestDpushStrictWithChanges,
49
dict(_changes_type= '_uncommitted_changes')),
51
dict(_changes_type= '_pending_merges')),
53
dict(_changes_type= '_out_of_sync_trees')),
55
tests.multiply_tests(changes_tests, changes_scenarios, result)
56
# No parametrization for the remaining tests
57
result.addTests(remaining_tests)
62
class TestDpush(tests.TestCaseWithTransport):
23
from bzrlib.branch import (
26
from bzrlib.bzrdir import (
29
from bzrlib.foreign import (
33
from bzrlib.repository import (
36
from bzrlib.tests.blackbox import (
39
from bzrlib.tests.test_foreign import (
40
DummyForeignVcsDirFormat,
44
class TestDpush(ExternalBase):
47
BzrDirFormat.register_control_format(DummyForeignVcsDirFormat)
48
self.addCleanup(self.unregister_format)
65
49
super(TestDpush, self).setUp()
66
test_foreign.register_dummy_foreign_for_test(self)
51
def unregister_format(self):
53
BzrDirFormat.unregister_control_format(DummyForeignVcsDirFormat)
68
57
def make_dummy_builder(self, relpath):
69
builder = self.make_branch_builder(
70
relpath, format=test_foreign.DummyForeignVcsDirFormat())
71
builder.build_snapshot('revid', None,
58
builder = self.make_branch_builder(relpath,
59
format=DummyForeignVcsDirFormat())
60
builder.build_snapshot('revid', None,
72
61
[('add', ('', 'TREE_ROOT', 'directory', None)),
73
62
('add', ('foo', 'fooid', 'file', 'bar'))])
78
67
source_tree = self.make_branch_and_tree("dc")
79
68
output, error = self.run_bzr("dpush -d dc dp", retcode=3)
80
69
self.assertEquals("", output)
81
self.assertContainsRe(error, 'in the same VCS, lossy push not necessary. Please use regular push.')
70
self.assertContainsRe(error, 'not a foreign branch, use regular push')
83
72
def test_dpush(self):
84
73
branch = self.make_dummy_builder('d').get_branch()
87
76
self.build_tree(("dc/foo", "blaaaa"))
88
77
dc.open_workingtree().commit('msg')
90
script.run_script(self, """
92
2>Pushed up to revision 2.
79
self.check_output("", "dpush -d dc d")
80
self.check_output("", "status dc")
96
82
def test_dpush_new(self):
97
b = self.make_dummy_builder('d').get_branch()
83
branch = self.make_dummy_builder('d').get_branch()
99
dc = b.bzrdir.sprout('dc', force_new_repo=True)
85
dc = branch.bzrdir.sprout('dc', force_new_repo=True)
100
86
self.build_tree_contents([("dc/foofile", "blaaaa")])
101
87
dc_tree = dc.open_workingtree()
102
88
dc_tree.add("foofile")
103
89
dc_tree.commit("msg")
105
script.run_script(self, '''
91
self.check_output("", "dpush -d dc d")
92
self.check_output("2\n", "revno dc")
93
self.check_output("", "status dc")
112
95
def test_dpush_wt_diff(self):
113
b = self.make_dummy_builder('d').get_branch()
96
branch = self.make_dummy_builder('d').get_branch()
115
dc = b.bzrdir.sprout('dc', force_new_repo=True)
98
dc = branch.bzrdir.sprout('dc', force_new_repo=True)
116
99
self.build_tree_contents([("dc/foofile", "blaaaa")])
117
100
dc_tree = dc.open_workingtree()
118
101
dc_tree.add("foofile")
119
102
newrevid = dc_tree.commit('msg')
121
104
self.build_tree_contents([("dc/foofile", "blaaaal")])
122
script.run_script(self, '''
123
$ bzr dpush -d dc d --no-strict
105
self.check_output("", "dpush -d dc d")
125
106
self.assertFileEqual("blaaaal", "dc/foofile")
126
# if the dummy vcs wasn't that dummy we could uncomment the line below
127
# self.assertFileEqual("blaaaa", "d/foofile")
128
script.run_script(self, '''
107
self.check_output('modified:\n foofile\n', "status dc")
134
109
def test_diverged(self):
135
110
builder = self.make_dummy_builder('d')
137
b = builder.get_branch()
112
branch = builder.get_branch()
139
dc = b.bzrdir.sprout('dc', force_new_repo=True)
114
dc = branch.bzrdir.sprout('dc', force_new_repo=True)
140
115
dc_tree = dc.open_workingtree()
142
117
self.build_tree_contents([("dc/foo", "bar")])
148
123
output, error = self.run_bzr("dpush -d dc d", retcode=3)
149
124
self.assertEquals(output, "")
150
125
self.assertContainsRe(error, "have diverged")
153
class TestDpushStrictMixin(object):
156
test_foreign.register_dummy_foreign_for_test(self)
157
# Create an empty branch where we will be able to push
158
self.foreign = self.make_branch(
159
'to', format=test_foreign.DummyForeignVcsDirFormat())
161
def set_config_push_strict(self, value):
162
# set config var (any of bazaar.conf, locations.conf, branch.conf
164
conf = self.tree.branch.get_config()
165
conf.set_user_option('dpush_strict', value)
167
_default_command = ['dpush', '../to']
170
class TestDpushStrictWithoutChanges(TestDpushStrictMixin,
171
test_push.TestPushStrictWithoutChanges):
174
test_push.TestPushStrictWithoutChanges.setUp(self)
175
TestDpushStrictMixin.setUp(self)
178
class TestDpushStrictWithChanges(TestDpushStrictMixin,
179
test_push.TestPushStrictWithChanges):
181
_changes_type = None # Set by load_tests
184
test_push.TestPushStrictWithChanges.setUp(self)
185
TestDpushStrictMixin.setUp(self)
187
def test_push_with_revision(self):
188
raise tests.TestNotApplicable('dpush does not handle --revision')