Merge #3188
3188: Verify that macros do work without any imports r=adamreichold a=lifthrasiir Currently virtually all (positive) tests import `pyo3::prelude::*`, making it hard to detect a certain class of bugs. This PR adds an explicit test that never imports from `pyo3` to fix this. Also this fixes a minor bug from #3157 which didn't work without `use pyo3::types::PyType;`. I think this should be a part of 0.19.0 (#3187), so no additional changelog would be required (as this feature is new in 0.19.0). Co-authored-by: Kang Seonghoon <public+git@mearie.org>
This commit is contained in:
commit
03137e411e
|
@ -506,7 +506,9 @@ impl<'a> FnSpec<'a> {
|
|||
let (arg_convert, args) = impl_arg_params(self, cls, &py, false)?;
|
||||
let call = match &self.tp {
|
||||
FnType::FnNew => quote! { #rust_name(#(#args),*) },
|
||||
FnType::FnNewClass => quote! { #rust_name(PyType::from_type_ptr(#py, subtype), #(#args),*) },
|
||||
FnType::FnNewClass => {
|
||||
quote! { #rust_name(_pyo3::types::PyType::from_type_ptr(#py, subtype), #(#args),*) }
|
||||
}
|
||||
x => panic!("Only `FnNew` or `FnNewClass` may use the `TpNew` calling convention. Got: {:?}", x),
|
||||
};
|
||||
quote! {
|
||||
|
|
|
@ -0,0 +1,146 @@
|
|||
//! Tests that various macros work correctly without any PyO3 imports.
|
||||
|
||||
#![cfg(feature = "macros")]
|
||||
|
||||
#[pyo3::pyfunction]
|
||||
#[pyo3(name = "identity", signature = (x = None))]
|
||||
fn basic_function(py: pyo3::Python<'_>, x: Option<pyo3::PyObject>) -> pyo3::PyObject {
|
||||
x.unwrap_or_else(|| py.None())
|
||||
}
|
||||
|
||||
#[pyo3::pymodule]
|
||||
fn basic_module(_py: pyo3::Python<'_>, m: &pyo3::types::PyModule) -> pyo3::PyResult<()> {
|
||||
#[pyfn(m)]
|
||||
fn answer() -> usize {
|
||||
42
|
||||
}
|
||||
|
||||
m.add_function(pyo3::wrap_pyfunction!(basic_function, m)?)?;
|
||||
|
||||
Ok(())
|
||||
}
|
||||
|
||||
#[pyo3::pyclass]
|
||||
struct BasicClass {
|
||||
#[pyo3(get)]
|
||||
v: usize,
|
||||
#[pyo3(get, set)]
|
||||
s: String,
|
||||
}
|
||||
|
||||
#[pyo3::pymethods]
|
||||
impl BasicClass {
|
||||
#[classattr]
|
||||
const OKAY: bool = true;
|
||||
|
||||
#[new]
|
||||
fn new(arg: &pyo3::PyAny) -> pyo3::PyResult<Self> {
|
||||
if let Ok(v) = arg.extract::<usize>() {
|
||||
Ok(Self {
|
||||
v,
|
||||
s: "".to_string(),
|
||||
})
|
||||
} else {
|
||||
Ok(Self {
|
||||
v: 0,
|
||||
s: arg.extract()?,
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
#[getter]
|
||||
fn get_property(&self) -> usize {
|
||||
self.v * 100
|
||||
}
|
||||
|
||||
#[setter]
|
||||
fn set_property(&mut self, value: usize) {
|
||||
self.v = value / 100
|
||||
}
|
||||
|
||||
/// Some documentation here
|
||||
#[classmethod]
|
||||
fn classmethod(cls: &pyo3::types::PyType) -> &pyo3::types::PyType {
|
||||
cls
|
||||
}
|
||||
|
||||
#[staticmethod]
|
||||
fn staticmethod(py: pyo3::Python<'_>, v: usize) -> pyo3::Py<pyo3::PyAny> {
|
||||
use pyo3::IntoPy;
|
||||
v.to_string().into_py(py)
|
||||
}
|
||||
|
||||
fn __add__(&self, other: usize) -> usize {
|
||||
self.v + other
|
||||
}
|
||||
|
||||
fn __iadd__(&mut self, other: pyo3::PyRef<'_, Self>) {
|
||||
self.v += other.v;
|
||||
self.s.push_str(&other.s);
|
||||
}
|
||||
|
||||
fn mutate(mut slf: pyo3::PyRefMut<'_, Self>) {
|
||||
slf.v += slf.v;
|
||||
slf.s.push('!');
|
||||
}
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_basic() {
|
||||
pyo3::Python::with_gil(|py| {
|
||||
let module = pyo3::wrap_pymodule!(basic_module)(py);
|
||||
let cls = py.get_type::<BasicClass>();
|
||||
let d = pyo3::types::IntoPyDict::into_py_dict(
|
||||
&[
|
||||
("mod", module.as_ref(py).as_ref()),
|
||||
("cls", cls.as_ref()),
|
||||
("a", cls.call1((8,)).unwrap()),
|
||||
("b", cls.call1(("foo",)).unwrap()),
|
||||
],
|
||||
py,
|
||||
);
|
||||
|
||||
pyo3::py_run!(py, *d, "assert mod.answer() == 42");
|
||||
pyo3::py_run!(py, *d, "assert mod.identity() is None");
|
||||
pyo3::py_run!(py, *d, "v = object(); assert mod.identity(v) is v");
|
||||
pyo3::py_run!(py, *d, "assert cls.OKAY");
|
||||
pyo3::py_run!(py, *d, "assert (a.v, a.s) == (8, '')");
|
||||
pyo3::py_run!(py, *d, "assert (b.v, b.s) == (0, 'foo')");
|
||||
pyo3::py_run!(py, *d, "b.property = 314");
|
||||
pyo3::py_run!(py, *d, "assert b.property == 300");
|
||||
pyo3::py_run!(
|
||||
py,
|
||||
*d,
|
||||
"assert cls.classmethod.__doc__ == 'Some documentation here'"
|
||||
);
|
||||
pyo3::py_run!(py, *d, "assert cls.classmethod() is cls");
|
||||
pyo3::py_run!(py, *d, "assert cls.staticmethod(5) == '5'");
|
||||
pyo3::py_run!(py, *d, "a.s = 'bar'; assert a.s == 'bar'");
|
||||
pyo3::py_run!(py, *d, "a.mutate(); assert (a.v, a.s) == (16, 'bar!')");
|
||||
pyo3::py_run!(py, *d, "assert a + 9 == 25");
|
||||
pyo3::py_run!(py, *d, "b += a; assert (b.v, b.s) == (19, 'foobar!')");
|
||||
});
|
||||
}
|
||||
|
||||
#[pyo3::pyclass]
|
||||
struct NewClassMethod {
|
||||
#[pyo3(get)]
|
||||
cls: pyo3::PyObject,
|
||||
}
|
||||
|
||||
#[pyo3::pymethods]
|
||||
impl NewClassMethod {
|
||||
#[new]
|
||||
#[classmethod]
|
||||
fn new(cls: &pyo3::types::PyType) -> Self {
|
||||
Self { cls: cls.into() }
|
||||
}
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_new_class_method() {
|
||||
pyo3::Python::with_gil(|py| {
|
||||
let cls = py.get_type::<NewClassMethod>();
|
||||
pyo3::py_run!(py, cls, "assert cls().cls is cls");
|
||||
});
|
||||
}
|
Loading…
Reference in New Issue