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

New tests for MR creation prompt on alternate branches

- the link should be to create a MR for the natural
  target branch
- the prompt should not fail if the natural target named
  branch doesn't exist – no prompt in that case
parent 75573c22
No related branches found
No related tags found
No related merge requests found
Pipeline #5435 failed
import json
import pytest
import time
from urllib.parse import parse_qs
from .utils import needs
from .utils.reverse_calls import HttpListener
......@@ -482,6 +483,67 @@
assert branch_titles == {'branch/default': 'Commit 1'}
def test_topic_new_mr_prompt_non_default_target(test_project, tmpdir):
repo_path = tmpdir.join('repo1')
url = test_project.owner_basic_auth_url
repo = LocalRepo.init(repo_path)
repo_path.join('foo').write('foo0')
repo.hg('commit', '-Am', "Commit 0")
repo.hg('branch', 'other')
repo_path.join('foo').write('foo1')
repo.hg('commit', '-Am', "Commit 1")
# avoid topic being default GitLab branch by pushing named branches first
repo.hg('push', '--publish', url)
repo.hg('topic', 'zetop')
repo_path.join('foo').write('foo2')
repo.hg('commit', '-Am', "Commit 2")
out = repo.hg('push', url)
# checking consistency
assert test_project.api_branch_titles() == {
'branch/default': 'Commit 0',
'branch/other': 'Commit 1',
'topic/other/zetop': 'Commit 2',
}
for line in out.splitlines():
if '/merge_requests/new' in line:
assert parse_qs(line.split('?')[1]) == {
'merge_request[source_branch]': ['topic/other/zetop'],
'merge_request[target_branch]': ['branch/other']}
break
else:
raise AssertionError(
"No Merge Request creation prompt seen in push output")
def test_topic_new_mr_prompt_unknown_target(test_project, tmpdir):
"""The topic relates to a branch that has no non-topical changeset yet."""
repo_path = tmpdir.join('repo1')
url = test_project.owner_basic_auth_url
repo = LocalRepo.init(repo_path)
repo_path.join('foo').write('foo0')
repo.hg('commit', '-Am', "Commit 0")
repo.hg('branch', 'other')
# avoid topic being default GitLab branch by pushing named branches first
repo.hg('push', '--publish', url)
repo.hg('topic', 'zetop')
repo_path.join('foo').write('footop')
repo.hg('commit', '-Am', "In topic")
out = repo.hg('push', url)
# checking consistency
assert test_project.api_branch_titles() == {
'branch/default': 'Commit 0',
'topic/other/zetop': 'In topic',
}
assert not any('/merge_requests/new' in line for line in out.splitlines())
def test_internal_force_push_default_branch(test_project, tmpdir):
"""
Although protected, but still accept internal Git force-pushes.
......
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