mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 23:12:02 +00:00
a646b39965
* remove `impl Provider for Error` * rename `Demand` to `Request` * update docstrings to focus on the conceptual API provided by `Request` * move `core::any::{request_ref, request_value}` functions into `core::error` * move `core::any::tag`, `core::any::Request`, an `core::any::TaggedOption` into `core::error` * replace `provide_any` feature name w/ `error_generic_member_access` * move `core::error::request_{ref,value} tests into core::tests::error module * update unit and doc tests
67 lines
2.3 KiB
Rust
67 lines
2.3 KiB
Rust
use core::error::{request_value, request_ref, Request};
|
|
|
|
// Test the `Request` API.
|
|
#[derive(Debug)]
|
|
struct SomeConcreteType {
|
|
some_string: String,
|
|
}
|
|
|
|
impl std::fmt::Display for SomeConcreteType {
|
|
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
|
write!(f, "A")
|
|
}
|
|
}
|
|
|
|
impl std::error::Error for SomeConcreteType {
|
|
fn provide<'a>(&'a self, request: &mut Request<'a>) {
|
|
request
|
|
.provide_ref::<String>(&self.some_string)
|
|
.provide_ref::<str>(&self.some_string)
|
|
.provide_value_with::<String>(|| "bye".to_owned());
|
|
}
|
|
}
|
|
|
|
// Test the Error.provide and request mechanisms with a by-reference trait object.
|
|
#[test]
|
|
fn test_error_generic_member_access() {
|
|
let obj = &SomeConcreteType { some_string: "hello".to_owned() };
|
|
|
|
assert_eq!(request_ref::<String>(&*obj).unwrap(), "hello");
|
|
assert_eq!(request_value::<String>(&*obj).unwrap(), "bye");
|
|
assert_eq!(request_value::<u8>(&obj), None);
|
|
}
|
|
|
|
// Test the Error.provide and request mechanisms with a by-reference trait object.
|
|
#[test]
|
|
fn test_request_constructor() {
|
|
let obj: &dyn std::error::Error = &SomeConcreteType { some_string: "hello".to_owned() };
|
|
|
|
assert_eq!(request_ref::<String>(&*obj).unwrap(), "hello");
|
|
assert_eq!(request_value::<String>(&*obj).unwrap(), "bye");
|
|
assert_eq!(request_value::<u8>(&obj), None);
|
|
}
|
|
|
|
// Test the Error.provide and request mechanisms with a boxed trait object.
|
|
#[test]
|
|
fn test_error_generic_member_access_boxed() {
|
|
let obj: Box<dyn std::error::Error> =
|
|
Box::new(SomeConcreteType { some_string: "hello".to_owned() });
|
|
|
|
assert_eq!(request_ref::<String>(&*obj).unwrap(), "hello");
|
|
assert_eq!(request_value::<String>(&*obj).unwrap(), "bye");
|
|
|
|
// NOTE: Box<E> only implements Error when E: Error + Sized, which means we can't pass a
|
|
// Box<dyn Error> to request_value.
|
|
//assert_eq!(request_value::<String>(&obj).unwrap(), "bye");
|
|
}
|
|
|
|
// Test the Error.provide and request mechanisms with a concrete object.
|
|
#[test]
|
|
fn test_error_generic_member_access_concrete() {
|
|
let obj = SomeConcreteType { some_string: "hello".to_owned() };
|
|
|
|
assert_eq!(request_ref::<String>(&obj).unwrap(), "hello");
|
|
assert_eq!(request_value::<String>(&obj).unwrap(), "bye");
|
|
assert_eq!(request_value::<u8>(&obj), None);
|
|
}
|