py3: Switch almost all shebang lines to use `python3`.
This causes `upgrade-zulip-from-git`, as well as a no-option run of
`tools/build-release-tarball`, to produce a Zulip install running
Python 3, rather than Python 2. In particular this means that the
virtualenv we create, in which all application code runs, is Python 3.
One shebang line, on `zulip-ec2-configure-interfaces`, explicitly
keeps Python 2, and at least one external ops script, `wal-e`, also
still runs on Python 2. See discussion on the respective previous
commits that made those explicit. There may also be some other
third-party scripts we use, outside of this source tree and running
outside our virtualenv, that still run on Python 2.
2017-08-02 23:15:16 +02:00
|
|
|
#!/usr/bin/env python3
|
2016-06-07 11:48:48 +02:00
|
|
|
|
2019-01-15 01:17:04 +01:00
|
|
|
import itertools
|
2016-06-07 11:48:48 +02:00
|
|
|
import os
|
|
|
|
import signal
|
|
|
|
import subprocess
|
2018-01-31 01:08:43 +01:00
|
|
|
import sys
|
2019-01-15 01:17:04 +01:00
|
|
|
import types
|
2018-01-01 05:25:44 +01:00
|
|
|
from typing import Tuple
|
2016-06-07 11:48:48 +02:00
|
|
|
|
2017-02-05 21:24:28 +01:00
|
|
|
from lib import sanity_check
|
|
|
|
sanity_check.check_venv(__file__)
|
2016-06-07 11:48:48 +02:00
|
|
|
|
|
|
|
TOOLS_DIR = os.path.dirname(os.path.abspath(__file__))
|
|
|
|
|
2019-11-13 03:24:14 +01:00
|
|
|
def start_server(run_dev: "subprocess.Popen[str]") -> Tuple[bool, str]:
|
2019-01-15 01:17:04 +01:00
|
|
|
failure = False
|
|
|
|
i = 0
|
|
|
|
|
|
|
|
def on_timer(signum: int, frame: types.FrameType) -> None:
|
|
|
|
nonlocal failure, i
|
|
|
|
print("{}. Polling run-dev...".format(i))
|
|
|
|
i += 1
|
|
|
|
if i == 200:
|
|
|
|
failure = True
|
|
|
|
run_dev.send_signal(signal.SIGINT)
|
|
|
|
signal.setitimer(signal.ITIMER_REAL, 0, 0)
|
|
|
|
|
|
|
|
key = "Quit the server with CTRL-C.\n"
|
|
|
|
old_handler = signal.signal(signal.SIGALRM, on_timer)
|
|
|
|
signal.setitimer(signal.ITIMER_REAL, 0.5, 0.5)
|
|
|
|
log1, log2 = itertools.tee(run_dev.stdout)
|
|
|
|
if key not in log1:
|
|
|
|
failure = True
|
|
|
|
elif not failure:
|
|
|
|
run_dev.send_signal(signal.SIGINT)
|
|
|
|
signal.setitimer(signal.ITIMER_REAL, 0, 0)
|
|
|
|
signal.signal(signal.SIGALRM, old_handler)
|
|
|
|
return failure, ''.join(log2)
|
2016-06-07 11:48:48 +02:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
print("Testing development server start!")
|
|
|
|
|
2019-01-15 01:17:04 +01:00
|
|
|
with subprocess.Popen(
|
2018-01-31 01:08:43 +01:00
|
|
|
[os.path.join(TOOLS_DIR, "run-dev.py")],
|
2019-01-15 01:17:04 +01:00
|
|
|
bufsize=1, # line buffered
|
|
|
|
stdout=subprocess.PIPE, stderr=subprocess.STDOUT,
|
|
|
|
universal_newlines=True) as run_dev:
|
|
|
|
failure, log = start_server(run_dev)
|
2016-06-07 11:48:48 +02:00
|
|
|
|
2018-01-31 01:08:43 +01:00
|
|
|
if 'Traceback' in log:
|
2016-06-07 11:48:48 +02:00
|
|
|
failure = True
|
|
|
|
|
|
|
|
if failure:
|
|
|
|
print("Development server is not working properly:")
|
2016-07-24 18:03:40 +02:00
|
|
|
print(log)
|
2016-06-07 11:48:48 +02:00
|
|
|
sys.exit(1)
|
|
|
|
else:
|
|
|
|
print("Development server is working properly.")
|
|
|
|
sys.exit(0)
|