forked from clj-python/libpython-clj
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsugar_test.clj
78 lines (65 loc) · 2.14 KB
/
sugar_test.clj
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
(ns libpython-clj2.sugar-test
(:require [libpython-clj2.sugar :as pysug :reload true]
[clojure.test :refer :all]
[libpython-clj2.python :as py]))
(deftest test-pyxfn
(let [{{:strs [addem addx addxkwargs stringify addbang]} :globals}
(py/run-simple-string
"
def addem(nums):
for num in nums:
yield num + num
def addx(nums, x):
for num in nums:
yield num + x
def addxkwargs(nums, *, x=None):
if x is None:
raise Exception('x should not be None')
for num in nums:
yield num + x
def stringify(xs):
for x in xs:
yield str(x)
def addbang(xs):
for x in xs:
yield '{}!'.format(x)
")]
(is (= [0 2 4 6 8 10 12 14 16 18]
(into [] (pysug/pyxfn addem) (range 10))))
(is (= [1 2 3 4 5]
(into [] (pysug/pyxfn addx 1) (range 5))))
(is (= [1 2 3 4 5]
(into [] (pysug/pyxfn addxkwargs :x 1) (range 5))))
(is (= ["00!" "11!" "22!" "33!"]
(transduce
(comp
(pysug/pyxfn stringify)
(pysug/pyxfn addem)
(pysug/pyxfn addbang))
(completing conj)
[]
(range 4)))) (is (= ["33!" "22!" "11!" "00!"]
(transduce
(comp
(pysug/pyxfn stringify)
(pysug/pyxfn addem)
(pysug/pyxfn addbang))
(fn
([result] ((comp vec reverse) result))
([result input]
(conj result input)))
[]
(range 4))))
(is (= [["22!" "33!"] ["00!" "11!"]]
(transduce
(comp
(pysug/pyxfn stringify)
(pysug/pyxfn addem)
(pysug/pyxfn addbang)
(partition-all 2))
(fn
([result] ((comp vec reverse) result))
([result input]
(conj result input)))
[]
(range 4))))))