-
Notifications
You must be signed in to change notification settings - Fork 101
Expand file tree
/
Copy pathlocation.rs
More file actions
88 lines (75 loc) · 2.08 KB
/
location.rs
File metadata and controls
88 lines (75 loc) · 2.08 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
use std::convert::TryFrom;
use http::Uri;
use HeaderValue;
/// `Location` header, defined in
/// [RFC7231](http://tools.ietf.org/html/rfc7231#section-7.1.2)
///
/// The `Location` header field is used in some responses to refer to a
/// specific resource in relation to the response. The type of
/// relationship is defined by the combination of request method and
/// status code semantics.
///
/// # ABNF
///
/// ```text
/// Location = URI-reference
/// ```
///
/// # Example values
/// * `/People.html#tim`
/// * `http://www.example.net/index.html`
///
/// # Examples
///
#[derive(Clone, Debug, PartialEq)]
pub struct Location(HeaderValue);
derive_header! {
Location(_),
name: LOCATION
}
impl Location {
/// Accesses the header's value
pub fn value(&self) -> &HeaderValue {
&self.0
}
}
impl From<Uri> for Location {
fn from(uri: Uri) -> Self {
Self(
HeaderValue::try_from(uri.to_string())
// cf. https://www.rfc-editor.org/rfc/rfc3986#section-2
.expect("All URI characters should be valid HTTP header value characters"),
)
}
}
#[cfg(test)]
mod tests {
use super::super::test_decode;
use super::*;
#[test]
fn absolute_uri() {
let s = "http://www.example.net/index.html";
let loc = test_decode::<Location>(&[s]).unwrap();
assert_eq!(loc, Location(HeaderValue::from_static(s)));
}
#[test]
fn relative_uri_with_fragment() {
let s = "/People.html#tim";
let loc = test_decode::<Location>(&[s]).unwrap();
assert_eq!(loc, Location(HeaderValue::from_static(s)));
}
#[test]
fn uri_constructor() {
let s = "https://www.rust-lang.org/tools";
let uri: Uri = s.parse().unwrap();
let loc = Location::from(uri);
assert_eq!(loc, Location(HeaderValue::from_static(s)));
assert_eq!(loc.value().to_str().unwrap(), s);
}
#[test]
fn uri_constructor_invalid_chars() {
let s = "https://www.rust-lang.org/hélas";
let uri: Result<Uri, _> = s.parse();
assert!(uri.is_err());
}
}