2016-03-16 20:49:45 +00:00
|
|
|
#![allow(dead_code, unused_variables)]
|
2016-03-12 19:32:19 +00:00
|
|
|
|
2016-03-09 00:07:50 +00:00
|
|
|
#[macro_use] extern crate cpython;
|
|
|
|
|
2016-05-06 19:24:32 +00:00
|
|
|
use cpython::{PyObject, PythonObject, PyDrop, PyClone, PyResult, Python, NoArgs, ObjectProtocol,
|
2016-05-06 22:04:18 +00:00
|
|
|
PyDict, PyBytes, PyUnicode, PyErr, exc};
|
2016-04-30 21:41:18 +00:00
|
|
|
use std::{mem, isize, iter};
|
2016-04-14 14:24:23 +00:00
|
|
|
use std::cell::RefCell;
|
2016-03-09 00:07:50 +00:00
|
|
|
use std::sync::Arc;
|
|
|
|
use std::sync::atomic::{AtomicBool, Ordering};
|
2016-05-06 21:16:06 +00:00
|
|
|
use cpython::_detail::ffi;
|
2016-04-17 21:26:33 +00:00
|
|
|
|
|
|
|
macro_rules! py_assert {
|
|
|
|
($py:expr, $val:ident, $assertion:expr) => {{
|
|
|
|
let d = PyDict::new($py);
|
2016-04-30 21:41:18 +00:00
|
|
|
d.set_item($py, stringify!($val), &$val).unwrap();
|
2016-05-06 20:05:12 +00:00
|
|
|
$py.run(concat!("assert ", $assertion), None, Some(&d)).expect(concat!("assert ", $assertion));
|
2016-04-17 21:26:33 +00:00
|
|
|
}}
|
|
|
|
}
|
|
|
|
|
|
|
|
macro_rules! py_expect_exception {
|
|
|
|
($py:expr, $val:ident, $code:expr, $err:ident) => {{
|
|
|
|
let d = PyDict::new($py);
|
|
|
|
d.set_item($py, stringify!($val), $val).unwrap();
|
|
|
|
let res = $py.eval($code, None, Some(&d));
|
|
|
|
let err = res.unwrap_err();
|
|
|
|
assert!(err.matches($py, $py.get_type::<exc::$err>()));
|
|
|
|
}}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-03-12 19:32:19 +00:00
|
|
|
py_class!(class EmptyClass |py| { });
|
|
|
|
|
2016-03-09 00:07:50 +00:00
|
|
|
#[test]
|
|
|
|
fn empty_class() {
|
|
|
|
let gil = Python::acquire_gil();
|
|
|
|
let py = gil.python();
|
2016-03-12 19:32:19 +00:00
|
|
|
let typeobj = py.get_type::<EmptyClass>();
|
2016-03-09 00:07:50 +00:00
|
|
|
// By default, don't allow creating instances from python.
|
|
|
|
assert!(typeobj.call(py, NoArgs, None).is_err());
|
|
|
|
}
|
|
|
|
|
2016-03-12 19:32:19 +00:00
|
|
|
py_class!(class EmptyClassWithNew |py| {
|
|
|
|
def __new__(_cls) -> PyResult<EmptyClassWithNew> {
|
|
|
|
EmptyClassWithNew::create_instance(py)
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2016-03-09 00:07:50 +00:00
|
|
|
#[test]
|
|
|
|
fn empty_class_with_new() {
|
|
|
|
let gil = Python::acquire_gil();
|
|
|
|
let py = gil.python();
|
2016-03-12 19:32:19 +00:00
|
|
|
let typeobj = py.get_type::<EmptyClassWithNew>();
|
|
|
|
assert!(typeobj.call(py, NoArgs, None).unwrap().cast_into::<EmptyClassWithNew>(py).is_ok());
|
2016-03-09 00:07:50 +00:00
|
|
|
}
|
|
|
|
|
2016-03-12 19:32:19 +00:00
|
|
|
py_class!(class NewWithOneArg |py| {
|
|
|
|
data _data: i32;
|
|
|
|
def __new__(_cls, arg: i32) -> PyResult<NewWithOneArg> {
|
|
|
|
NewWithOneArg::create_instance(py, arg)
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2016-03-12 00:31:06 +00:00
|
|
|
#[test]
|
|
|
|
fn new_with_one_arg() {
|
|
|
|
let gil = Python::acquire_gil();
|
|
|
|
let py = gil.python();
|
2016-03-12 19:32:19 +00:00
|
|
|
let typeobj = py.get_type::<NewWithOneArg>();
|
|
|
|
let obj = typeobj.call(py, (42,), None).unwrap().cast_into::<NewWithOneArg>(py).unwrap();
|
2016-03-12 00:31:06 +00:00
|
|
|
assert_eq!(*obj._data(py), 42);
|
|
|
|
}
|
|
|
|
|
2016-03-12 19:32:19 +00:00
|
|
|
py_class!(class NewWithTwoArgs |py| {
|
|
|
|
data _data1: i32;
|
|
|
|
data _data2: i32;
|
|
|
|
def __new__(_cls, arg1: i32, arg2: i32) -> PyResult<NewWithTwoArgs> {
|
|
|
|
NewWithTwoArgs::create_instance(py, arg1, arg2)
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2016-03-12 00:31:06 +00:00
|
|
|
#[test]
|
|
|
|
fn new_with_two_args() {
|
|
|
|
let gil = Python::acquire_gil();
|
|
|
|
let py = gil.python();
|
2016-03-12 19:32:19 +00:00
|
|
|
let typeobj = py.get_type::<NewWithTwoArgs>();
|
|
|
|
let obj = typeobj.call(py, (10, 20), None).unwrap().cast_into::<NewWithTwoArgs>(py).unwrap();
|
2016-03-12 00:31:06 +00:00
|
|
|
assert_eq!(*obj._data1(py), 10);
|
|
|
|
assert_eq!(*obj._data2(py), 20);
|
|
|
|
}
|
|
|
|
|
2016-03-12 19:32:19 +00:00
|
|
|
struct TestDropCall {
|
|
|
|
drop_called: Arc<AtomicBool>
|
|
|
|
}
|
|
|
|
impl Drop for TestDropCall {
|
|
|
|
fn drop(&mut self) {
|
|
|
|
self.drop_called.store(true, Ordering::Relaxed);
|
2016-03-09 00:07:50 +00:00
|
|
|
}
|
2016-03-12 19:32:19 +00:00
|
|
|
}
|
2016-03-09 00:07:50 +00:00
|
|
|
|
2016-03-12 19:32:19 +00:00
|
|
|
py_class!(class DataIsDropped |py| {
|
|
|
|
data member1: TestDropCall;
|
|
|
|
data member2: TestDropCall;
|
|
|
|
});
|
2016-03-09 00:07:50 +00:00
|
|
|
|
2016-03-12 19:32:19 +00:00
|
|
|
#[test]
|
|
|
|
fn data_is_dropped() {
|
2016-03-09 00:07:50 +00:00
|
|
|
let gil = Python::acquire_gil();
|
|
|
|
let py = gil.python();
|
|
|
|
|
|
|
|
let drop_called1 = Arc::new(AtomicBool::new(false));
|
|
|
|
let drop_called2 = Arc::new(AtomicBool::new(false));
|
2016-03-12 19:32:19 +00:00
|
|
|
let inst = DataIsDropped::create_instance(py,
|
|
|
|
TestDropCall { drop_called: drop_called1.clone() },
|
|
|
|
TestDropCall { drop_called: drop_called2.clone() });
|
2016-03-09 00:07:50 +00:00
|
|
|
assert!(drop_called1.load(Ordering::Relaxed) == false);
|
|
|
|
assert!(drop_called2.load(Ordering::Relaxed) == false);
|
|
|
|
drop(inst);
|
|
|
|
assert!(drop_called1.load(Ordering::Relaxed) == true);
|
|
|
|
assert!(drop_called2.load(Ordering::Relaxed) == true);
|
|
|
|
}
|
|
|
|
|
2016-03-16 20:36:18 +00:00
|
|
|
py_class!(class InstanceMethod |py| {
|
|
|
|
data member: i32;
|
|
|
|
|
|
|
|
def method(&self) -> PyResult<i32> {
|
|
|
|
Ok(*self.member(py))
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn instance_method() {
|
|
|
|
let gil = Python::acquire_gil();
|
|
|
|
let py = gil.python();
|
|
|
|
|
|
|
|
let obj = InstanceMethod::create_instance(py, 42).unwrap();
|
|
|
|
assert!(obj.method(py).unwrap() == 42);
|
|
|
|
let d = PyDict::new(py);
|
|
|
|
d.set_item(py, "obj", obj).unwrap();
|
|
|
|
py.run("assert obj.method() == 42", None, Some(&d)).unwrap();
|
|
|
|
}
|
|
|
|
|
|
|
|
py_class!(class InstanceMethodWithArgs |py| {
|
|
|
|
data member: i32;
|
|
|
|
|
|
|
|
def method(&self, multiplier: i32) -> PyResult<i32> {
|
|
|
|
Ok(*self.member(py) * multiplier)
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn instance_method_with_args() {
|
|
|
|
let gil = Python::acquire_gil();
|
|
|
|
let py = gil.python();
|
|
|
|
|
|
|
|
let obj = InstanceMethodWithArgs::create_instance(py, 7).unwrap();
|
|
|
|
assert!(obj.method(py, 6).unwrap() == 42);
|
|
|
|
let d = PyDict::new(py);
|
|
|
|
d.set_item(py, "obj", obj).unwrap();
|
|
|
|
py.run("assert obj.method(3) == 21", None, Some(&d)).unwrap();
|
|
|
|
py.run("assert obj.method(multiplier=6) == 42", None, Some(&d)).unwrap();
|
|
|
|
}
|
|
|
|
|
2016-03-16 21:18:48 +00:00
|
|
|
py_class!(class ClassMethod |py| {
|
|
|
|
def __new__(cls) -> PyResult<ClassMethod> {
|
|
|
|
ClassMethod::create_instance(py)
|
|
|
|
}
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def method(cls) -> PyResult<String> {
|
|
|
|
Ok(format!("{}.method()!", cls.name(py)))
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn class_method() {
|
|
|
|
let gil = Python::acquire_gil();
|
|
|
|
let py = gil.python();
|
|
|
|
|
|
|
|
let d = PyDict::new(py);
|
|
|
|
d.set_item(py, "C", py.get_type::<ClassMethod>()).unwrap();
|
|
|
|
py.run("assert C.method() == 'ClassMethod.method()!'", None, Some(&d)).unwrap();
|
|
|
|
py.run("assert C().method() == 'ClassMethod.method()!'", None, Some(&d)).unwrap();
|
|
|
|
}
|
|
|
|
|
|
|
|
py_class!(class ClassMethodWithArgs |py| {
|
|
|
|
@classmethod
|
|
|
|
def method(cls, input: &str) -> PyResult<String> {
|
|
|
|
Ok(format!("{}.method({})", cls.name(py), input))
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn class_method_with_args() {
|
|
|
|
let gil = Python::acquire_gil();
|
|
|
|
let py = gil.python();
|
|
|
|
|
|
|
|
let d = PyDict::new(py);
|
|
|
|
d.set_item(py, "C", py.get_type::<ClassMethodWithArgs>()).unwrap();
|
|
|
|
py.run("assert C.method('abc') == 'ClassMethodWithArgs.method(abc)'", None, Some(&d)).unwrap();
|
|
|
|
}
|
|
|
|
|
2016-03-16 20:49:45 +00:00
|
|
|
py_class!(class StaticMethod |py| {
|
2016-03-16 21:18:48 +00:00
|
|
|
def __new__(cls) -> PyResult<StaticMethod> {
|
|
|
|
StaticMethod::create_instance(py)
|
|
|
|
}
|
|
|
|
|
2016-03-16 20:49:45 +00:00
|
|
|
@staticmethod
|
|
|
|
def method() -> PyResult<&'static str> {
|
|
|
|
Ok("StaticMethod.method()!")
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn static_method() {
|
|
|
|
let gil = Python::acquire_gil();
|
|
|
|
let py = gil.python();
|
|
|
|
|
|
|
|
assert_eq!(StaticMethod::method(py).unwrap(), "StaticMethod.method()!");
|
|
|
|
let d = PyDict::new(py);
|
|
|
|
d.set_item(py, "C", py.get_type::<StaticMethod>()).unwrap();
|
|
|
|
py.run("assert C.method() == 'StaticMethod.method()!'", None, Some(&d)).unwrap();
|
2016-03-16 21:18:48 +00:00
|
|
|
py.run("assert C().method() == 'StaticMethod.method()!'", None, Some(&d)).unwrap();
|
2016-03-16 20:49:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
py_class!(class StaticMethodWithArgs |py| {
|
|
|
|
@staticmethod
|
|
|
|
def method(input: i32) -> PyResult<String> {
|
|
|
|
Ok(format!("0x{:x}", input))
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn static_method_with_args() {
|
|
|
|
let gil = Python::acquire_gil();
|
|
|
|
let py = gil.python();
|
|
|
|
|
|
|
|
assert_eq!(StaticMethodWithArgs::method(py, 1234).unwrap(), "0x4d2");
|
|
|
|
let d = PyDict::new(py);
|
|
|
|
d.set_item(py, "C", py.get_type::<StaticMethodWithArgs>()).unwrap();
|
|
|
|
py.run("assert C.method(1337) == '0x539'", None, Some(&d)).unwrap();
|
|
|
|
}
|
|
|
|
|
2016-03-18 20:39:11 +00:00
|
|
|
py_class!(class StaticData |py| {
|
|
|
|
static VAL1 = 123;
|
|
|
|
static VAL2 = py.None();
|
|
|
|
});
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn static_data() {
|
|
|
|
let gil = Python::acquire_gil();
|
|
|
|
let py = gil.python();
|
|
|
|
|
|
|
|
let d = PyDict::new(py);
|
|
|
|
d.set_item(py, "C", py.get_type::<StaticData>()).unwrap();
|
|
|
|
py.run("assert C.VAL1 == 123", None, Some(&d)).unwrap();
|
|
|
|
py.run("assert C.VAL2 is None", None, Some(&d)).unwrap();
|
|
|
|
assert!(py.run("C.VAL1 = 124", None, Some(&d)).is_err());
|
|
|
|
}
|
|
|
|
|
2016-04-14 14:24:23 +00:00
|
|
|
py_class!(class GCIntegration |py| {
|
|
|
|
data self_ref: RefCell<PyObject>;
|
|
|
|
data dropped: TestDropCall;
|
|
|
|
|
|
|
|
def __traverse__(&self, visit) {
|
|
|
|
visit.call(&*self.self_ref(py).borrow())
|
|
|
|
}
|
2016-04-14 16:36:34 +00:00
|
|
|
|
|
|
|
def __clear__(&self) {
|
2016-04-17 12:03:51 +00:00
|
|
|
let old_ref = mem::replace(&mut *self.self_ref(py).borrow_mut(), py.None());
|
|
|
|
// Release reference only after the mutable borrow has expired.
|
|
|
|
old_ref.release_ref(py);
|
2016-04-14 16:36:34 +00:00
|
|
|
}
|
2016-04-14 14:24:23 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn gc_integration() {
|
|
|
|
let gil = Python::acquire_gil();
|
|
|
|
let py = gil.python();
|
|
|
|
|
|
|
|
let drop_called = Arc::new(AtomicBool::new(false));
|
|
|
|
let inst = GCIntegration::create_instance(py,
|
|
|
|
RefCell::new(py.None()),
|
|
|
|
TestDropCall { drop_called: drop_called.clone() }
|
|
|
|
).unwrap();
|
|
|
|
*inst.self_ref(py).borrow_mut() = inst.as_object().clone_ref(py);
|
|
|
|
inst.release_ref(py);
|
|
|
|
|
|
|
|
py.run("import gc; gc.collect()", None, None).unwrap();
|
|
|
|
assert!(drop_called.load(Ordering::Relaxed));
|
|
|
|
}
|
|
|
|
|
2016-04-17 21:26:33 +00:00
|
|
|
py_class!(class Len |py| {
|
|
|
|
data l: usize;
|
|
|
|
|
|
|
|
def __len__(&self) -> PyResult<usize> {
|
|
|
|
Ok(*self.l(py))
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn len() {
|
|
|
|
let gil = Python::acquire_gil();
|
|
|
|
let py = gil.python();
|
|
|
|
|
|
|
|
let inst = Len::create_instance(py, 10).unwrap();
|
|
|
|
py_assert!(py, inst, "len(inst) == 10");
|
2016-05-06 21:16:06 +00:00
|
|
|
unsafe {
|
|
|
|
assert_eq!(ffi::PyObject_Size(inst.as_object().as_ptr()), 10);
|
|
|
|
assert_eq!(ffi::PyMapping_Size(inst.as_object().as_ptr()), 10);
|
|
|
|
}
|
2016-04-17 21:26:33 +00:00
|
|
|
|
|
|
|
let inst = Len::create_instance(py, (isize::MAX as usize) + 1).unwrap();
|
|
|
|
py_expect_exception!(py, inst, "len(inst)", OverflowError);
|
|
|
|
}
|
|
|
|
|
2016-04-30 21:41:18 +00:00
|
|
|
py_class!(class Iterator |py| {
|
|
|
|
data iter: RefCell<Box<iter::Iterator<Item=i32> + Send>>;
|
|
|
|
|
|
|
|
def __iter__(&self) -> PyResult<Iterator> {
|
|
|
|
Ok(self.clone_ref(py))
|
|
|
|
}
|
|
|
|
|
|
|
|
def __next__(&self) -> PyResult<Option<i32>> {
|
|
|
|
Ok(self.iter(py).borrow_mut().next())
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn iterator() {
|
|
|
|
let gil = Python::acquire_gil();
|
|
|
|
let py = gil.python();
|
|
|
|
|
|
|
|
let inst = Iterator::create_instance(py, RefCell::new(Box::new(5..8))).unwrap();
|
|
|
|
py_assert!(py, inst, "iter(inst) is inst");
|
|
|
|
py_assert!(py, inst, "list(inst) == [5, 6, 7]");
|
|
|
|
}
|
|
|
|
|
2016-05-05 05:31:14 +00:00
|
|
|
py_class!(class StringMethods |py| {
|
|
|
|
def __str__(&self) -> PyResult<&'static str> {
|
|
|
|
Ok("str")
|
|
|
|
}
|
|
|
|
|
|
|
|
def __repr__(&self) -> PyResult<&'static str> {
|
|
|
|
Ok("repr")
|
|
|
|
}
|
|
|
|
|
2016-05-06 19:24:32 +00:00
|
|
|
def __format__(&self, format_spec: &str) -> PyResult<String> {
|
|
|
|
Ok(format!("format({})", format_spec))
|
|
|
|
}
|
|
|
|
|
|
|
|
def __unicode__(&self) -> PyResult<PyUnicode> {
|
|
|
|
Ok(PyUnicode::new(py, "unicode"))
|
|
|
|
}
|
|
|
|
|
|
|
|
def __bytes__(&self) -> PyResult<PyBytes> {
|
|
|
|
Ok(PyBytes::new(py, b"bytes"))
|
2016-05-05 05:31:14 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn string_methods() {
|
|
|
|
let gil = Python::acquire_gil();
|
|
|
|
let py = gil.python();
|
|
|
|
|
|
|
|
let obj = StringMethods::create_instance(py).unwrap();
|
|
|
|
py_assert!(py, obj, "str(obj) == 'str'");
|
|
|
|
py_assert!(py, obj, "repr(obj) == 'repr'");
|
|
|
|
py_assert!(py, obj, "'{0:x}'.format(obj) == 'format(x)'");
|
|
|
|
}
|
|
|
|
|
2016-05-06 19:24:32 +00:00
|
|
|
#[test]
|
|
|
|
#[cfg(feature="python27-sys")]
|
|
|
|
fn python2_string_methods() {
|
|
|
|
let gil = Python::acquire_gil();
|
|
|
|
let py = gil.python();
|
|
|
|
|
|
|
|
let obj = StringMethods::create_instance(py).unwrap();
|
|
|
|
py_assert!(py, obj, "unicode(obj) == u'unicode'");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
#[cfg(feature="python3-sys")]
|
|
|
|
fn python3_string_methods() {
|
|
|
|
let gil = Python::acquire_gil();
|
|
|
|
let py = gil.python();
|
|
|
|
|
|
|
|
let obj = StringMethods::create_instance(py).unwrap();
|
|
|
|
py_assert!(py, obj, "bytes(obj) == b'bytes'");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-05-06 19:41:05 +00:00
|
|
|
py_class!(class Comparisons |py| {
|
|
|
|
data val: i32;
|
|
|
|
|
|
|
|
def __hash__(&self) -> PyResult<i32> {
|
|
|
|
Ok(*self.val(py))
|
|
|
|
}
|
2016-05-06 20:05:12 +00:00
|
|
|
|
|
|
|
def __bool__(&self) -> PyResult<bool> {
|
|
|
|
Ok(*self.val(py) != 0)
|
|
|
|
}
|
2016-05-06 19:41:05 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn comparisons() {
|
|
|
|
let gil = Python::acquire_gil();
|
|
|
|
let py = gil.python();
|
|
|
|
|
2016-05-06 20:05:12 +00:00
|
|
|
let zero = Comparisons::create_instance(py, 0).unwrap();
|
2016-05-06 19:41:05 +00:00
|
|
|
let one = Comparisons::create_instance(py, 1).unwrap();
|
|
|
|
let ten = Comparisons::create_instance(py, 10).unwrap();
|
|
|
|
let minus_one = Comparisons::create_instance(py, -1).unwrap();
|
|
|
|
py_assert!(py, one, "hash(one) == 1");
|
|
|
|
py_assert!(py, ten, "hash(ten) == 10");
|
|
|
|
py_assert!(py, minus_one, "hash(minus_one) == -2");
|
2016-05-06 20:05:12 +00:00
|
|
|
|
|
|
|
py_assert!(py, one, "bool(one) is True");
|
|
|
|
py_assert!(py, zero, "not zero");
|
2016-05-06 19:41:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-05-06 22:04:18 +00:00
|
|
|
py_class!(class Sequence |py| {
|
|
|
|
def __len__(&self) -> PyResult<usize> {
|
|
|
|
Ok(5)
|
|
|
|
}
|
|
|
|
|
|
|
|
def __getitem__(&self, key: PyObject) -> PyResult<PyObject> {
|
|
|
|
if let Ok(index) = key.extract::<i32>(py) {
|
|
|
|
if index == 5 {
|
|
|
|
return Err(PyErr::new::<exc::IndexError, NoArgs>(py, NoArgs));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Ok(key)
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn sequence() {
|
|
|
|
let gil = Python::acquire_gil();
|
|
|
|
let py = gil.python();
|
|
|
|
|
|
|
|
let c = Sequence::create_instance(py).unwrap();
|
|
|
|
py_assert!(py, c, "list(c) == [0, 1, 2, 3, 4]");
|
|
|
|
py_assert!(py, c, "c['abc'] == 'abc'");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-05-06 20:32:46 +00:00
|
|
|
py_class!(class Callable |py| {
|
|
|
|
def __call__(&self, arg: i32) -> PyResult<i32> {
|
|
|
|
Ok(arg * 6)
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn callable() {
|
|
|
|
let gil = Python::acquire_gil();
|
|
|
|
let py = gil.python();
|
|
|
|
|
|
|
|
let c = Callable::create_instance(py).unwrap();
|
|
|
|
py_assert!(py, c, "callable(c)");
|
|
|
|
py_assert!(py, c, "c(7) == 42");
|
|
|
|
|
|
|
|
let nc = Comparisons::create_instance(py, 0).unwrap();
|
|
|
|
py_assert!(py, nc, "not callable(nc)");
|
|
|
|
}
|
|
|
|
|