This commit is contained in:
Matt Martz 2018-01-02 17:02:34 -06:00
parent 7e4f319ad4
commit a75ee8e097
2 changed files with 24 additions and 2 deletions

22
tests/scripts/source.py Normal file
View File

@ -0,0 +1,22 @@
#!/usr/bin/env python
import sys
import subprocess
cmd = [sys.executable, 'speedtest.py', '--source', '127.0.0.1']
p = subprocess.Popen(
cmd,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE
)
stdout, stderr = p.communicate()
if p.returncode != 1:
raise SystemExit('%s did not fail with exit code 1' % ' '.join(cmd))
if b'Invalid argument' not in stderr:
raise SystemExit(
'"Invalid argument" not found in stderr:\n%s' % stderr.decode()
)

View File

@ -8,7 +8,7 @@ commands =
{envpython} -m compileall speedtest.py
{envpython} speedtest.py
{envpython} speedtest.py --source 172.17.0.1
bash -c \'{envpython} speedtest.py --source 127.0.0.1 | grep "Invalid argument"\'
{envpython} tests/scripts/source.py
[testenv:flake8]
basepython=python
@ -24,4 +24,4 @@ commands =
pypy -m compileall speedtest.py
pypy speedtest.py
pypy speedtest.py --source 172.17.0.1
bash -c \'pypy speedtest.py --source 127.0.0.1 | grep "Invalid argument"\'
pypy tests/scripts/source.py