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

Running hook environment test over HTTP and SSH

The code paths are indeed quite different for this, and
it's been demonstrated with the last remnaining bug of
heptapod#72 before Heptapod 0.8.1 being for HTTP only.
parent 7f438e4e
No related branches found
No related tags found
No related merge requests found
import pytest
from .utils import needs
from .utils.hg import LocalRepo
from .utils.project import ProjectAccess
......@@ -1,7 +3,9 @@
from .utils import needs
from .utils.hg import LocalRepo
from .utils.project import ProjectAccess
parametrize = pytest.mark.parametrize
def test_push_basic(test_project, tmpdir):
"""
......@@ -48,5 +52,6 @@
@needs.fs_access
def test_push_hook_env(test_project, tmpdir):
@parametrize('push_proto', ['ssh', 'http'])
def test_push_hook_env(test_project, tmpdir, push_proto):
repo_path = tmpdir.join('repo1')
......@@ -52,6 +57,4 @@
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")
......@@ -60,7 +63,12 @@
"[hooks]",
"pretxnchangegroup.heptapod_env=python:"
"heptapod.hooks.dev_util.print_heptapod_env")
out = repo.hg('push', url)
if push_proto == 'http':
out = repo.hg('push', test_project.owner_basic_auth_url)
elif push_proto == 'ssh':
out = repo.hg('push', '--ssh', *test_project.owner_ssh_params)
expected_env = [('HEPTAPOD_PROJECT_ID', str(test_project.id)),
('HEPTAPOD_PROJECT_NAMESPACE_FULL_PATH', 'root'),
('HEPTAPOD_PROJECT_PATH', 'test_project'),
......
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