94 lines
1.9 KiB
Rust
94 lines
1.9 KiB
Rust
#![feature(specialization)]
|
|
|
|
extern crate pyo3;
|
|
|
|
use pyo3::prelude::*;
|
|
|
|
#[pyclass]
|
|
struct EmptyClassWithNew {
|
|
token: PyToken,
|
|
}
|
|
|
|
#[pymethods]
|
|
impl EmptyClassWithNew {
|
|
#[__new__]
|
|
fn __new__(obj: &PyRawObject) -> PyResult<()> {
|
|
obj.init(|t| EmptyClassWithNew { token: t })
|
|
}
|
|
}
|
|
|
|
#[test]
|
|
fn empty_class_with_new() {
|
|
let gil = Python::acquire_gil();
|
|
let py = gil.python();
|
|
let typeobj = py.get_type::<EmptyClassWithNew>();
|
|
assert!(
|
|
typeobj
|
|
.call(NoArgs, None)
|
|
.unwrap()
|
|
.cast_as::<EmptyClassWithNew>()
|
|
.is_ok()
|
|
);
|
|
}
|
|
|
|
#[pyclass]
|
|
struct NewWithOneArg {
|
|
_data: i32,
|
|
token: PyToken,
|
|
}
|
|
|
|
#[pymethods]
|
|
impl NewWithOneArg {
|
|
#[new]
|
|
fn __new__(obj: &PyRawObject, arg: i32) -> PyResult<()> {
|
|
obj.init(|t| NewWithOneArg {
|
|
_data: arg,
|
|
token: t,
|
|
})
|
|
}
|
|
}
|
|
|
|
#[test]
|
|
fn new_with_one_arg() {
|
|
let gil = Python::acquire_gil();
|
|
let py = gil.python();
|
|
let typeobj = py.get_type::<NewWithOneArg>();
|
|
let wrp = typeobj.call((42,), None).unwrap();
|
|
let obj = wrp.cast_as::<NewWithOneArg>().unwrap();
|
|
assert_eq!(obj._data, 42);
|
|
}
|
|
|
|
#[pyclass]
|
|
struct NewWithTwoArgs {
|
|
_data1: i32,
|
|
_data2: i32,
|
|
|
|
token: PyToken,
|
|
}
|
|
|
|
#[pymethods]
|
|
impl NewWithTwoArgs {
|
|
#[new]
|
|
fn __new__(obj: &PyRawObject, arg1: i32, arg2: i32) -> PyResult<()> {
|
|
obj.init(|t| NewWithTwoArgs {
|
|
_data1: arg1,
|
|
_data2: arg2,
|
|
token: t,
|
|
})
|
|
}
|
|
}
|
|
|
|
#[test]
|
|
fn new_with_two_args() {
|
|
let gil = Python::acquire_gil();
|
|
let py = gil.python();
|
|
let typeobj = py.get_type::<NewWithTwoArgs>();
|
|
let wrp = typeobj
|
|
.call((10, 20), None)
|
|
.map_err(|e| e.print(py))
|
|
.unwrap();
|
|
let obj = wrp.cast_as::<NewWithTwoArgs>().unwrap();
|
|
assert_eq!(obj._data1, 10);
|
|
assert_eq!(obj._data2, 20);
|
|
}
|