2021-12-03 00:03:32 +00:00
|
|
|
#![cfg(feature = "macros")]
|
|
|
|
|
2019-10-22 22:38:13 +00:00
|
|
|
use pyo3::prelude::*;
|
|
|
|
|
2023-09-24 12:34:53 +00:00
|
|
|
#[path = "../src/tests/common.rs"]
|
2019-10-22 22:38:13 +00:00
|
|
|
mod common;
|
|
|
|
|
|
|
|
#[pyfunction]
|
2021-02-11 21:37:38 +00:00
|
|
|
fn take_str(_s: &str) {}
|
2019-10-22 22:38:13 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_unicode_encode_error() {
|
2022-07-19 17:34:23 +00:00
|
|
|
Python::with_gil(|py| {
|
|
|
|
let take_str = wrap_pyfunction!(take_str)(py).unwrap();
|
|
|
|
py_expect_exception!(
|
|
|
|
py,
|
|
|
|
take_str,
|
|
|
|
"take_str('\\ud800')",
|
|
|
|
PyUnicodeEncodeError,
|
|
|
|
"'utf-8' codec can't encode character '\\ud800' in position 0: surrogates not allowed"
|
|
|
|
);
|
|
|
|
});
|
2019-10-22 22:38:13 +00:00
|
|
|
}
|