1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218
|
import re
import subprocess
import tempfile
import shutil
import klaus
import pytest
import requests
import requests.auth
from .utils import *
def test_make_app_using_list():
app = klaus.make_app(REPOS, TEST_SITE_NAME)
with serve_app(app):
response = requests.get(UNAUTH_TEST_SERVER).text
assert TEST_REPO_NO_NEWLINE_BASE_URL in response
def test_htdigest_file_without_smarthttp_or_require_browser_auth():
with pytest.raises(ValueError):
klaus.make_app([], None, htdigest_file=object())
def test_unauthenticated_push_and_require_browser_auth():
with pytest.raises(ValueError):
klaus.make_app(
[],
None,
use_smarthttp=True,
unauthenticated_push=True,
require_browser_auth=True,
)
def test_unauthenticated_push_without_use_smarthttp():
with pytest.raises(ValueError):
klaus.make_app([], None, unauthenticated_push=True)
def test_unauthenticated_push_with_disable_push():
with pytest.raises(ValueError):
klaus.make_app([], None, unauthenticated_push=True, disable_push=True)
def options_test(make_app_args, expected_permissions):
def test():
with serve(**make_app_args):
for check, permitted in expected_permissions.items():
if check in globals():
checks = [check]
elif check.endswith("auth"):
checks = ["can_%s" % check]
else:
checks = ["can_%s_unauth" % check, "can_%s_auth" % check]
for check in checks:
assert globals()[check]() == permitted, check
return test
test_nosmart_noauth = options_test({}, {"reach": True, "clone": False, "push": False})
test_smart_noauth = options_test(
{"use_smarthttp": True}, {"reach": True, "clone": True, "push": False}
)
test_smart_push = options_test(
{"use_smarthttp": True, "htdigest_file": open(HTDIGEST_FILE)},
{"reach": True, "clone": True, "push_auth": True, "push_unauth": False},
)
test_unauthenticated_push = options_test(
{"use_smarthttp": True, "unauthenticated_push": True},
{"reach": True, "clone": True, "push": True},
)
test_nosmart_auth = options_test(
{"require_browser_auth": True, "htdigest_file": open(HTDIGEST_FILE)},
{"reach_auth": True, "reach_unauth": False, "clone": False, "push": False},
)
test_smart_auth = options_test(
{
"require_browser_auth": True,
"use_smarthttp": True,
"htdigest_file": open(HTDIGEST_FILE),
},
{
"reach_auth": True,
"reach_unauth": False,
"clone_auth": True,
"clone_unauth": False,
"push_unauth": False,
"push_auth": True,
},
)
test_smart_auth_disable_push = options_test(
{
"require_browser_auth": True,
"use_smarthttp": True,
"disable_push": True,
"htdigest_file": open(HTDIGEST_FILE),
},
{
"reach_auth": True,
"reach_unauth": False,
"clone_auth": True,
"clone_unauth": False,
"push": False,
},
)
test_ctags_disabled = options_test(
{}, {"ctags_tags_and_branches": False, "ctags_all": False}
)
test_ctags_tags_and_branches = options_test(
{"ctags_policy": "tags-and-branches"},
{"ctags_tags_and_branches": True, "ctags_all": False},
)
test_ctags_all = options_test(
{"ctags_policy": "ALL"}, {"ctags_tags_and_branches": True, "ctags_all": True}
)
# Reach
def can_reach_unauth():
return _check_http200(_GET_unauth, TEST_REPO_BASE_URL)
def can_reach_auth():
return _check_http200(_GET_auth, TEST_REPO_BASE_URL)
# Clone
def can_clone_unauth():
return _can_clone(_GET_unauth, UNAUTH_TEST_REPO_URL)
def can_clone_auth():
return _can_clone(_GET_auth, AUTH_TEST_REPO_URL)
def _can_clone(http_get, url):
tmp = tempfile.mkdtemp()
try:
return any(
[
"git clone" in http_get(TEST_REPO_BASE_URL).text,
_check_http200(
http_get, TEST_REPO_BASE_URL + "info/refs?service=git-upload-pack"
),
subprocess.call(["git", "clone", url, tmp]) == 0,
]
)
finally:
shutil.rmtree(tmp, ignore_errors=True)
# Push
def can_push_unauth():
return _can_push(_GET_unauth, UNAUTH_TEST_REPO_URL)
def can_push_auth():
return _can_push(_GET_auth, AUTH_TEST_REPO_URL)
def _can_push(http_get, url):
return any(
[
_check_http200(
http_get, TEST_REPO_BASE_URL + "info/refs?service=git-receive-pack"
),
_check_http200(http_get, TEST_REPO_BASE_URL + "git-receive-pack"),
subprocess.call(["git", "push", url, "master"], cwd=TEST_REPO) == 0,
]
)
# Ctags
def ctags_tags_and_branches():
return all(
_ctags_enabled(ref, f)
for ref in ["master", "tag1"]
for f in ["test.c", "test.js"]
)
def ctags_all():
all_refs = re.findall(
'href=".+/commit/([a-z0-9]{40})/">', requests.get(UNAUTH_TEST_REPO_URL).text
)
assert len(all_refs) == 3
return all(
_ctags_enabled(ref, f) for ref in all_refs for f in ["test.c", "test.js"]
)
def _ctags_enabled(ref, filename):
response = requests.get(UNAUTH_TEST_REPO_URL + "blob/%s/%s" % (ref, filename))
assert response.status_code == 200, response.text
href = '<a href="/%sblob/%s/%s#L-1">' % (TEST_REPO_BASE_URL, ref, filename)
return href in response.text
def _GET_unauth(url=""):
return requests.get(
UNAUTH_TEST_SERVER + url,
auth=requests.auth.HTTPDigestAuth("invalid", "password"),
)
def _GET_auth(url=""):
return requests.get(
AUTH_TEST_SERVER + url,
auth=requests.auth.HTTPDigestAuth("testuser", "testpassword"),
)
def _check_http200(http_get, url):
return http_get(url).status_code == 200
|