sapling/eden/hg-server/tests/dummyssh
Durham Goode 98d9269874 server: copy hg to a new hg-server directory
Summary:
Create a fork of the Mercurial code that we can use to build server
rpms. The hg servers will continue to exist for a few more months while we move
the darkstorm and ediscovery use cases off them. In the mean time, we want to
start making breaking changes to the client, so let's create a stable copy of
the hg code to produce rpms for the hg servers.

The fork is based off c7770c78d, the latest hg release.

This copies the files as is, then adds some minor tweaks to get it to build:
- Disables some lint checks that appear to be bypassed by path
- sed replace eden/scm with eden/hg-server
- Removed a dependency on scm/telemetry from the edenfs-client tests since
  scm/telemetry pulls in the original eden/scm/lib/configparser which conflicts
  with the hg-server conflict parser.

allow-large-files

Reviewed By: quark-zju

Differential Revision: D27632557

fbshipit-source-id: b2f442f4ec000ea08e4d62de068750832198e1f4
2021-04-09 10:09:06 -07:00

129 lines
3.2 KiB
Python
Executable File

#!/usr/bin/env python
from __future__ import absolute_import, print_function
import os
import shlex
import subprocess
import sys
import threading
os.chdir(os.getenv("TESTTMP"))
def parse(cmd):
"""
matches hg-ssh-wrapper
"""
try:
return shlex.split(cmd)
except ValueError as e:
print('Illegal command "%s": %s\n' % (cmd, e), file=sys.stderr)
sys.exit(255)
def parse_repo_path(path):
"""
matches hg-ssh-wrapper
"""
path = path.split("?")
if len(path) == 1:
repo = path[0]
marker = None
elif len(path) == 2:
repo = path[0]
marker = path[1]
else:
print("Illegal repo name: %s\n" % "?".join(path), file=sys.stderr)
sys.exit(255)
return repo, marker
# Skipping SSH options
host_index = 1
while host_index < len(sys.argv) and sys.argv[host_index].startswith("-"):
host_index += 1
if sys.argv[host_index] != "user@dummy":
sys.exit(-1)
os.environ["SSH_CLIENT"] = "%s 1 2" % os.environ.get(
"SSH_IP_OVERRIDE", os.environ.get("LOCALIP", "127.0.0.1")
)
log = open("dummylog", "ab")
log.write(b"Got arguments")
for i, arg in enumerate(sys.argv[1:]):
log.write(b" %d:%s" % (i + 1, arg.encode("utf-8")))
log.write(b"\n")
log.close()
hgcmd = sys.argv[host_index + 1]
if os.name == "nt":
# hack to make simple unix single quote quoting work on windows
hgcmd = hgcmd.replace("'", '"')
cmdargv = parse(hgcmd)
if cmdargv[:2] == ["hg", "-R"] and cmdargv[3:] == ["serve", "--stdio"]:
path, marker = parse_repo_path(cmdargv[2])
if marker == "read_copy":
path = path + "_copy"
cmdargv[2] = path
hgcmd = subprocess.list2cmdline(cmdargv)
if "hgcli" in hgcmd:
certdir = os.environ.get("HGTEST_CERTDIR") or os.environ.get("TEST_CERTS")
if certdir is None:
raise ValueError("No cert dir")
cert = os.path.join(certdir, "localhost.crt")
capem = os.path.join(certdir, "root-ca.crt")
privatekey = os.path.join(certdir, "localhost.key")
localip = os.environ.get("LOCALIP", "127.0.0.1")
if ":" in localip:
# this is ipv6, put it in brackets
localip = "[" + localip + "]"
hgcmd += (
(" --mononoke-path %s:" % localip)
+ os.getenv("MONONOKE_SOCKET")
+ (
" --cert %s --ca-pem %s --private-key %s --common-name localhost"
% (cert, capem, privatekey)
)
)
mock_username = os.environ.get("MOCK_USERNAME")
hgcmd += " --mock-username '{}'".format(mock_username)
if os.environ.get("DUMMYSSH_STABLE_ORDER"):
# Buffer all stderr outputs until the end of connection. This reduces test
# flakiness where stderr and stdout output order is nondeterministic.
p = subprocess.Popen(hgcmd, shell=True, stderr=subprocess.PIPE)
errbuf = [b""]
def readstderr():
while True:
ch = p.stderr.read(1)
if not ch:
break
errbuf[0] += ch
t = threading.Thread(target=readstderr)
t.start()
p.wait()
t.join()
if sys.version_info[0] >= 3:
sys.stderr.buffer.write(errbuf[0])
else:
sys.stderr.write(errbuf[0])
sys.stderr.flush()
sys.exit(p.returncode)
else:
r = os.system(hgcmd)
sys.exit(bool(r))