forked from clj-python/libpython-clj
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathffi_test.clj
36 lines (26 loc) · 1.02 KB
/
ffi_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
(ns libpython-clj2.ffi-test
"Short low level tests used to verify specific aspects of ffi integration"
(:require [libpython-clj2.python.ffi :as py-ffi]
[libpython-clj2.python :as py]
[libpython-clj2.python.protocols :as py-proto]
[libpython-clj2.python.fn :as py-fn]
[clojure.test :refer [deftest is]]))
(py/initialize!)
(deftest module-type-name-test
(py-ffi/with-gil
(let [main-mod (py-ffi/PyImport_AddModule "__main__")
mod-type (py-ffi/pyobject-type main-mod)
mod-name (py-ffi/pytype-name mod-type)]
(is (= "module" mod-name)))))
(deftest pydir-basic
(py-ffi/with-gil
(let [main-mod (py-ffi/PyImport_AddModule "__main__")
dirdata (py-proto/dir main-mod)]
(is (>= (count dirdata) 7)))))
(deftest error-handling
(py-ffi/with-gil
(is (thrown? Exception (py-ffi/run-simple-string "data = 1 +")))))
(deftest clj-fn
(py-ffi/with-gil
(let [pfn (py-fn/make-tuple-fn #(+ %1 %2))]
(is (= 3 (py-fn/call pfn 1 2))))))