pyo3/tests/test_bytes.rs

43 lines
1023 B
Rust
Raw Normal View History

2019-10-20 11:01:32 +00:00
use pyo3::prelude::*;
2020-05-17 22:13:56 +00:00
use pyo3::types::PyBytes;
2019-10-20 11:01:32 +00:00
use pyo3::wrap_pyfunction;
mod common;
#[pyfunction]
fn bytes_pybytes_conversion(bytes: &[u8]) -> &[u8] {
bytes
}
#[test]
fn test_pybytes_bytes_conversion() {
let gil = Python::acquire_gil();
let py = gil.python();
let f = wrap_pyfunction!(bytes_pybytes_conversion)(py).unwrap();
2020-05-17 22:13:56 +00:00
py_assert!(py, f, "f(b'Hello World') == b'Hello World'");
}
#[pyfunction]
fn bytes_vec_conversion(py: Python, bytes: Vec<u8>) -> &PyBytes {
PyBytes::new(py, bytes.as_slice())
}
#[test]
fn test_pybytes_vec_conversion() {
let gil = Python::acquire_gil();
let py = gil.python();
let f = wrap_pyfunction!(bytes_vec_conversion)(py).unwrap();
2020-05-17 22:13:56 +00:00
py_assert!(py, f, "f(b'Hello World') == b'Hello World'");
}
#[test]
fn test_bytearray_vec_conversion() {
let gil = Python::acquire_gil();
let py = gil.python();
let f = wrap_pyfunction!(bytes_vec_conversion)(py).unwrap();
2020-05-17 22:13:56 +00:00
py_assert!(py, f, "f(bytearray(b'Hello World')) == b'Hello World'");
2019-10-20 11:01:32 +00:00
}