2021-12-03 00:03:32 +00:00
|
|
|
#![cfg(feature = "macros")]
|
|
|
|
|
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
|
|
|
|
|
|
|
mod common;
|
|
|
|
|
|
|
|
#[pyfunction]
|
|
|
|
fn bytes_pybytes_conversion(bytes: &[u8]) -> &[u8] {
|
|
|
|
bytes
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_pybytes_bytes_conversion() {
|
2022-07-19 17:34:23 +00:00
|
|
|
Python::with_gil(|py| {
|
|
|
|
let f = wrap_pyfunction!(bytes_pybytes_conversion)(py).unwrap();
|
|
|
|
py_assert!(py, f, "f(b'Hello World') == b'Hello World'");
|
|
|
|
});
|
2020-05-17 22:13:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[pyfunction]
|
2022-03-23 07:07:28 +00:00
|
|
|
fn bytes_vec_conversion(py: Python<'_>, bytes: Vec<u8>) -> &PyBytes {
|
2020-05-17 22:13:56 +00:00
|
|
|
PyBytes::new(py, bytes.as_slice())
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_pybytes_vec_conversion() {
|
2022-07-19 17:34:23 +00:00
|
|
|
Python::with_gil(|py| {
|
|
|
|
let f = wrap_pyfunction!(bytes_vec_conversion)(py).unwrap();
|
|
|
|
py_assert!(py, f, "f(b'Hello World') == b'Hello World'");
|
|
|
|
});
|
2020-05-17 22:13:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_bytearray_vec_conversion() {
|
2022-07-19 17:34:23 +00:00
|
|
|
Python::with_gil(|py| {
|
|
|
|
let f = wrap_pyfunction!(bytes_vec_conversion)(py).unwrap();
|
|
|
|
py_assert!(py, f, "f(bytearray(b'Hello World')) == b'Hello World'");
|
|
|
|
});
|
2019-10-20 11:01:32 +00:00
|
|
|
}
|
2022-03-19 15:46:40 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_py_as_bytes() {
|
2022-07-19 17:34:23 +00:00
|
|
|
let pyobj: pyo3::Py<pyo3::types::PyBytes> =
|
|
|
|
Python::with_gil(|py| pyo3::types::PyBytes::new(py, b"abc").into_py(py));
|
|
|
|
|
|
|
|
let data = Python::with_gil(|py| pyobj.as_bytes(py));
|
2022-03-19 15:46:40 +00:00
|
|
|
|
|
|
|
assert_eq!(data, b"abc");
|
|
|
|
}
|