Run unit tests against hy2py
Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
parent
6935b7b8c1
commit
a823aca0c8
@ -8,7 +8,9 @@ python:
|
|||||||
# command to install dependencies
|
# command to install dependencies
|
||||||
install:
|
install:
|
||||||
- pip install -r requirements.txt --use-mirrors
|
- pip install -r requirements.txt --use-mirrors
|
||||||
- if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install unittest2 --use-mirrors; fi
|
- if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install unittest2 astor --use-mirrors; fi
|
||||||
|
- if [[ $TRAVIS_PYTHON_VERSION == '2.7' ]]; then pip install astor --use-mirrors; fi
|
||||||
|
- if [[ $TRAVIS_PYTHON_VERSION == 'pypy' ]]; then pip install astor --use-mirrors; fi
|
||||||
- python setup.py -q install
|
- python setup.py -q install
|
||||||
# # command to run tests
|
# # command to run tests
|
||||||
script: nosetests
|
script: nosetests
|
||||||
|
@ -27,4 +27,4 @@ class HyExpression(HyList):
|
|||||||
"""
|
"""
|
||||||
|
|
||||||
def __repr__(self):
|
def __repr__(self):
|
||||||
return "(%s)" % (" ".join([str(x) for x in self]))
|
return "(%s)" % (" ".join([repr(x) for x in self]))
|
||||||
|
@ -37,4 +37,4 @@ class HyList(HyObject, list):
|
|||||||
return self.__class__(super(HyList, self).__add__(other))
|
return self.__class__(super(HyList, self).__add__(other))
|
||||||
|
|
||||||
def __repr__(self):
|
def __repr__(self):
|
||||||
return "[%s]" % (" ".join([str(x) for x in self]))
|
return "[%s]" % (" ".join([repr(x) for x in self]))
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
tox
|
tox
|
||||||
nose
|
nose
|
||||||
astor
|
|
||||||
flake8
|
flake8
|
||||||
Sphinx
|
Sphinx
|
||||||
coverage
|
coverage
|
||||||
|
@ -1,11 +1,43 @@
|
|||||||
|
#!/usr/bin/env python
|
||||||
|
# -*- encoding: utf-8 -*-
|
||||||
|
# Copyright (c) 2013 Julien Danjou <julien@danjou.info>
|
||||||
|
# Copyright (c) 2013 Will Kahn-Greene <willg@bluesock.org>
|
||||||
|
#
|
||||||
|
# Permission is hereby granted, free of charge, to any person obtaining a
|
||||||
|
# copy of this software and associated documentation files (the "Software"),
|
||||||
|
# to deal in the Software without restriction, including without limitation
|
||||||
|
# the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
||||||
|
# and/or sell copies of the Software, and to permit persons to whom the
|
||||||
|
# Software is furnished to do so, subject to the following conditions:
|
||||||
|
#
|
||||||
|
# The above copyright notice and this permission notice shall be included in
|
||||||
|
# all copies or substantial portions of the Software.
|
||||||
|
#
|
||||||
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
||||||
|
# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||||
|
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||||
|
# DEALINGS IN THE SOFTWARE.
|
||||||
|
import os
|
||||||
import subprocess
|
import subprocess
|
||||||
|
import sys
|
||||||
|
|
||||||
|
|
||||||
def run_cmd(cmd):
|
def run_cmd(cmd):
|
||||||
p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE,
|
p = subprocess.Popen(cmd,
|
||||||
|
stdout=subprocess.PIPE,
|
||||||
|
stderr=subprocess.PIPE,
|
||||||
shell=True)
|
shell=True)
|
||||||
p.wait()
|
stdout = ""
|
||||||
return p.returncode, p.stdout, p.stderr
|
stderr = ""
|
||||||
|
# Read stdout and stderr otherwise if the PIPE buffer is full, we might
|
||||||
|
# wait for ever…
|
||||||
|
while p.poll() is None:
|
||||||
|
stdout += str(p.stdout.read())
|
||||||
|
stderr += str(p.stderr.read())
|
||||||
|
return p.returncode, stdout, stderr
|
||||||
|
|
||||||
|
|
||||||
def test_bin_hy():
|
def test_bin_hy():
|
||||||
@ -16,23 +48,23 @@ def test_bin_hy():
|
|||||||
def test_bin_hy_stdin():
|
def test_bin_hy_stdin():
|
||||||
ret = run_cmd("echo \"(koan)\" | bin/hy")
|
ret = run_cmd("echo \"(koan)\" | bin/hy")
|
||||||
assert ret[0] == 0
|
assert ret[0] == 0
|
||||||
assert "monk" in ret[1].read().decode("utf-8")
|
assert "monk" in ret[1]
|
||||||
|
|
||||||
|
|
||||||
def test_bin_hy_cmd():
|
def test_bin_hy_cmd():
|
||||||
ret = run_cmd("bin/hy -c \"(koan)\"")
|
ret = run_cmd("bin/hy -c \"(koan)\"")
|
||||||
assert ret[0] == 0
|
assert ret[0] == 0
|
||||||
assert "monk" in ret[1].read().decode("utf-8")
|
assert "monk" in ret[1]
|
||||||
|
|
||||||
ret = run_cmd("bin/hy -c \"(koan\"")
|
ret = run_cmd("bin/hy -c \"(koan\"")
|
||||||
assert ret[0] == 1
|
assert ret[0] == 1
|
||||||
assert "LexException" in ret[1].read().decode("utf-8")
|
assert "LexException" in ret[1]
|
||||||
|
|
||||||
|
|
||||||
def test_bin_hy_icmd():
|
def test_bin_hy_icmd():
|
||||||
ret = run_cmd("echo \"(ideas)\" | bin/hy -i \"(koan)\"")
|
ret = run_cmd("echo \"(ideas)\" | bin/hy -i \"(koan)\"")
|
||||||
assert ret[0] == 0
|
assert ret[0] == 0
|
||||||
output = ret[1].read().decode("utf-8")
|
output = ret[1]
|
||||||
|
|
||||||
assert "monk" in output
|
assert "monk" in output
|
||||||
assert "figlet" in output
|
assert "figlet" in output
|
||||||
@ -41,4 +73,21 @@ def test_bin_hy_icmd():
|
|||||||
def test_bin_hy_file():
|
def test_bin_hy_file():
|
||||||
ret = run_cmd("bin/hy eg/nonfree/halting-problem/halting.hy")
|
ret = run_cmd("bin/hy eg/nonfree/halting-problem/halting.hy")
|
||||||
assert ret[0] == 0
|
assert ret[0] == 0
|
||||||
assert "27" in ret[1].read().decode("utf-8")
|
assert "27" in ret[1]
|
||||||
|
|
||||||
|
|
||||||
|
def test_hy2py():
|
||||||
|
# XXX Astor doesn't seem to support astor :(
|
||||||
|
if sys.version_info[0] == 3:
|
||||||
|
return
|
||||||
|
|
||||||
|
i = 0
|
||||||
|
for dirpath, dirnames, filenames in os.walk("tests/native_tests"):
|
||||||
|
for f in filenames:
|
||||||
|
if f.endswith(".hy"):
|
||||||
|
i += 1
|
||||||
|
ret = run_cmd("bin/hy2py " + os.path.join(dirpath, f))
|
||||||
|
assert ret[0] == 0, f
|
||||||
|
assert len(ret[1]) > 1, f
|
||||||
|
assert len(ret[2]) == 0, f
|
||||||
|
assert i
|
||||||
|
15
tox.ini
15
tox.ini
@ -6,8 +6,23 @@ deps =
|
|||||||
nose
|
nose
|
||||||
setuptools
|
setuptools
|
||||||
|
|
||||||
|
[testenv:pypy]
|
||||||
|
commands = nosetests
|
||||||
|
deps =
|
||||||
|
astor
|
||||||
|
nose
|
||||||
|
setuptools
|
||||||
|
|
||||||
|
[testenv:py27]
|
||||||
|
commands = nosetests
|
||||||
|
deps =
|
||||||
|
astor
|
||||||
|
nose
|
||||||
|
setuptools
|
||||||
|
|
||||||
[testenv:py26]
|
[testenv:py26]
|
||||||
deps =
|
deps =
|
||||||
|
astor
|
||||||
nose
|
nose
|
||||||
setuptools
|
setuptools
|
||||||
unittest2
|
unittest2
|
||||||
|
Loading…
Reference in New Issue
Block a user