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
use std::fmt::{self, Formatter};
use super::Url;
pub struct PathFormatter<'a, T:'a> {
pub path: &'a [T]
}
impl<'a, T: Str + fmt::String> fmt::String for PathFormatter<'a, T> {
fn fmt(&self, formatter: &mut Formatter) -> fmt::Result {
if self.path.is_empty() {
formatter.write_str("/")
} else {
for path_part in self.path.iter() {
try!("/".fmt(formatter));
try!(path_part.fmt(formatter));
}
Ok(())
}
}
}
pub struct UserInfoFormatter<'a> {
pub username: &'a str,
pub password: Option<&'a str>
}
impl<'a> fmt::String for UserInfoFormatter<'a> {
fn fmt(&self, formatter: &mut Formatter) -> fmt::Result {
if !self.username.is_empty() || self.password.is_some() {
try!(formatter.write_str(self.username));
match self.password {
None => (),
Some(password) => {
try!(formatter.write_str(":"));
try!(formatter.write_str(password));
}
}
try!(formatter.write_str("@"));
}
Ok(())
}
}
pub struct UrlNoFragmentFormatter<'a> {
pub url: &'a Url
}
impl<'a> fmt::String for UrlNoFragmentFormatter<'a> {
fn fmt(&self, formatter: &mut Formatter) -> fmt::Result {
try!(formatter.write_str(self.url.scheme.as_slice()));
try!(formatter.write_str(":"));
try!(self.url.scheme_data.fmt(formatter));
match self.url.query {
None => (),
Some(ref query) => {
try!(formatter.write_str("?"));
try!(formatter.write_str(query.as_slice()));
}
}
Ok(())
}
}
#[cfg(test)]
mod tests {
use super::super::Url;
use super::{PathFormatter, UserInfoFormatter};
#[test]
fn path_formatting() {
let data = [
(vec![], "/"),
(vec![""], "/"),
(vec!["test", "path"], "/test/path"),
(vec!["test", "path", ""], "/test/path/")
];
for &(ref path, result) in data.iter() {
assert_eq!(PathFormatter {
path: path.as_slice()
}.to_string(), result.to_string());
}
}
#[test]
fn userinfo_formatting() {
let data = [
("", None, ""),
("", Some(""), ":@"),
("", Some("password"), ":password@"),
("username", None, "username@"),
("username", Some(""), "username:@"),
("username", Some("password"), "username:password@")
];
for &(username, password, result) in data.iter() {
assert_eq!(UserInfoFormatter {
username: username,
password: password
}.to_string(), result.to_string());
}
}
#[test]
fn relative_scheme_url_formatting() {
let data = [
("http://example.com/", "http://example.com/"),
("http://addslash.com", "http://addslash.com/"),
("http://@emptyuser.com/", "http://emptyuser.com/"),
("http://:@emptypass.com/", "http://:@emptypass.com/"),
("http://user@user.com/", "http://user@user.com/"),
("http://user:pass@userpass.com/", "http://user:pass@userpass.com/"),
("http://slashquery.com/path/?q=something", "http://slashquery.com/path/?q=something"),
("http://noslashquery.com/path?q=something", "http://noslashquery.com/path?q=something")
];
for &(input, result) in data.iter() {
let url = Url::parse(input).unwrap();
assert_eq!(url.to_string(), result.to_string());
}
}
}