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
|
#[macro_use]
extern crate serde_derive;
extern crate serde_urlencoded;
#[test]
fn serialize_option_map_int() {
let params = &[("first", Some(23)), ("middle", None), ("last", Some(42))];
assert_eq!(serde_urlencoded::to_string(params),
Ok("first=23&last=42".to_owned()));
}
#[test]
fn serialize_option_map_string() {
let params =
&[("first", Some("hello")), ("middle", None), ("last", Some("world"))];
assert_eq!(serde_urlencoded::to_string(params),
Ok("first=hello&last=world".to_owned()));
}
#[test]
fn serialize_option_map_bool() {
let params = &[("one", Some(true)), ("two", Some(false))];
assert_eq!(serde_urlencoded::to_string(params),
Ok("one=true&two=false".to_owned()));
}
#[test]
fn serialize_map_bool() {
let params = &[("one", true), ("two", false)];
assert_eq!(serde_urlencoded::to_string(params),
Ok("one=true&two=false".to_owned()));
}
#[derive(Serialize, Deserialize)]
struct A { b: B, c: C }
#[derive(Serialize, Deserialize)]
struct B { b1: u8, b2: String }
#[derive(Serialize, Deserialize)]
struct C { c1: String, c2: u8 }
#[test]
fn serialize_struct() {
let params = A {
b: B {
b1: 10,
b2: "Ten".to_owned()
},
c: C {
c1: "Seven".to_owned(),
c2: 7
}
};
assert_eq!(serde_urlencoded::to_string(¶ms),
Ok(urlencode("b[b1]=10&b[b2]=Ten&c[c1]=Seven&c[c2]=7")));
}
fn urlencode(input: &str) -> String {
str::replace(&str::replace(input, "[", "%5B"), "]", "%5D")
}
|