-
-
Notifications
You must be signed in to change notification settings - Fork 117
Expand file tree
/
Copy pathinto_url.rs
More file actions
112 lines (93 loc) · 2.55 KB
/
Copy pathinto_url.rs
File metadata and controls
112 lines (93 loc) · 2.55 KB
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
use url::Url;
use crate::Error;
/// A trait to try to convert some type into a `Url`.
///
/// This trait is "sealed", such that only types within wreq can
/// implement it.
pub trait IntoUrl: IntoUrlSealed {}
impl IntoUrl for Url {}
impl IntoUrl for String {}
impl IntoUrl for &Url {}
impl IntoUrl for &str {}
impl IntoUrl for &String {}
pub trait IntoUrlSealed {
// Besides parsing as a valid `Url`, the `Url` must be a valid
// `http::Uri`, in that it makes sense to use in a network request.
fn into_url(self) -> crate::Result<Url>;
fn as_str(&self) -> &str;
}
impl IntoUrlSealed for Url {
fn into_url(self) -> crate::Result<Url> {
if self.has_host() {
Ok(self)
} else {
Err(Error::url_bad_scheme().with_url(self))
}
}
fn as_str(&self) -> &str {
self.as_ref()
}
}
impl IntoUrlSealed for &Url {
fn into_url(self) -> crate::Result<Url> {
if self.has_host() {
Ok(self.clone())
} else {
Err(Error::url_bad_scheme().with_url(self.clone()))
}
}
fn as_str(&self) -> &str {
self.as_ref()
}
}
impl<T> IntoUrlSealed for T
where
T: AsRef<str> + sealed::Sealed,
{
fn into_url(self) -> crate::Result<Url> {
Url::parse(self.as_ref())
.map_err(Error::builder)?
.into_url()
}
fn as_str(&self) -> &str {
self.as_ref()
}
}
mod sealed {
use http::Uri;
pub trait Sealed {}
impl Sealed for Uri {}
impl Sealed for &str {}
impl Sealed for String {}
impl Sealed for &String {}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn into_url_file_scheme() {
let err = "file:///etc/hosts".into_url().unwrap_err();
assert_eq!(
err.to_string(),
"builder error for url (file:///etc/hosts): URL scheme is not allowed"
);
}
#[test]
fn into_url_blob_scheme() {
let err = "blob:https://example.com".into_url().unwrap_err();
assert_eq!(
err.to_string(),
"builder error for url (blob:https://example.com): URL scheme is not allowed"
);
}
#[tokio::test]
async fn execute_request_rejects_invalid_hostname() {
let url_str = "https://{{hostname}}/";
let url = url::Url::parse(url_str).unwrap();
let result = crate::Client::new().get(url).send().await;
assert!(result.is_err());
let err = result.err().unwrap();
assert!(err.is_builder());
assert_eq!(url_str, err.url().unwrap().as_str());
}
}