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

Moved topics related tests to their own module

parent 4f25098a
No related branches found
No related tags found
1 merge request!30Stacked topics scenarios
import json
import pytest
import time
from urllib.parse import parse_qs
from .utils import needs
from .utils.reverse_calls import HttpListener
from .utils.hg import LocalRepo
from .utils.project import (
extract_gitlab_branch_titles,
......@@ -5,10 +3,9 @@
from .utils import needs
from .utils.reverse_calls import HttpListener
from .utils.hg import LocalRepo
from .utils.project import (
extract_gitlab_branch_titles,
ProjectAccess,
)
......@@ -76,50 +73,6 @@
assert hgsha[:11] in webdriver.title
@parametrize('pull_type', ('pull-rev', 'pull-full'))
def test_gate_topics(test_project, tmpdir, pull_type):
"""
Clients without the topic extension won't get them unless explicitely
"""
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('phase', '-p', ".")
repo.hg('topic', 'zetop')
repo_path.join('foo').write('foo1')
repo.hg('commit', '-Am', "Commit 1")
topic_sha = repo.hg('log', '-r', '.', '-T', '{node}')
repo.hg('push', url)
# let's control what GitLab really sees
assert test_project.api_branch_titles() == {
'branch/default': 'Commit 0',
'topic/default/zetop': 'Commit 1',
}
clone = LocalRepo.init(tmpdir.join('clone'))
clone.hgrc_append_lines(("", "[extensions]", "topic=!"))
clone.hg('pull', url)
log = clone.hg('log', '-T', '{desc}:{phase}\n')
assert log.splitlines() == ['Commit 0:public']
# but requiring a topical changeset by its SHA with just the topic
# extension (not evolve) works
cmd = ['pull']
if pull_type == 'pull-rev':
cmd.extend(('-r', topic_sha))
cmd .extend((url,
'--config', 'extensions.topic=',
'--config', 'extensions.evolve=!'))
clone.hg(*cmd)
log = clone.hg('log', '-T', '{desc}:{phase}\n')
assert log .splitlines() == ['Commit 1:draft', 'Commit 0:public']
@needs.reverse_call
def test_web_hook(tmpdir, test_project):
"""Setup a webhook, listen to it, push and record the resulting POST
......@@ -268,55 +221,6 @@
assert log == 'Commit 2:draft:zetop'
def test_push_topic_permission(test_project, tmpdir):
"""Even for topic changesets, DEVELOPER is the minimal perm to push.
"""
repo_path = tmpdir.join('repo1')
owner_url = test_project.owner_basic_auth_url
basic_user_url = test_project.basic_auth_url(user_name='test_basic')
# a first public changeset, pushed as the owner
repo = LocalRepo.init(repo_path)
repo_path.join('foo').write('foo0')
repo.hg('commit', '-Am', "Commit 0")
repo.hg('phase', '-p', ".")
repo.hg('push', owner_url)
repo.hg('topic', 'zetop')
repo_path.join('foo').write('foo1')
repo.hg('commit', '-Am', "Commit 1")
# basic user is not member of the project
code, _, err = repo.hg_unchecked('push', basic_user_url)
assert code != 0
assert '404' in err # can't even see it
# basic user is Guest of the project
test_project.grant_member_access(user_name='test_basic',
level=ProjectAccess.GUEST)
code, _, err = repo.hg_unchecked('push', basic_user_url)
assert code != 0
assert '403' in err
# basic user is Reporter of the project
test_project.grant_member_access(user_name='test_basic',
level=ProjectAccess.REPORTER)
code, _, err = repo.hg_unchecked('push', basic_user_url)
assert code != 0
assert '403' in err
# finally basic user is Developer
test_project.grant_member_access(user_name='test_basic',
level=ProjectAccess.DEVELOPER)
repo.hg('push', basic_user_url)
# let's control what GitLab really sees
assert test_project.api_branch_titles() == {
'branch/default': 'Commit 0',
'topic/default/zetop': 'Commit 1',
}
def test_push_tags_branch_heads(test_project, tmpdir):
repo_path = tmpdir.join('repo1')
......@@ -348,202 +252,6 @@
assert tags['other-1.0']['commit']['title'] == "Commit 2"
def test_topic_rename(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('phase', '-p', ".")
repo.hg('push', url) # avoid topic being default GitLab branch
repo.hg('topic', 'zetop')
repo_path.join('foo').write('foo1')
repo.hg('commit', '-Am', "Commit 1")
repo.hg('push', url)
branches = test_project.api_branches()
assert set(branches) == {'branch/default', 'topic/default/zetop'}
assert branches['branch/default']['commit']['title'] == 'Commit 0'
assert branches['topic/default/zetop']['commit']['title'] == 'Commit 1'
repo.hg('topic', '-r', '.', 'newtopname')
repo.hg('push', url)
branches = test_project.api_branches()
assert set(branches) == {'branch/default', 'topic/default/newtopname'}
assert branches['branch/default']['commit']['title'] == 'Commit 0'
assert (branches['topic/default/newtopname']['commit']['title']
== 'Commit 1')
def test_topic_rename_partial(test_project, tmpdir):
"""We don't want to prune a topic if it hasn't been fully renamed"""
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('phase', '-p', ".")
repo.hg('push', url) # avoid topic being default GitLab branch
repo.hg('topic', 'zetop')
repo_path.join('foo').write('foo1')
repo.hg('commit', '-Am', "Commit 1")
repo_path.join('foo').write('foo2')
repo.hg('commit', '-Am', "Commit 2")
repo.hg('push', url)
branches = test_project.api_branches()
assert set(branches) == {'branch/default', 'topic/default/zetop'}
assert branches['branch/default']['commit']['title'] == 'Commit 0'
assert branches['topic/default/zetop']['commit']['title'] == 'Commit 2'
repo.hg('topic', '-r', '.', 'newtopname')
repo.hg('push', url)
branches = test_project.api_branches()
assert set(branches) == {'branch/default',
'topic/default/zetop',
'topic/default/newtopname'}
assert branches['branch/default']['commit']['title'] == 'Commit 0'
assert branches['topic/default/zetop']['commit']['title'] == 'Commit 1'
assert (branches['topic/default/newtopname']['commit']['title']
== 'Commit 2')
def test_topic_branch_change(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")
repo.hg('push', url)
assert test_project.api_branch_titles() == {
'branch/default': 'Commit 0',
'branch/other': 'Commit 1',
'topic/other/zetop': 'Commit 2',
}
repo.hg('branch', '-f', 'default')
repo.hg('amend')
repo.hg('push', url)
# the GitLab branch for the old branch/topic combination has been pruned
assert test_project.api_branch_titles() == {
'branch/default': 'Commit 0',
'branch/other': 'Commit 1',
'topic/default/zetop': 'Commit 2',
}
def test_topic_publish(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")
# 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('foo1')
repo.hg('commit', '-Am', "Commit 1")
repo.hg('push', url)
assert test_project.api_branch_titles() == {
'branch/default': 'Commit 0',
'topic/default/zetop': 'Commit 1',
}
repo.hg('push', '--publish', url, expected_return_code=1)
# the GitLab branch for the topic has been pruned
pruned = False
start = time.time()
while not pruned and time.time() - start < 10:
branch_titles = test_project.api_branch_titles()
pruned = 'topic/default/zetop' not in branch_titles
if not pruned:
time.sleep(0.2)
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.
......
import pytest
import time
from urllib.parse import parse_qs
from .utils.hg import LocalRepo
from .utils.project import (
ProjectAccess,
)
parametrize = pytest.mark.parametrize
@parametrize('pull_type', ('pull-rev', 'pull-full'))
def test_gate_topics(test_project, tmpdir, pull_type):
"""
Clients without the topic extension won't get them unless explicitely
"""
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('phase', '-p', ".")
repo.hg('topic', 'zetop')
repo_path.join('foo').write('foo1')
repo.hg('commit', '-Am', "Commit 1")
topic_sha = repo.hg('log', '-r', '.', '-T', '{node}')
repo.hg('push', url)
# let's control what GitLab really sees
assert test_project.api_branch_titles() == {
'branch/default': 'Commit 0',
'topic/default/zetop': 'Commit 1',
}
clone = LocalRepo.init(tmpdir.join('clone'))
clone.hgrc_append_lines(("", "[extensions]", "topic=!"))
clone.hg('pull', url)
log = clone.hg('log', '-T', '{desc}:{phase}\n')
assert log.splitlines() == ['Commit 0:public']
# but requiring a topical changeset by its SHA with just the topic
# extension (not evolve) works
cmd = ['pull']
if pull_type == 'pull-rev':
cmd.extend(('-r', topic_sha))
cmd .extend((url,
'--config', 'extensions.topic=',
'--config', 'extensions.evolve=!'))
clone.hg(*cmd)
log = clone.hg('log', '-T', '{desc}:{phase}\n')
assert log .splitlines() == ['Commit 1:draft', 'Commit 0:public']
def test_push_topic_permission(test_project, tmpdir):
"""Even for topic changesets, DEVELOPER is the minimal perm to push.
"""
repo_path = tmpdir.join('repo1')
owner_url = test_project.owner_basic_auth_url
basic_user_url = test_project.basic_auth_url(user_name='test_basic')
# a first public changeset, pushed as the owner
repo = LocalRepo.init(repo_path)
repo_path.join('foo').write('foo0')
repo.hg('commit', '-Am', "Commit 0")
repo.hg('phase', '-p', ".")
repo.hg('push', owner_url)
repo.hg('topic', 'zetop')
repo_path.join('foo').write('foo1')
repo.hg('commit', '-Am', "Commit 1")
# basic user is not member of the project
code, _, err = repo.hg_unchecked('push', basic_user_url)
assert code != 0
assert '404' in err # can't even see it
# basic user is Guest of the project
test_project.grant_member_access(user_name='test_basic',
level=ProjectAccess.GUEST)
code, _, err = repo.hg_unchecked('push', basic_user_url)
assert code != 0
assert '403' in err
# basic user is Reporter of the project
test_project.grant_member_access(user_name='test_basic',
level=ProjectAccess.REPORTER)
code, _, err = repo.hg_unchecked('push', basic_user_url)
assert code != 0
assert '403' in err
# finally basic user is Developer
test_project.grant_member_access(user_name='test_basic',
level=ProjectAccess.DEVELOPER)
repo.hg('push', basic_user_url)
# let's control what GitLab really sees
assert test_project.api_branch_titles() == {
'branch/default': 'Commit 0',
'topic/default/zetop': 'Commit 1',
}
def test_topic_rename(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('phase', '-p', ".")
repo.hg('push', url) # avoid topic being default GitLab branch
repo.hg('topic', 'zetop')
repo_path.join('foo').write('foo1')
repo.hg('commit', '-Am', "Commit 1")
repo.hg('push', url)
branches = test_project.api_branches()
assert set(branches) == {'branch/default', 'topic/default/zetop'}
assert branches['branch/default']['commit']['title'] == 'Commit 0'
assert branches['topic/default/zetop']['commit']['title'] == 'Commit 1'
repo.hg('topic', '-r', '.', 'newtopname')
repo.hg('push', url)
branches = test_project.api_branches()
assert set(branches) == {'branch/default', 'topic/default/newtopname'}
assert branches['branch/default']['commit']['title'] == 'Commit 0'
assert (branches['topic/default/newtopname']['commit']['title']
== 'Commit 1')
def test_topic_rename_partial(test_project, tmpdir):
"""We don't want to prune a topic if it hasn't been fully renamed"""
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('phase', '-p', ".")
repo.hg('push', url) # avoid topic being default GitLab branch
repo.hg('topic', 'zetop')
repo_path.join('foo').write('foo1')
repo.hg('commit', '-Am', "Commit 1")
repo_path.join('foo').write('foo2')
repo.hg('commit', '-Am', "Commit 2")
repo.hg('push', url)
branches = test_project.api_branches()
assert set(branches) == {'branch/default', 'topic/default/zetop'}
assert branches['branch/default']['commit']['title'] == 'Commit 0'
assert branches['topic/default/zetop']['commit']['title'] == 'Commit 2'
repo.hg('topic', '-r', '.', 'newtopname')
repo.hg('push', url)
branches = test_project.api_branches()
assert set(branches) == {'branch/default',
'topic/default/zetop',
'topic/default/newtopname'}
assert branches['branch/default']['commit']['title'] == 'Commit 0'
assert branches['topic/default/zetop']['commit']['title'] == 'Commit 1'
assert (branches['topic/default/newtopname']['commit']['title']
== 'Commit 2')
def test_topic_branch_change(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")
repo.hg('push', url)
assert test_project.api_branch_titles() == {
'branch/default': 'Commit 0',
'branch/other': 'Commit 1',
'topic/other/zetop': 'Commit 2',
}
repo.hg('branch', '-f', 'default')
repo.hg('amend')
repo.hg('push', url)
# the GitLab branch for the old branch/topic combination has been pruned
assert test_project.api_branch_titles() == {
'branch/default': 'Commit 0',
'branch/other': 'Commit 1',
'topic/default/zetop': 'Commit 2',
}
def test_topic_publish(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")
# 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('foo1')
repo.hg('commit', '-Am', "Commit 1")
repo.hg('push', url)
assert test_project.api_branch_titles() == {
'branch/default': 'Commit 0',
'topic/default/zetop': 'Commit 1',
}
repo.hg('push', '--publish', url, expected_return_code=1)
# the GitLab branch for the topic has been pruned
pruned = False
start = time.time()
while not pruned and time.time() - start < 10:
branch_titles = test_project.api_branch_titles()
pruned = 'topic/default/zetop' not in branch_titles
if not pruned:
time.sleep(0.2)
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())
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