372
374
tree_d.branch.base, patch_type='diff',
373
375
public_branch=tree_a.branch.base)
377
def test_disk_name(self):
378
tree_a, tree_b, branch_c = self.make_trees()
379
tree_a.branch.nick = 'fancy <name>'
380
md = self.from_objects(tree_a.branch.repository, 'rev2a', 500, 120,
382
self.assertEqual('fancy-name-2', md.get_disk_name(tree_a.branch))
384
def test_disk_name_old_revno(self):
385
tree_a, tree_b, branch_c = self.make_trees()
386
tree_a.branch.nick = 'fancy-name'
387
md = self.from_objects(tree_a.branch.repository, 'rev1', 500, 120,
389
self.assertEqual('fancy-name-1', md.get_disk_name(tree_a.branch))
375
391
def test_generate_patch(self):
376
392
tree_a, tree_b, branch_c = self.make_trees()
377
393
md2 = self.from_objects(tree_a.branch.repository, 'rev2a', 500, 120,
553
569
revision = md.install_revisions(tree_b.branch.repository)
554
570
self.assertEqual('rev2a', revision)
572
def test_use_submit_for_missing_dependency(self):
573
tree_a, tree_b, branch_c = self.make_trees()
574
branch_c.pull(tree_a.branch)
575
self.build_tree_contents([('tree_a/file', 'content_q\ncontent_r\n')])
576
tree_a.commit('rev3a', rev_id='rev3a')
577
md = self.from_objects(tree_a.branch.repository, 'rev3a', 500, 36,
578
branch_c.base, base_revision_id='rev2a')
579
revision = md.install_revisions(tree_b.branch.repository)
581
def test_handle_target_not_a_branch(self):
582
tree_a, tree_b, branch_c = self.make_trees()
583
branch_c.pull(tree_a.branch)
584
self.build_tree_contents([('tree_a/file', 'content_q\ncontent_r\n')])
585
tree_a.commit('rev3a', rev_id='rev3a')
586
md = self.from_objects(tree_a.branch.repository, 'rev3a', 500, 36,
587
branch_c.base, base_revision_id='rev2a')
588
md.target_branch = self.get_url('not-a-branch')
589
self.assertRaises(errors.TargetNotBranch, md.install_revisions,
590
tree_b.branch.repository)
557
593
class TestMergeDirective1Branch(tests.TestCaseWithTransport,
558
594
TestMergeDirectiveBranch):
565
601
def from_objects(self, repository, revision_id, time, timezone,
566
602
target_branch, patch_type='bundle', local_target_branch=None,
567
public_branch=None, message=None):
568
return merge_directive.MergeDirective.from_objects(
569
repository, revision_id, time, timezone, target_branch,
570
patch_type, local_target_branch, public_branch, message)
603
public_branch=None, message=None, base_revision_id=None):
604
if base_revision_id is not None:
605
raise tests.TestNotApplicable('This format does not support'
607
repository.lock_write()
609
return merge_directive.MergeDirective.from_objects( repository,
610
revision_id, time, timezone, target_branch, patch_type,
611
local_target_branch, public_branch, message)
572
615
def make_merge_directive(self, revision_id, testament_sha1, time, timezone,
573
616
target_branch, patch=None, patch_type=None,
590
633
public_branch=None, message=None, base_revision_id=None):
591
634
include_patch = (patch_type in ('bundle', 'diff'))
592
635
include_bundle = (patch_type == 'bundle')
593
assert patch_type in ('bundle', 'diff', None)
636
self.assertTrue(patch_type in ('bundle', 'diff', None))
594
637
return merge_directive.MergeDirective2.from_objects(
595
638
repository, revision_id, time, timezone, target_branch,
596
639
include_patch, include_bundle, local_target_branch, public_branch,
656
699
self.assertEqual('booga', md.patch)
657
700
self.assertEqual('diff', md.patch_type)
658
701
self.assertEqual('Hi mom!', md.message)
704
class TestHook(object):
705
"""Hook callback for test purposes."""
707
def __init__(self, result=None):
711
def __call__(self, params):
712
self.calls.append(params)
716
class HookMailClient(mail_client.MailClient):
717
"""Mail client for testing hooks."""
719
def __init__(self, config):
723
def compose(self, prompt, to, subject, attachment, mime_subtype,
724
extension, basename=None, body=None):
728
class TestBodyHook(tests.TestCaseWithTransport):
730
def compose_with_hooks(self, test_hooks, supports_body=True):
731
client = HookMailClient({})
732
client.supports_body = supports_body
733
for test_hook in test_hooks:
734
merge_directive.MergeDirective.hooks.install_named_hook(
735
'merge_request_body', test_hook, 'test')
736
tree = self.make_branch_and_tree('foo')
738
directive = merge_directive.MergeDirective2(
739
tree.branch.last_revision(), 'sha', 0, 0, 'sha',
740
source_branch=tree.branch.base,
741
base_revision_id=tree.branch.last_revision(),
742
message='This code rox')
743
directive.compose_merge_request(client, 'jrandom@example.com',
745
return client, directive
747
def test_no_supports_body(self):
748
test_hook = TestHook('foo')
749
old_warn = trace.warning
752
warnings.append(args)
755
client, directive = self.compose_with_hooks([test_hook],
758
trace.warning = old_warn
759
self.assertEqual(0, len(test_hook.calls))
760
self.assertEqual(('Cannot run merge_request_body hooks because mail'
761
' client %s does not support message bodies.',
762
'HookMailClient'), warnings[0])
764
def test_body_hook(self):
765
test_hook = TestHook('foo')
766
client, directive = self.compose_with_hooks([test_hook])
767
self.assertEqual(1, len(test_hook.calls))
768
self.assertEqual('foo', client.body)
769
params = test_hook.calls[0]
770
self.assertIsInstance(params,
771
merge_directive.MergeRequestBodyParams)
772
self.assertIs(None, params.body)
773
self.assertIs(None, params.orig_body)
774
self.assertEqual('jrandom@example.com', params.to)
775
self.assertEqual('[MERGE] This code rox', params.subject)
776
self.assertEqual(directive, params.directive)
777
self.assertEqual('foo-1', params.basename)
779
def test_body_hook_chaining(self):
780
test_hook1 = TestHook('foo')
781
test_hook2 = TestHook('bar')
782
client = self.compose_with_hooks([test_hook1, test_hook2])[0]
783
self.assertEqual(None, test_hook1.calls[0].body)
784
self.assertEqual(None, test_hook1.calls[0].orig_body)
785
self.assertEqual('foo', test_hook2.calls[0].body)
786
self.assertEqual(None, test_hook2.calls[0].orig_body)
787
self.assertEqual('bar', client.body)