1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666
use std::collections::{BTreeMap, HashMap};
use std::{fmt, path};
use std::borrow::Cow;
use time::{macros::format_description, format_description::FormatItem};
use crate::RawStr;
use crate::uri::fmt::{Part, Path, Query, Formatter};
/// Trait implemented by types that can be displayed as part of a URI in
/// [`uri!`].
///
/// Types implementing this trait can be displayed in a URI-safe manner. Unlike
/// `Display`, the string written by a `UriDisplay` implementation must be
/// URI-safe. In practice, this means that the string must either be
/// percent-encoded or consist only of characters that are alphanumeric, "-",
/// ".", "_", or "~" - the "unreserved" characters.
///
/// # Marker Generic: `Path`, `Query`
///
/// The [`Part`] parameter `P` in `UriDisplay<P>` must be either [`Path`] or
/// [`Query`] (see the [`Part`] documentation for how this is enforced),
/// resulting in either `UriDisplay<Path>` or `UriDisplay<Query>`.
///
/// As the names might imply, the `Path` version of the trait is used when
/// displaying parameters in the path part of the URI while the `Query` version
/// is used when displaying parameters in the query part of the URI. These
/// distinct versions of the trait exist exactly to differentiate, at the
/// type-level, where in the URI a value is to be written to, allowing for type
/// safety in the face of differences between the two locations. For example,
/// while it is valid to use a value of `None` in the query part, omitting the
/// parameter entirely, doing so is _not_ valid in the path part. By
/// differentiating in the type system, both of these conditions can be enforced
/// appropriately through distinct implementations of `UriDisplay<Path>` and
/// `UriDisplay<Query>`.
///
/// Occasionally, the implementation of `UriDisplay` is independent of where the
/// parameter is to be displayed. When this is the case, the parameter may be
/// kept generic. That is, implementations can take the form:
///
/// ```rust
/// # extern crate rocket;
/// # use std::fmt;
/// # use rocket::http::uri::fmt::{Part, UriDisplay, Formatter};
/// # struct SomeType;
/// impl<P: Part> UriDisplay<P> for SomeType
/// # { fn fmt(&self, f: &mut Formatter<P>) -> fmt::Result { Ok(()) } }
/// ```
///
/// # Code Generation
///
/// When the [`uri!`] macro is used to generate a URI for a route, the types for
/// the route's _path_ URI parameters must implement `UriDisplay<Path>`, while
/// types in the route's query parameters must implement `UriDisplay<Query>`.
/// Any parameters ignored with `_` must be of a type that implements
/// [`Ignorable`]. The `UriDisplay` implementation for these types is used when
/// generating the URI.
///
/// To illustrate `UriDisplay`'s role in code generation for `uri!`, consider
/// the following route:
///
/// ```rust
/// # #[macro_use] extern crate rocket;
/// #[get("/item/<id>?<track>")]
/// fn get_item(id: i32, track: Option<String>) { /* .. */ }
/// ```
///
/// A URI for this route can be generated as follows:
///
/// ```rust
/// # #[macro_use] extern crate rocket;
/// # type T = ();
/// # #[get("/item/<id>?<track>")]
/// # fn get_item(id: i32, track: Option<String>) { /* .. */ }
/// #
/// // With unnamed parameters.
/// uri!(get_item(100, Some("inbound")));
///
/// // With named parameters.
/// uri!(get_item(id = 100, track = Some("inbound")));
/// uri!(get_item(track = Some("inbound"), id = 100));
///
/// // Ignoring `track`.
/// uri!(get_item(100, _));
/// uri!(get_item(100, None as Option<String>));
/// uri!(get_item(id = 100, track = _));
/// uri!(get_item(track = _, id = 100));
/// uri!(get_item(id = 100, track = None as Option<&str>));
/// ```
///
/// After verifying parameters and their types, Rocket will generate code
/// similar (in spirit) to the following:
///
/// ```rust
/// # extern crate rocket;
/// # use rocket::http::uri::Origin;
/// # use rocket::http::uri::fmt::{UriDisplay, Path, Query};
/// #
/// Origin::parse(&format!("/item/{}?track={}",
/// &100 as &dyn UriDisplay<Path>, &"inbound" as &dyn UriDisplay<Query>));
/// ```
///
/// For this expression to typecheck, `i32` must implement `UriDisplay<Path>`
/// and `&str` must implement `UriDisplay<Query>`. What's more, when `track` is
/// ignored, `Option<String>` is required to implement [`Ignorable`]. As can be
/// seen, the implementations will be used to display the value in a URI-safe
/// manner.
///
/// [`uri!`]: rocket::uri
///
/// # Provided Implementations
///
/// Rocket implements `UriDisplay<P>` for all `P: Part` for several built-in
/// types.
///
/// * **i8, i16, i32, i64, i128, isize, u8, u16, u32, u64, u128, usize, f32,
/// f64, bool, IpAddr, Ipv4Addr, Ipv6Addr**
///
/// The implementation of `UriDisplay` for these types is identical to the
/// `Display` implementation.
///
/// * **`String`, `&str`, `Cow<str>`**
///
/// The string is percent encoded.
///
/// * **`&T`, `&mut T`** _where_ **`T: UriDisplay`**
///
/// Uses the implementation of `UriDisplay` for `T`.
///
/// Rocket implements `UriDisplay<Path>` (but not `UriDisplay<Query>`) for
/// several built-in types.
///
/// * `T` for **`Option<T>`** _where_ **`T: UriDisplay<Path>`**
///
/// Uses the implementation of `UriDisplay` for `T::Target`.
///
/// When a type of `Option<T>` appears in a route path, use a type of `T` as
/// the parameter in `uri!`. Note that `Option<T>` itself _does not_
/// implement `UriDisplay<Path>`.
///
/// * `T` for **`Result<T, E>`** _where_ **`T: UriDisplay<Path>`**
///
/// Uses the implementation of `UriDisplay` for `T::Target`.
///
/// When a type of `Result<T, E>` appears in a route path, use a type of `T`
/// as the parameter in `uri!`. Note that `Result<T, E>` itself _does not_
/// implement `UriDisplay<Path>`.
///
/// Rocket implements `UriDisplay<Query>` (but not `UriDisplay<Path>`) for
/// several built-in types.
///
/// * **`Form<T>`, `LenientForm<T>`** _where_ **`T: FromUriParam + FromForm`**
///
/// Uses the implementation of `UriDisplay` for `T::Target`.
///
/// In general, when a type of `Form<T>` is to be displayed as part of a
/// URI's query, it suffices to derive `UriDisplay` for `T`. Note that any
/// type that can be converted into a `T` using [`FromUriParam`] can be used
/// in place of a `Form<T>` in a `uri!` invocation.
///
/// * **`Option<T>`** _where_ **`T: UriDisplay<Query>`**
///
/// If the `Option` is `Some`, uses the implementation of `UriDisplay` for
/// `T`. Otherwise, nothing is rendered.
///
/// * **`Result<T, E>`** _where_ **`T: UriDisplay<Query>`**
///
/// If the `Result` is `Ok`, uses the implementation of `UriDisplay` for
/// `T`. Otherwise, nothing is rendered.
///
/// [`FromUriParam`]: crate::uri::fmt::FromUriParam
///
/// # Deriving
///
/// Manually implementing `UriDisplay` should be done with care. For most use
/// cases, deriving `UriDisplay` will suffice:
///
/// ```rust
/// # #[macro_use] extern crate rocket;
/// # use rocket::http::uri::fmt::{UriDisplay, Query, Path};
/// // Derives `UriDisplay<Query>`
/// #[derive(UriDisplayQuery)]
/// struct User {
/// name: String,
/// age: usize,
/// }
///
/// let user = User { name: "Michael Smith".into(), age: 31 };
/// let uri_string = format!("{}", &user as &dyn UriDisplay<Query>);
/// assert_eq!(uri_string, "name=Michael%20Smith&age=31");
///
/// // Derives `UriDisplay<Path>`
/// #[derive(UriDisplayPath)]
/// struct Name(String);
///
/// let name = Name("Bob Smith".into());
/// let uri_string = format!("{}", &name as &dyn UriDisplay<Path>);
/// assert_eq!(uri_string, "Bob%20Smith");
/// ```
///
/// As long as every field in the structure (or enum for [`UriDisplay<Query>`])
/// implements `UriDisplay`, the trait can be derived. The implementation calls
/// [`Formatter::write_named_value()`] for every named field and
/// [`Formatter::write_value()`] for every unnamed field. See the
/// [`UriDisplay<Path>`] and [`UriDisplay<Query>`] derive documentation for full
/// details.
///
/// [`Ignorable`]: crate::uri::fmt::Ignorable
/// [`UriDisplay<Path>`]: ../../../derive.UriDisplayPath.html
/// [`UriDisplay<Query>`]: ../../../derive.UriDisplayQuery.html
///
/// # Implementing
///
/// Implementing `UriDisplay` is similar to implementing
/// [`Display`](std::fmt::Display) with the caveat that extra care must be
/// taken to ensure that the written string is URI-safe. As mentioned before, in
/// practice, this means that the string must either be percent-encoded or
/// consist only of characters that are alphanumeric, "-", ".", "_", or "~".
///
/// When manually implementing `UriDisplay` for your types, you should defer to
/// existing implementations of `UriDisplay` as much as possible. In the example
/// below, for instance, `Name`'s implementation defers to `String`'s
/// implementation. To percent-encode a string, use
/// [`Uri::percent_encode()`](crate::uri::Uri::percent_encode()).
///
/// ## Example
///
/// The following snippet consists of a `Name` type that implements both
/// `FromParam` and `UriDisplay<Path>`. The `FromParam` implementation allows
/// `Name` to be used as the target type of a dynamic parameter, while the
/// `UriDisplay` implementation allows URIs to be generated for routes with
/// `Name` as a dynamic path parameter type. Note the custom parsing in the
/// `FromParam` implementation; as a result of this, a custom (reflexive)
/// `UriDisplay` implementation is required.
///
/// ```rust
/// # #[macro_use] extern crate rocket;
/// use rocket::request::FromParam;
///
/// struct Name<'r>(&'r str);
///
/// const PREFIX: &str = "name:";
///
/// impl<'r> FromParam<'r> for Name<'r> {
/// type Error = &'r str;
///
/// /// Validates parameters that start with 'name:', extracting the text
/// /// after 'name:' as long as there is at least one character.
/// fn from_param(param: &'r str) -> Result<Self, Self::Error> {
/// if !param.starts_with(PREFIX) || param.len() < (PREFIX.len() + 1) {
/// return Err(param);
/// }
///
/// let real_name = ¶m[PREFIX.len()..];
/// Ok(Name(real_name))
/// }
/// }
///
/// use std::fmt;
/// use rocket::http::impl_from_uri_param_identity;
/// use rocket::http::uri::fmt::{Formatter, FromUriParam, UriDisplay, Path};
/// use rocket::response::Redirect;
///
/// impl UriDisplay<Path> for Name<'_> {
/// // Writes the raw string `name:`, which is URI-safe, and then delegates
/// // to the `UriDisplay` implementation for `str` which ensures that
/// // string is written in a URI-safe manner. In this case, the string will
/// // be percent encoded.
/// fn fmt(&self, f: &mut Formatter<Path>) -> fmt::Result {
/// f.write_raw("name:")?;
/// UriDisplay::fmt(&self.0, f)
/// }
/// }
///
/// impl_from_uri_param_identity!([Path] ('a) Name<'a>);
///
/// #[get("/name/<name>")]
/// fn redirector(name: Name<'_>) -> Redirect {
/// Redirect::to(uri!(real(name)))
/// }
///
/// #[get("/<name>")]
/// fn real(name: Name<'_>) -> String {
/// format!("Hello, {}!", name.0)
/// }
///
/// let uri = uri!(real(Name("Mike Smith".into())));
/// assert_eq!(uri.path(), "/name:Mike%20Smith");
/// ```
pub trait UriDisplay<P: Part> {
/// Formats `self` in a URI-safe manner using the given formatter.
fn fmt(&self, f: &mut Formatter<'_, P>) -> fmt::Result;
}
impl<P: Part> fmt::Display for &dyn UriDisplay<P> {
#[inline(always)]
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
UriDisplay::fmt(*self, &mut <Formatter<'_, P>>::new(f))
}
}
// Direct implementations: these are the leaves of a call to `UriDisplay::fmt`.
/// Percent-encodes the raw string.
impl<P: Part> UriDisplay<P> for str {
#[inline(always)]
fn fmt(&self, f: &mut Formatter<'_, P>) -> fmt::Result {
f.write_raw(RawStr::new(self).percent_encode().as_str())
}
}
/// Percent-encodes each segment in the path and normalizes separators.
impl UriDisplay<Path> for path::Path {
fn fmt(&self, f: &mut Formatter<'_, Path>) -> fmt::Result {
use std::path::Component;
for component in self.components() {
match component {
Component::Prefix(_) | Component::RootDir => continue,
_ => f.write_value(&component.as_os_str().to_string_lossy())?
}
}
Ok(())
}
}
macro_rules! impl_with_display {
($($T:ty),+ $(,)?) => {$(
/// This implementation is identical to the `Display` implementation.
impl<P: Part> UriDisplay<P> for $T {
#[inline(always)]
fn fmt(&self, f: &mut Formatter<'_, P>) -> fmt::Result {
use std::fmt::Write;
write!(f, "{}", self)
}
}
)+}
}
use std::net::{IpAddr, Ipv4Addr, Ipv6Addr};
use std::num::{
NonZeroIsize, NonZeroI8, NonZeroI16, NonZeroI32, NonZeroI64, NonZeroI128,
NonZeroUsize, NonZeroU8, NonZeroU16, NonZeroU32, NonZeroU64, NonZeroU128,
};
// Keep in-sync with the 'FromUriParam' impls.
impl_with_display! {
i8, i16, i32, i64, i128, isize,
u8, u16, u32, u64, u128, usize,
f32, f64, bool,
IpAddr, Ipv4Addr, Ipv6Addr,
NonZeroIsize, NonZeroI8, NonZeroI16, NonZeroI32, NonZeroI64, NonZeroI128,
NonZeroUsize, NonZeroU8, NonZeroU16, NonZeroU32, NonZeroU64, NonZeroU128,
}
macro_rules! impl_with_string {
($($T:ty => $f:expr),+ $(,)?) => {$(
/// This implementation is identical to a percent-encoded version of the
/// `Display` implementation.
impl<P: Part> UriDisplay<P> for $T {
#[inline(always)]
fn fmt(&self, f: &mut Formatter<'_, P>) -> fmt::Result {
let func: fn(&$T) -> Result<String, fmt::Error> = $f;
func(self).and_then(|s| s.as_str().fmt(f))
}
}
)+}
}
use std::net::{SocketAddr, SocketAddrV4, SocketAddrV6};
// Keep formats in sync with 'FromFormField' impls.
static DATE_FMT: &[FormatItem<'_>] = format_description!("[year padding:none]-[month]-[day]");
static TIME_FMT: &[FormatItem<'_>] = format_description!("[hour padding:none]:[minute]:[second]");
static DATE_TIME_FMT: &[FormatItem<'_>] =
format_description!("[year padding:none]-[month]-[day]T[hour padding:none]:[minute]:[second]");
// Keep list in sync with the 'FromUriParam' impls.
impl_with_string! {
time::Date => |d| d.format(&DATE_FMT).map_err(|_| fmt::Error),
time::Time => |d| d.format(&TIME_FMT).map_err(|_| fmt::Error),
time::PrimitiveDateTime => |d| d.format(&DATE_TIME_FMT).map_err(|_| fmt::Error),
SocketAddr => |a| Ok(a.to_string()),
SocketAddrV4 => |a| Ok(a.to_string()),
SocketAddrV6 => |a| Ok(a.to_string()),
}
// These are second level implementations: they all defer to an existing
// implementation. Keep in-sync with `FromUriParam` impls.
/// Percent-encodes the raw string. Defers to `str`.
impl<P: Part> UriDisplay<P> for String {
#[inline(always)]
fn fmt(&self, f: &mut Formatter<'_, P>) -> fmt::Result {
self.as_str().fmt(f)
}
}
/// Percent-encodes the raw string. Defers to `str`.
impl<P: Part> UriDisplay<P> for Cow<'_, str> {
#[inline(always)]
fn fmt(&self, f: &mut Formatter<'_, P>) -> fmt::Result {
self.as_ref().fmt(f)
}
}
/// Percent-encodes each segment in the path and normalizes separators.
impl UriDisplay<Path> for path::PathBuf {
#[inline(always)]
fn fmt(&self, f: &mut Formatter<'_, Path>) -> fmt::Result {
self.as_path().fmt(f)
}
}
/// Defers to the `UriDisplay<P>` implementation for `T`.
impl<P: Part, T: UriDisplay<P> + ?Sized> UriDisplay<P> for &T {
#[inline(always)]
fn fmt(&self, f: &mut Formatter<'_, P>) -> fmt::Result {
UriDisplay::fmt(*self, f)
}
}
/// Defers to the `UriDisplay<P>` implementation for `T`.
impl<P: Part, T: UriDisplay<P> + ?Sized> UriDisplay<P> for &mut T {
#[inline(always)]
fn fmt(&self, f: &mut Formatter<'_, P>) -> fmt::Result {
UriDisplay::fmt(*self, f)
}
}
/// Defers to the `UriDisplay<Query>` implementation for `T`.
impl<T: UriDisplay<Query>> UriDisplay<Query> for Option<T> {
#[inline(always)]
fn fmt(&self, f: &mut Formatter<'_, Query>) -> fmt::Result {
match self {
Some(v) => v.fmt(f),
None => Ok(())
}
}
}
/// Defers to the `UriDisplay<Query>` implementation for `T`.
impl<T: UriDisplay<Query>, E> UriDisplay<Query> for Result<T, E> {
#[inline(always)]
fn fmt(&self, f: &mut Formatter<'_, Query>) -> fmt::Result {
match self {
Ok(v) => v.fmt(f),
Err(_) => Ok(())
}
}
}
impl<T: UriDisplay<Query>> UriDisplay<Query> for Vec<T> {
fn fmt(&self, f: &mut Formatter<'_, Query>) -> fmt::Result {
for value in self {
f.write_value(value)?;
}
Ok(())
}
}
impl<K: UriDisplay<Query>, V: UriDisplay<Query>> UriDisplay<Query> for HashMap<K, V> {
fn fmt(&self, f: &mut Formatter<'_, Query>) -> fmt::Result {
use std::fmt::Write;
let mut field_name = String::with_capacity(8);
for (i, (key, value)) in self.iter().enumerate() {
field_name.truncate(0);
write!(field_name, "k:{}", i)?;
f.write_named_value(&field_name, key)?;
field_name.replace_range(..1, "v");
f.write_named_value(&field_name, value)?;
}
Ok(())
}
}
impl<K: UriDisplay<Query>, V: UriDisplay<Query>> UriDisplay<Query> for BTreeMap<K, V> {
fn fmt(&self, f: &mut Formatter<'_, Query>) -> fmt::Result {
use std::fmt::Write;
let mut field_name = String::with_capacity(8);
for (i, (key, value)) in self.iter().enumerate() {
field_name.truncate(0);
write!(field_name, "k:{}", i)?;
f.write_named_value(&field_name, key)?;
field_name.replace_range(..1, "v");
f.write_named_value(&field_name, value)?;
}
Ok(())
}
}
#[cfg(feature = "uuid")] impl_with_display!(uuid_::Uuid);
#[cfg(feature = "uuid")] crate::impl_from_uri_param_identity!(uuid_::Uuid);
// And finally, the `Ignorable` trait, which has sugar of `_` in the `uri!`
// macro, which expands to a typecheck.
/// Trait implemented by types that can be ignored in `uri!`.
///
/// When a parameter is explicitly ignored in `uri!` by supplying `_` as the
/// parameter's value, that parameter's type is required to implement this
/// trait for the corresponding `Part`.
///
/// ```rust
/// # #[macro_use] extern crate rocket;
/// #[get("/item/<id>?<track>")]
/// fn get_item(id: i32, track: Option<u8>) { /* .. */ }
///
/// // Ignore the `track` parameter: `Option<u8>` must be `Ignorable`.
/// uri!(get_item(100, _));
/// uri!(get_item(id = 100, track = _));
///
/// // Provide a value for `track`.
/// uri!(get_item(100, Some(4)));
/// uri!(get_item(id = 100, track = Some(4)));
/// ```
///
/// # Implementations
///
/// Only `Option<T>` and `Result<T, E>` implement this trait. You may implement
/// this trait for your own ignorable types as well:
///
/// ```rust
/// # #[macro_use] extern crate rocket;
/// use rocket::http::uri::fmt::{Ignorable, Query};
///
/// # struct MyType;
/// impl Ignorable<Query> for MyType { }
/// ```
pub trait Ignorable<P: Part> { }
impl<T> Ignorable<Query> for Option<T> { }
impl<T, E> Ignorable<Query> for Result<T, E> { }
#[doc(hidden)]
pub fn assert_ignorable<P: Part, T: Ignorable<P>>() { }
#[cfg(test)]
mod uri_display_tests {
use std::path;
use crate::uri::fmt::{FromUriParam, UriDisplay};
use crate::uri::fmt::{Query, Path};
macro_rules! uri_display {
(<$P:ident, $Target:ty> $source:expr) => ({
let tmp = $source;
let target = <$Target as FromUriParam<$P, _>>::from_uri_param(tmp);
format!("{}", &target as &dyn UriDisplay<$P>)
})
}
macro_rules! assert_display {
(<$P:ident, $Target:ty> $source:expr, $expected:expr) => ({
assert_eq!(uri_display!(<$P, $Target> $source), $expected);
})
}
#[test]
fn uri_display_encoding() {
assert_display!(<Query, String> "hello", "hello");
assert_display!(<Query, String> "hi hi", "hi%20hi");
assert_display!(<Query, &str> "hi hi", "hi%20hi");
assert_display!(<Query, &str> &"hi hi", "hi%20hi");
assert_display!(<Query, usize> 10, "10");
assert_display!(<Query, u8> 10, "10");
assert_display!(<Query, i32> 10, "10");
assert_display!(<Query, isize> 10, "10");
assert_display!(<Path, String> "hello", "hello");
assert_display!(<Path, String> "hi hi", "hi%20hi");
assert_display!(<Path, &str> "hi hi", "hi%20hi");
assert_display!(<Path, &str> &"hi hi", "hi%20hi");
assert_display!(<Path, usize> 10, "10");
assert_display!(<Path, u8> 10, "10");
assert_display!(<Path, i32> 10, "10");
assert_display!(<Path, isize> 10, "10");
assert_display!(<Query, &str> &"hi there", "hi%20there");
assert_display!(<Query, isize> &10, "10");
assert_display!(<Query, u8> &10, "10");
assert_display!(<Path, &str> &"hi there", "hi%20there");
assert_display!(<Path, isize> &10, "10");
assert_display!(<Path, u8> &10, "10");
assert_display!(<Path, Option<&str>> &"hi there", "hi%20there");
assert_display!(<Path, Option<isize>> &10, "10");
assert_display!(<Path, Option<u8>> &10, "10");
assert_display!(<Query, Option<&str>> Some(&"hi there"), "hi%20there");
assert_display!(<Query, Option<isize>> Some(&10), "10");
assert_display!(<Query, Option<u8>> Some(&10), "10");
assert_display!(<Path, Result<&str, usize>> &"hi there", "hi%20there");
assert_display!(<Path, Result<isize, &str>> &10, "10");
assert_display!(<Path, Result<u8, String>> &10, "10");
assert_display!(<Query, Result<&str, usize>> Ok(&"hi there"), "hi%20there");
assert_display!(<Query, Result<isize, &str>> Ok(&10), "10");
assert_display!(<Query, Result<u8, String>> Ok(&10), "10");
}
#[test]
fn paths() {
assert_display!(<Path, path::PathBuf> "hello", "hello");
assert_display!(<Path, path::PathBuf> "hi there", "hi%20there");
assert_display!(<Path, path::PathBuf> "hello/world", "hello/world");
assert_display!(<Path, path::PathBuf> "hello//world", "hello/world");
assert_display!(<Path, path::PathBuf> "hello/ world", "hello/%20world");
assert_display!(<Path, path::PathBuf> "hi/wo rld", "hi/wo%20rld");
assert_display!(<Path, path::PathBuf> &"hi/wo rld", "hi/wo%20rld");
assert_display!(<Path, path::PathBuf> &"hi there", "hi%20there");
}
struct Wrapper<T>(T);
impl<A, T: FromUriParam<Query, A>> FromUriParam<Query, A> for Wrapper<T> {
type Target = T::Target;
#[inline(always)]
fn from_uri_param(param: A) -> Self::Target {
T::from_uri_param(param)
}
}
impl FromUriParam<Path, usize> for Wrapper<usize> {
type Target = usize;
#[inline(always)]
fn from_uri_param(param: usize) -> Self::Target {
param
}
}
#[test]
fn uri_display_encoding_wrapped() {
assert_display!(<Query, Option<Wrapper<&str>>> Some(&"hi there"), "hi%20there");
assert_display!(<Query, Option<Wrapper<&str>>> Some("hi there"), "hi%20there");
assert_display!(<Query, Option<Wrapper<isize>>> Some(10), "10");
assert_display!(<Query, Option<Wrapper<usize>>> Some(18), "18");
assert_display!(<Path, Option<Wrapper<usize>>> 238, "238");
assert_display!(<Path, Result<Option<Wrapper<usize>>, usize>> 238, "238");
assert_display!(<Path, Option<Result<Wrapper<usize>, usize>>> 123, "123");
}
#[test]
fn check_ignorables() {
use crate::uri::fmt::assert_ignorable;
assert_ignorable::<Query, Option<usize>>();
assert_ignorable::<Query, Option<Wrapper<usize>>>();
assert_ignorable::<Query, Result<Wrapper<usize>, usize>>();
assert_ignorable::<Query, Option<Result<Wrapper<usize>, usize>>>();
assert_ignorable::<Query, Result<Option<Wrapper<usize>>, usize>>();
}
}