forked from pixie-lang/pixie
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_compile.py
More file actions
277 lines (229 loc) · 7.9 KB
/
test_compile.py
File metadata and controls
277 lines (229 loc) · 7.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
from pixie.vm.reader import read_inner, StringReader, eof
from pixie.vm.object import Type
from pixie.vm.cons import Cons
from pixie.vm.numbers import Integer
from pixie.vm.symbol import Symbol
from pixie.vm.compiler import compile, with_ns
from pixie.vm.interpreter import interpret
from pixie.vm.code import Code, Var
from pixie.vm.primitives import nil, true, false
def read_code(s):
with with_ns(u"user"):
return read(StringReader(unicode(s)), False)
def test_add_compilation():
with with_ns(u"user"):
code = compile(read_code(u"(platform+ 1 2)"))
assert isinstance(code, Code)
#interpret(code)
def eval_string(s):
with with_ns(u"user", True):
rdr = StringReader(unicode(s))
result = nil
while True:
form = read(rdr, False)
if form is eof:
return result
result = compile(form).invoke([])
def test_fn():
with with_ns(u"user", True):
code = compile(read_code("((fn* [x y] (-add x y)) 1 2)"))
assert isinstance(code, Code)
retval = interpret(code)
assert isinstance(retval, Integer) and retval.int_val() == 3
def test_multiarity_fn():
retval = eval_string("""(let* [v 1
f (fn* ([] v)
([x] (+ v x)))]
(f))
""")
assert isinstance(retval, Integer) and retval.int_val() == 1
retval = eval_string("""(let* [v 1
f (fn* ([] v)
([x] (+ v x)))]
(f 2))
""")
assert isinstance(retval, Integer) and retval.int_val() == 3
def test_if():
code = compile(read_code("(if 1 2 3)"))
assert isinstance(code, Code)
retval = interpret(code)
assert isinstance(retval, Integer) and retval.int_val() == 2
code = compile(read_code("(if false 2 3)"))
assert isinstance(code, Code)
retval = interpret(code)
assert isinstance(retval, Integer) and retval.int_val() == 3
def test_eq():
assert eval_string(u"(platform= 1 2)") is false
assert eval_string(u"(platform= 1 1)") is true
def test_if_eq():
assert eval_string("(if (platform= 1 2) true false)") is false
def test_return_self():
assert isinstance(eval_string("((fn* r [] r))"), Code)
def test_recursive():
retval = eval_string("""((fn* rf [x]
(if (platform= x 10)
x
(recur (+ x 1))))
0)""")
assert isinstance(retval, Integer)
assert retval.int_val() == 10
def test_loop():
retval = eval_string("""
(loop [x 0]
(if (platform= x 10)
x
(recur (+ x 1))))
""")
assert isinstance(retval, Integer)
assert retval.int_val() == 10
retval = eval_string("""
(loop [x 0
max 10]
(if (platform= x max)
x
(recur (+ x 1) max)))
""")
assert isinstance(retval, Integer)
assert retval.int_val() == 10
def test_loop():
retval = eval_string("""
(loop [x 0]
(if (platform= x 10)
x
(recur (+ x 1))))
""")
assert isinstance(retval, Integer)
assert retval.int_val() == 10
retval = eval_string("""
(loop [x 0
max 10]
(if (platform= x max)
x
(if (platform= x max)
false
(recur (+ x 1) max))))
""")
assert isinstance(retval, Integer)
assert retval.int_val() == 10
def test_closures():
retval = eval_string("""((fn* [x] ((fn* [] x))) 42)""")
assert isinstance(retval, Integer)
assert retval.int_val() == 42
def test_def():
retval = eval_string("""(def x 42)""")
assert isinstance(retval, Var)
retval = eval_string("""(do (def x 42) x)""")
assert isinstance(retval, Integer)
retval = eval_string("""(def y 42) y""")
assert isinstance(retval, Integer)
assert retval.int_val() == 42
def test_native():
retval = eval_string("""(type 42)""")
assert isinstance(retval, Type)
def test_build_list():
retval = eval_string("""((fn* [i lst]
(if (platform= i 10)
(count lst)
(recur (+ i 1) (cons i lst)))) 0 nil)
""")
assert isinstance(retval, Integer) and retval.int_val() == 10
def test_build_vector():
retval = eval_string("""((fn* [i lst]
(if (platform= i 10)
(count lst)
(recur (+ i 1) (conj lst i)))) 0 [])
""")
assert isinstance(retval, Integer) and retval.int_val() == 10
#def test_stacklets():
# retval = eval_string("""
# (do (def foo (fn [h v] (h 42)))
# ((create-stacklet foo) 0))
# """)
#
# assert isinstance(retval, Integer) and retval.int_val() == 42
def test_let():
retval = eval_string(""" (let* [x 42] x) """)
assert isinstance(retval, Integer) and retval.int_val() == 42
retval = eval_string(""" (let* [x 42 y 1] (+ x y)) """)
assert isinstance(retval, Integer) and retval.int_val() == 43
def test_variadic_fn():
from pixie.vm.array import Array
retval = eval_string(""" ((fn* [& rest] rest) 1 2 3 4) """)
print retval
assert isinstance(retval, Array) and len(retval._list) == 4
#
# def test_handlers():
# retval = eval_string("""(def x 42)
# (platform_install_handler 42 (fn () 1))""")
# assert isinstance(retval, Integer) and retval.int_val() == 1
# retval = eval_string("""(def pass (fn (x k) (k true)))
# (set-effect! pass true)
# (def handler 42)
# (platform_install_handler handler (fn () (pass handler)))""")
# assert retval is true
#
# def test_mult_call_handlers():
# retval = eval_string("""(def pass (fn pass (x k) (+ (k 1) (k 2))))
# (set-effect! pass true)
# (def handler 42)
# (platform_install_handler handler (fn hfn () (pass handler) 42))""")
#
# assert isinstance(retval, Integer) and retval.int_val() == 84
#
def test_quoted():
retval = eval_string("""'(1 2)""")
assert isinstance(retval, Cons)
retval = eval_string("""'type""")
assert isinstance(retval, Symbol)
#def test_custom_type():
# retval = eval_string("""(def my-type (make-type 'my-type '(:a :b)))
# (new my-type 1 2)""")
# assert isinstance(retval, CustomTypeInstance)
# retval = eval_string("""(def my-type (make-type 'my-type '(:a :b)))
# (get-field (new my-type 1 2) :a)""")
# assert isinstance(retval, Integer) and retval.int_val() == 1
#
# def test_keyword():
# retval = eval_string(""":foo""")
# assert isinstance(retval, Keyword)
#
#
# def test_real_effects():
# retval = eval_string("""
#
# (do (def tp (make-type 'Foo '(:x)))
# (def pass (fn (x) (get-field (new tp x) :x)))
#
# ((fn r (x)
# (if (platform= x 10000)
# x
# (r (+ 1 (pass x)))))
#
# 0))
# """)
#
# assert isinstance(retval, Integer) and retval.int_val() == 1000
#
#
# def test_real_effects():
# retval = eval_string("""
#
#
# (do (def tp (make-type 'Foo '(:x)))
# (def pass (fn (x) (get-field (new tp x) :x)))
# (def add (fn (h i k) (k (+ i 1))))
# (set-effect! add true)
# (def handler 0)
#
# ((fn r (x)
# (if (platform= x 10000)
# x
# (r (platform_install_handler handler (fn () (add handler x))))))
#
# 0))
# """)
#
# assert isinstance(retval, Integer) and retval.int_val() == 1000
#
#
#