2013-03-18 15:27:14 +01:00
|
|
|
# Copyright (c) 2013 Paul Tagliamonte <paultag@debian.org>
|
2013-04-08 00:36:08 +02:00
|
|
|
# Copyright (c) 2013 Julien Danjou <julien@danjou.info>
|
2013-03-03 05:47:16 +01:00
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
|
2013-04-12 20:58:20 +02:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
|
|
from hy import HyString
|
2013-05-13 18:09:05 +02:00
|
|
|
from hy.compiler import hy_compile, HyCompileError, HyTypeError
|
2013-03-03 05:47:16 +01:00
|
|
|
from hy.lex import tokenize
|
2013-04-02 01:51:21 +02:00
|
|
|
|
2013-03-03 17:18:13 +01:00
|
|
|
import ast
|
2013-04-02 01:51:21 +02:00
|
|
|
import sys
|
2013-03-03 05:47:16 +01:00
|
|
|
|
|
|
|
|
2013-03-03 19:10:50 +01:00
|
|
|
def _ast_spotcheck(arg, root, secondary):
|
|
|
|
if "." in arg:
|
|
|
|
local, full = arg.split(".", 1)
|
|
|
|
return _ast_spotcheck(full,
|
|
|
|
getattr(root, local),
|
|
|
|
getattr(secondary, local))
|
|
|
|
assert getattr(root, arg) == getattr(secondary, arg)
|
|
|
|
|
|
|
|
|
2013-05-16 15:30:44 +02:00
|
|
|
def can_compile(expr):
|
2013-05-16 15:34:14 +02:00
|
|
|
return hy_compile(tokenize(expr), "__main__")
|
2013-05-16 15:30:44 +02:00
|
|
|
|
|
|
|
|
2013-04-06 10:37:21 +02:00
|
|
|
def cant_compile(expr):
|
2013-04-08 00:38:55 +02:00
|
|
|
expr = tokenize(expr)
|
2013-04-06 10:37:21 +02:00
|
|
|
try:
|
2013-05-16 15:34:14 +02:00
|
|
|
hy_compile(expr, "__main__")
|
2013-04-06 10:37:21 +02:00
|
|
|
assert False
|
2013-05-13 18:09:05 +02:00
|
|
|
except HyCompileError as e:
|
|
|
|
# Anything that can't be compiled should raise a user friendly
|
|
|
|
# error, otherwise it's a compiler bug.
|
|
|
|
assert isinstance(e.exception, HyTypeError)
|
|
|
|
assert e.traceback
|
2013-04-06 10:37:21 +02:00
|
|
|
|
|
|
|
|
2013-03-03 19:12:23 +01:00
|
|
|
def test_ast_bad_type():
|
2013-03-06 04:15:45 +01:00
|
|
|
"Make sure AST breakage can happen"
|
2013-03-03 19:12:23 +01:00
|
|
|
try:
|
2013-05-16 15:34:14 +02:00
|
|
|
hy_compile("foo", "__main__")
|
2013-04-02 02:00:37 +02:00
|
|
|
assert True is False
|
2013-03-03 19:12:23 +01:00
|
|
|
except HyCompileError:
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
2013-04-06 21:28:12 +02:00
|
|
|
def test_ast_bad_if():
|
2013-04-03 11:25:17 +02:00
|
|
|
"Make sure AST can't compile invalid if"
|
2013-04-06 21:28:12 +02:00
|
|
|
cant_compile("(if)")
|
|
|
|
cant_compile("(if foobar)")
|
|
|
|
cant_compile("(if 1 2 3 4 5)")
|
2013-04-05 17:37:55 +02:00
|
|
|
|
|
|
|
|
2013-04-03 11:25:17 +02:00
|
|
|
def test_ast_valid_if():
|
|
|
|
"Make sure AST can't compile invalid if"
|
2013-05-16 15:30:44 +02:00
|
|
|
can_compile("(if foo bar)")
|
2013-04-03 11:25:17 +02:00
|
|
|
|
|
|
|
|
2013-04-06 10:37:21 +02:00
|
|
|
def test_ast_valid_unary_op():
|
|
|
|
"Make sure AST can compile valid unary operator"
|
2013-05-16 15:30:44 +02:00
|
|
|
can_compile("(not 2)")
|
|
|
|
can_compile("(~ 1)")
|
2013-04-06 10:37:21 +02:00
|
|
|
|
|
|
|
|
|
|
|
def test_ast_invalid_unary_op():
|
|
|
|
"Make sure AST can't compile invalid unary operator"
|
|
|
|
cant_compile("(not 2 3 4)")
|
|
|
|
cant_compile("(not)")
|
|
|
|
cant_compile("(not 2 3 4)")
|
|
|
|
cant_compile("(~ 2 2 3 4)")
|
|
|
|
cant_compile("(~)")
|
|
|
|
|
|
|
|
|
2013-04-06 21:28:12 +02:00
|
|
|
def test_ast_bad_while():
|
2013-04-03 19:55:09 +02:00
|
|
|
"Make sure AST can't compile invalid while"
|
2013-04-06 21:28:12 +02:00
|
|
|
cant_compile("(while)")
|
|
|
|
cant_compile("(while (true))")
|
2013-04-03 19:55:09 +02:00
|
|
|
|
|
|
|
|
2013-04-06 16:33:06 +02:00
|
|
|
def test_ast_good_do():
|
|
|
|
"Make sure AST can compile valid do"
|
2013-05-16 15:30:44 +02:00
|
|
|
can_compile("(do)")
|
|
|
|
can_compile("(do 1)")
|
2013-04-06 16:33:06 +02:00
|
|
|
|
|
|
|
|
|
|
|
def test_ast_good_throw():
|
|
|
|
"Make sure AST can compile valid throw"
|
2013-05-16 15:30:44 +02:00
|
|
|
can_compile("(throw)")
|
|
|
|
can_compile("(throw 1)")
|
2013-04-06 16:33:06 +02:00
|
|
|
|
|
|
|
|
|
|
|
def test_ast_bad_throw():
|
|
|
|
"Make sure AST can't compile invalid throw"
|
2013-04-09 16:50:27 +02:00
|
|
|
cant_compile("(raise 1 2 3)")
|
2013-04-06 16:33:06 +02:00
|
|
|
|
|
|
|
|
2013-04-07 18:24:01 +02:00
|
|
|
def test_ast_good_raise():
|
|
|
|
"Make sure AST can compile valid raise"
|
2013-05-16 15:30:44 +02:00
|
|
|
can_compile("(raise)")
|
|
|
|
can_compile("(raise 1)")
|
2013-04-07 18:24:01 +02:00
|
|
|
|
|
|
|
|
|
|
|
def test_ast_bad_raise():
|
|
|
|
"Make sure AST can't compile invalid raise"
|
2013-04-09 16:50:27 +02:00
|
|
|
cant_compile("(raise 1 2 3)")
|
2013-04-07 18:24:01 +02:00
|
|
|
|
|
|
|
|
2013-04-06 16:33:06 +02:00
|
|
|
def test_ast_good_try():
|
|
|
|
"Make sure AST can compile valid try"
|
2013-05-16 15:30:44 +02:00
|
|
|
can_compile("(try)")
|
|
|
|
can_compile("(try 1)")
|
|
|
|
can_compile("(try 1 (except) (else 1))")
|
|
|
|
can_compile("(try 1 (else 1) (except))")
|
|
|
|
can_compile("(try 1 (finally 1) (except))")
|
|
|
|
can_compile("(try 1 (finally 1))")
|
|
|
|
can_compile("(try 1 (except) (finally 1))")
|
|
|
|
can_compile("(try 1 (except) (finally 1) (else 1))")
|
|
|
|
can_compile("(try 1 (except) (else 1) (finally 1))")
|
2013-04-08 15:58:43 +02:00
|
|
|
|
|
|
|
|
|
|
|
def test_ast_bad_try():
|
|
|
|
"Make sure AST can't compile invalid try"
|
|
|
|
cant_compile("(try 1 bla)")
|
|
|
|
cant_compile("(try 1 bla bla)")
|
|
|
|
cant_compile("(try (do) (else 1) (else 2))")
|
|
|
|
cant_compile("(try 1 (else 1))")
|
2013-04-06 16:33:06 +02:00
|
|
|
|
|
|
|
|
|
|
|
def test_ast_good_catch():
|
|
|
|
"Make sure AST can compile valid catch"
|
2013-05-16 15:30:44 +02:00
|
|
|
can_compile("(try 1 (catch))")
|
|
|
|
can_compile("(try 1 (catch []))")
|
|
|
|
can_compile("(try 1 (catch [Foobar]))")
|
|
|
|
can_compile("(try 1 (catch [[]]))")
|
|
|
|
can_compile("(try 1 (catch [x FooBar]))")
|
|
|
|
can_compile("(try 1 (catch [x [FooBar BarFoo]]))")
|
|
|
|
can_compile("(try 1 (catch [x [FooBar BarFoo]]))")
|
2013-04-06 16:33:06 +02:00
|
|
|
|
|
|
|
|
|
|
|
def test_ast_bad_catch():
|
|
|
|
"Make sure AST can't compile invalid catch"
|
2013-05-09 02:00:09 +02:00
|
|
|
cant_compile("(catch 22)") # heh
|
2013-05-09 01:58:36 +02:00
|
|
|
cant_compile("(try (catch 1))")
|
|
|
|
cant_compile("(try (catch \"A\"))")
|
|
|
|
cant_compile("(try (catch [1 3]))")
|
|
|
|
cant_compile("(try (catch [x [FooBar] BarBar]))")
|
2013-04-06 16:33:06 +02:00
|
|
|
|
|
|
|
|
2013-04-07 18:24:01 +02:00
|
|
|
def test_ast_good_except():
|
|
|
|
"Make sure AST can compile valid except"
|
2013-05-16 15:30:44 +02:00
|
|
|
can_compile("(try 1 (except))")
|
|
|
|
can_compile("(try 1 (except []))")
|
|
|
|
can_compile("(try 1 (except [Foobar]))")
|
|
|
|
can_compile("(try 1 (except [[]]))")
|
|
|
|
can_compile("(try 1 (except [x FooBar]))")
|
|
|
|
can_compile("(try 1 (except [x [FooBar BarFoo]]))")
|
|
|
|
can_compile("(try 1 (except [x [FooBar BarFoo]]))")
|
2013-04-07 18:24:01 +02:00
|
|
|
|
|
|
|
|
|
|
|
def test_ast_bad_except():
|
|
|
|
"Make sure AST can't compile invalid except"
|
2013-05-09 02:00:09 +02:00
|
|
|
cant_compile("(except 1)")
|
2013-05-09 01:58:36 +02:00
|
|
|
cant_compile("(try 1 (except 1))")
|
|
|
|
cant_compile("(try 1 (except [1 3]))")
|
|
|
|
cant_compile("(try 1 (except [x [FooBar] BarBar]))")
|
2013-04-07 18:24:01 +02:00
|
|
|
|
|
|
|
|
2013-04-06 16:33:06 +02:00
|
|
|
def test_ast_good_assert():
|
|
|
|
"Make sure AST can compile valid assert"
|
2013-05-16 15:30:44 +02:00
|
|
|
can_compile("(assert 1)")
|
2013-04-06 16:33:06 +02:00
|
|
|
|
|
|
|
|
|
|
|
def test_ast_bad_assert():
|
|
|
|
"Make sure AST can't compile invalid assert"
|
|
|
|
cant_compile("(assert)")
|
|
|
|
cant_compile("(assert 1 2)")
|
|
|
|
|
2013-04-24 01:25:02 +02:00
|
|
|
|
2013-04-19 08:40:03 +02:00
|
|
|
def test_ast_good_global():
|
|
|
|
"Make sure AST can compile valid global"
|
2013-05-16 15:30:44 +02:00
|
|
|
can_compile("(global a)")
|
2013-04-19 08:40:03 +02:00
|
|
|
|
2013-04-24 01:25:02 +02:00
|
|
|
|
2013-04-19 08:40:03 +02:00
|
|
|
def test_ast_bad_global():
|
|
|
|
"Make sure AST can't compile invalid global"
|
|
|
|
cant_compile("(global)")
|
|
|
|
cant_compile("(global foo bar)")
|
2013-04-06 16:33:06 +02:00
|
|
|
|
2013-04-24 01:25:02 +02:00
|
|
|
|
2013-04-24 22:18:05 +02:00
|
|
|
def test_ast_good_defclass():
|
|
|
|
"Make sure AST can compile valid defclass"
|
2013-05-16 15:30:44 +02:00
|
|
|
can_compile("(defclass a)")
|
|
|
|
can_compile("(defclass a [])")
|
2013-04-24 22:18:05 +02:00
|
|
|
|
|
|
|
|
|
|
|
def test_ast_bad_defclass():
|
|
|
|
"Make sure AST can't compile invalid defclass"
|
|
|
|
cant_compile("(defclass)")
|
|
|
|
cant_compile("(defclass a null)")
|
|
|
|
cant_compile("(defclass a null null)")
|
|
|
|
|
|
|
|
|
2013-04-06 16:33:06 +02:00
|
|
|
def test_ast_good_lambda():
|
|
|
|
"Make sure AST can compile valid lambda"
|
2013-05-16 15:30:44 +02:00
|
|
|
can_compile("(lambda [])")
|
|
|
|
can_compile("(lambda [] 1)")
|
2013-04-06 16:33:06 +02:00
|
|
|
|
|
|
|
|
|
|
|
def test_ast_bad_lambda():
|
|
|
|
"Make sure AST can't compile invalid lambda"
|
|
|
|
cant_compile("(lambda)")
|
|
|
|
|
|
|
|
|
|
|
|
def test_ast_good_yield():
|
|
|
|
"Make sure AST can compile valid yield"
|
2013-05-16 15:30:44 +02:00
|
|
|
can_compile("(yield 1)")
|
2013-04-06 16:33:06 +02:00
|
|
|
|
|
|
|
|
|
|
|
def test_ast_bad_yield():
|
|
|
|
"Make sure AST can't compile invalid yield"
|
|
|
|
cant_compile("(yield 1 2)")
|
|
|
|
|
|
|
|
|
|
|
|
def test_ast_good_import_from():
|
2013-04-20 16:06:32 +02:00
|
|
|
"Make sure AST can compile valid selective import"
|
2013-05-16 15:30:44 +02:00
|
|
|
can_compile("(import [x [y]])")
|
2013-04-06 16:33:06 +02:00
|
|
|
|
|
|
|
|
|
|
|
def test_ast_good_get():
|
|
|
|
"Make sure AST can compile valid get"
|
2013-05-16 15:30:44 +02:00
|
|
|
can_compile("(get x y)")
|
2013-04-06 16:33:06 +02:00
|
|
|
|
|
|
|
|
|
|
|
def test_ast_bad_get():
|
|
|
|
"Make sure AST can't compile invalid get"
|
|
|
|
cant_compile("(get)")
|
|
|
|
cant_compile("(get 1)")
|
|
|
|
cant_compile("(get 1 2 3)")
|
|
|
|
|
|
|
|
|
|
|
|
def test_ast_good_slice():
|
|
|
|
"Make sure AST can compile valid slice"
|
2013-05-16 15:30:44 +02:00
|
|
|
can_compile("(slice x)")
|
|
|
|
can_compile("(slice x y)")
|
|
|
|
can_compile("(slice x y z)")
|
|
|
|
can_compile("(slice x y z t)")
|
2013-04-06 16:33:06 +02:00
|
|
|
|
|
|
|
|
|
|
|
def test_ast_bad_slice():
|
|
|
|
"Make sure AST can't compile invalid slice"
|
|
|
|
cant_compile("(slice)")
|
2013-05-04 09:16:01 +02:00
|
|
|
cant_compile("(slice 1 2 3 4 5)")
|
2013-04-06 16:33:06 +02:00
|
|
|
|
|
|
|
|
2013-04-21 22:41:20 +02:00
|
|
|
def test_ast_good_take():
|
|
|
|
"Make sure AST can compile valid 'take'"
|
2013-05-16 15:30:44 +02:00
|
|
|
can_compile("(take 1 [2 3])")
|
2013-04-21 22:41:20 +02:00
|
|
|
|
|
|
|
|
|
|
|
def test_ast_good_drop():
|
|
|
|
"Make sure AST can compile valid 'drop'"
|
2013-05-16 15:30:44 +02:00
|
|
|
can_compile("(drop 1 [2 3])")
|
2013-04-21 22:41:20 +02:00
|
|
|
|
|
|
|
|
2013-04-06 16:33:06 +02:00
|
|
|
def test_ast_good_assoc():
|
|
|
|
"Make sure AST can compile valid assoc"
|
2013-05-16 15:30:44 +02:00
|
|
|
can_compile("(assoc x y z)")
|
2013-04-06 16:33:06 +02:00
|
|
|
|
|
|
|
|
|
|
|
def test_ast_bad_assoc():
|
|
|
|
"Make sure AST can't compile invalid assoc"
|
|
|
|
cant_compile("(assoc)")
|
|
|
|
cant_compile("(assoc 1)")
|
|
|
|
cant_compile("(assoc 1 2)")
|
|
|
|
cant_compile("(assoc 1 2 3 4)")
|
|
|
|
|
|
|
|
|
2013-04-08 00:35:36 +02:00
|
|
|
def test_ast_bad_with():
|
|
|
|
"Make sure AST can't compile invalid with"
|
|
|
|
cant_compile("(with)")
|
|
|
|
cant_compile("(with [])")
|
|
|
|
cant_compile("(with [] (pass))")
|
|
|
|
|
|
|
|
|
2013-04-03 19:55:09 +02:00
|
|
|
def test_ast_valid_while():
|
|
|
|
"Make sure AST can't compile invalid while"
|
2013-05-16 15:30:44 +02:00
|
|
|
can_compile("(while foo bar)")
|
2013-04-03 19:55:09 +02:00
|
|
|
|
|
|
|
|
2013-04-14 20:22:38 +02:00
|
|
|
def test_ast_valid_foreach():
|
|
|
|
"Make sure AST can compile valid foreach"
|
2013-05-16 15:30:44 +02:00
|
|
|
can_compile("(foreach [a 2])")
|
2013-04-14 20:22:38 +02:00
|
|
|
|
|
|
|
|
|
|
|
def test_ast_invalid_foreach():
|
|
|
|
"Make sure AST can't compile invalid foreach"
|
|
|
|
cant_compile("(foreach [a 1] (else 1 2))")
|
|
|
|
|
|
|
|
|
2013-03-03 06:00:55 +01:00
|
|
|
def test_ast_expression_basics():
|
2013-03-03 17:18:13 +01:00
|
|
|
""" Ensure basic AST expression conversion works. """
|
2013-05-16 15:30:44 +02:00
|
|
|
code = can_compile("(foo bar)").body[0]
|
2013-03-05 01:12:57 +01:00
|
|
|
tree = ast.Expr(value=ast.Call(
|
2013-04-06 21:22:35 +02:00
|
|
|
func=ast.Name(
|
|
|
|
id="foo",
|
|
|
|
ctx=ast.Load(),
|
|
|
|
),
|
|
|
|
args=[
|
|
|
|
ast.Name(id="bar", ctx=ast.Load())
|
|
|
|
],
|
|
|
|
keywords=[],
|
|
|
|
starargs=None,
|
|
|
|
kwargs=None,
|
|
|
|
))
|
2013-03-05 01:12:57 +01:00
|
|
|
|
|
|
|
_ast_spotcheck("value.func.id", code, tree)
|
2013-03-05 15:08:13 +01:00
|
|
|
|
|
|
|
|
|
|
|
def test_ast_anon_fns_basics():
|
|
|
|
""" Ensure anon fns work. """
|
2013-05-16 15:30:44 +02:00
|
|
|
code = can_compile("(fn (x) (* x x))").body[0]
|
2013-03-05 15:08:13 +01:00
|
|
|
assert type(code) == ast.FunctionDef
|
2013-05-16 15:30:44 +02:00
|
|
|
code = can_compile("(fn (x))").body[0]
|
2013-04-20 03:31:32 +02:00
|
|
|
cant_compile("(fn)")
|
2013-04-02 01:38:58 +02:00
|
|
|
|
|
|
|
|
|
|
|
def test_ast_non_decoratable():
|
|
|
|
""" Ensure decorating garbage breaks """
|
2013-04-28 17:14:22 +02:00
|
|
|
cant_compile("(with-decorator (foo) (* x x))")
|
2013-04-02 02:00:37 +02:00
|
|
|
|
|
|
|
|
|
|
|
def test_ast_non_kwapplyable():
|
|
|
|
""" Ensure kwapply breaks """
|
|
|
|
code = tokenize("(kwapply foo bar)")
|
|
|
|
code[0][2] = None
|
|
|
|
try:
|
2013-05-16 15:34:14 +02:00
|
|
|
hy_compile(code, "__main__")
|
2013-04-02 02:00:37 +02:00
|
|
|
assert True is False
|
2013-04-06 16:33:06 +02:00
|
|
|
except HyCompileError:
|
2013-04-02 01:38:58 +02:00
|
|
|
pass
|
2013-04-02 01:51:21 +02:00
|
|
|
|
|
|
|
|
2013-05-08 21:10:30 +02:00
|
|
|
def test_ast_lambda_lists():
|
|
|
|
"""Ensure the compiler chokes on invalid lambda-lists"""
|
|
|
|
cant_compile('(fn [&key {"a" b} &key {"foo" bar}] [a foo])')
|
2013-05-08 20:56:16 +02:00
|
|
|
cant_compile('(fn [&optional a &key {"foo" bar}] [a foo])')
|
|
|
|
cant_compile('(fn [&optional [a b c]] a)')
|
2013-05-08 21:10:30 +02:00
|
|
|
|
|
|
|
|
2013-04-02 01:51:21 +02:00
|
|
|
def test_ast_print():
|
2013-05-16 15:30:44 +02:00
|
|
|
code = can_compile("(print \"foo\")").body[0]
|
2013-04-02 04:07:05 +02:00
|
|
|
|
2013-04-02 01:51:21 +02:00
|
|
|
if sys.version_info[0] >= 3:
|
|
|
|
assert type(code.value) == ast.Call
|
|
|
|
return
|
|
|
|
assert type(code) == ast.Print
|
2013-04-02 01:53:04 +02:00
|
|
|
|
|
|
|
|
2013-04-02 04:07:05 +02:00
|
|
|
def test_ast_tuple():
|
|
|
|
""" Ensure tuples work. """
|
2013-05-16 15:30:44 +02:00
|
|
|
code = can_compile("(, 1 2 3)").body[0].value
|
2013-04-02 01:53:04 +02:00
|
|
|
assert type(code) == ast.Tuple
|
2013-04-12 20:58:20 +02:00
|
|
|
|
|
|
|
|
2013-04-19 04:27:38 +02:00
|
|
|
def test_lambda_list_keywords_rest():
|
2013-04-11 18:00:27 +02:00
|
|
|
""" Ensure we can compile functions with lambda list keywords."""
|
2013-05-16 15:30:44 +02:00
|
|
|
can_compile("(fn (x &rest xs) (print xs))")
|
2013-04-11 18:00:27 +02:00
|
|
|
cant_compile("(fn (x &rest xs &rest ys) (print xs))")
|
2013-04-18 21:17:30 +02:00
|
|
|
|
2013-04-21 18:29:09 +02:00
|
|
|
|
2013-04-19 04:27:38 +02:00
|
|
|
def test_lambda_list_keywords_key():
|
|
|
|
""" Ensure we can compile functions with &key."""
|
2013-05-16 15:30:44 +02:00
|
|
|
can_compile("(fn (x &key {foo True}) (list x foo))")
|
2013-04-19 04:27:38 +02:00
|
|
|
cant_compile("(fn (x &key {bar \"baz\"} &key {foo 42}) (list x bar foo))")
|
|
|
|
|
2013-04-21 18:29:09 +02:00
|
|
|
|
2013-04-19 04:27:38 +02:00
|
|
|
def test_lambda_list_keywords_kwargs():
|
|
|
|
""" Ensure we can compile functions with &kwargs."""
|
2013-05-16 15:30:44 +02:00
|
|
|
can_compile("(fn (x &kwargs kw) (list x kw))")
|
2013-04-19 04:27:38 +02:00
|
|
|
cant_compile("(fn (x &kwargs xs &kwargs ys) (list x xs ys))")
|
|
|
|
|
2013-04-21 18:29:09 +02:00
|
|
|
|
2013-04-19 04:27:38 +02:00
|
|
|
def test_lambda_list_keywords_mixed():
|
|
|
|
""" Ensure we can mix them up."""
|
2013-05-16 15:30:44 +02:00
|
|
|
can_compile("(fn (x &rest xs &kwargs kw) (list x xs kw))")
|
2013-04-21 18:29:09 +02:00
|
|
|
cant_compile("(fn (x &rest xs &fasfkey {bar \"baz\"}))")
|
|
|
|
|
2013-04-18 23:47:08 +02:00
|
|
|
|
2013-04-12 20:58:20 +02:00
|
|
|
def test_ast_unicode_strings():
|
|
|
|
"""Ensure we handle unicode strings correctly"""
|
|
|
|
|
|
|
|
def _compile_string(s):
|
|
|
|
hy_s = HyString(s)
|
|
|
|
hy_s.start_line = hy_s.end_line = 0
|
|
|
|
hy_s.start_column = hy_s.end_column = 0
|
|
|
|
|
2013-05-16 15:34:14 +02:00
|
|
|
code = hy_compile([hy_s], "__main__")
|
2013-04-12 20:58:20 +02:00
|
|
|
|
|
|
|
# code == ast.Module(body=[ast.Expr(value=ast.Str(s=xxx))])
|
|
|
|
return code.body[0].value.s
|
|
|
|
|
|
|
|
assert _compile_string("test") == "test"
|
|
|
|
assert _compile_string("\u03b1\u03b2") == "\u03b1\u03b2"
|
|
|
|
assert _compile_string("\xc3\xa9") == "\xc3\xa9"
|
2013-04-24 22:34:14 +02:00
|
|
|
|
|
|
|
|
|
|
|
def test_compile_error():
|
|
|
|
"""Ensure we get compile error in tricky cases"""
|
|
|
|
try:
|
2013-05-16 15:30:44 +02:00
|
|
|
can_compile("(fn [] (= 1))")
|
2013-04-24 22:34:14 +02:00
|
|
|
except HyCompileError as e:
|
|
|
|
assert(str(e)
|
|
|
|
== "`=' needs at least 2 arguments, got 1 (line 1, column 8)")
|
|
|
|
else:
|
|
|
|
assert(False)
|