Skip to content
Snippets Groups Projects
Commit 86938abb authored by Georges Racinet's avatar Georges Racinet
Browse files

Test for protection of MR targeting topics

At this stage we only want to prevent unwanted publication.
See heptapod#284 for future actual support.
parent 1c8d7921
No related branches found
No related tags found
1 merge request!35New tests for 0.13.0
Pipeline #6456 passed
......@@ -517,6 +517,44 @@
"Commit summaries don't contain %r" % expected)
@parametrize('fast_forward', ['no', 'required'])
def test_mergerequest_api_target_topic(test_project, tmpdir, fast_forward):
"""Accepting the MR via API with rebase scenario.
see `test_mergerequest_api()` for relevance of API call for testing.
Non-ASCII side of this test:
with the MR created through the webdriver, it gets title and
description, which end up in the merge commit message.
"""
if fast_forward == 'required':
test_project.webdriver_update_merge_request_settings(merge_method='ff')
default_url = test_project.owner_basic_auth_url
repo_path = tmpdir.join('repo')
repo = hg.LocalRepo.init(repo_path, default_url=default_url)
target_topic = prepare_topic(repo)
source_topic = 'zetop'
branching_point = target_topic if fast_forward == 'required' else 'default'
repo.hg('up', branching_point)
repo.hg('topic', source_topic)
repo_path.join('foo').write("bar")
repo.hg('commit', '-Am', "something else")
repo.hg('push')
mr_id = test_project.api_create_merge_request(
source='topic/default/' + source_topic,
target='topic/default/' + target_topic,
title="targeting a topic")
test_project.wait_assert_merge_request(
mr_id, lambda mr: mr.get('merge_status') == 'cannot_be_merged',
msg="Mergeability wrong or still unknown")
resp = api_accept_merge_request(test_project, mr_id, check_merged=False)
assert resp.status_code >= 400 and resp.status_code < 500
@parametrize('push_proto', ['ssh', 'http'])
def test_mergerequest_api_explicit_merge_message(test_project, tmpdir,
push_proto):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment