1
use ron::{
2
    de::from_str,
3
    ser::{to_string, to_string_pretty, PrettyConfig},
4
};
5

            
6
84
fn test_string_roundtrip(s: &str, config: Option<PrettyConfig>) -> String {
7
84
    let ser = match config {
8
56
        Some(config) => to_string_pretty(s, config),
9
28
        None => to_string(s),
10
    }
11
84
    .unwrap();
12
84

            
13
84
    let de: String = from_str(&ser).unwrap();
14
84

            
15
84
    assert_eq!(s, de);
16

            
17
84
    ser
18
84
}
19

            
20
#[test]
21
4
fn test_escaped_string() {
22
4
    let config = Some(PrettyConfig::default());
23
4

            
24
4
    assert_eq!(test_string_roundtrip("a\nb", None), r#""a\nb""#);
25
4
    assert_eq!(test_string_roundtrip("a\nb", config.clone()), r#""a\nb""#);
26

            
27
4
    assert_eq!(test_string_roundtrip("", None), "\"\"");
28
4
    assert_eq!(test_string_roundtrip("", config.clone()), "\"\"");
29

            
30
4
    assert_eq!(test_string_roundtrip("\"", None), r#""\"""#);
31
4
    assert_eq!(test_string_roundtrip("\"", config.clone()), r#""\"""#);
32

            
33
4
    assert_eq!(test_string_roundtrip("#", None), "\"#\"");
34
4
    assert_eq!(test_string_roundtrip("#", config.clone()), "\"#\"");
35

            
36
4
    assert_eq!(test_string_roundtrip("\"#", None), r##""\"#""##);
37
4
    assert_eq!(test_string_roundtrip("\"#", config.clone()), r##""\"#""##);
38

            
39
4
    assert_eq!(test_string_roundtrip("#\"#", None), r##""#\"#""##);
40
4
    assert_eq!(test_string_roundtrip("#\"#", config.clone()), r##""#\"#""##);
41

            
42
4
    assert_eq!(test_string_roundtrip("#\"##", None), r###""#\"##""###);
43
4
    assert_eq!(test_string_roundtrip("#\"##", config), r###""#\"##""###);
44
4
}
45

            
46
#[test]
47
4
fn test_unescaped_string() {
48
4
    let config = Some(PrettyConfig::default().escape_strings(false));
49
4

            
50
4
    assert_eq!(test_string_roundtrip("a\nb", config.clone()), "\"a\nb\"");
51
4
    assert_eq!(test_string_roundtrip("", config.clone()), "\"\"");
52
4
    assert_eq!(test_string_roundtrip("\"", config.clone()), "r#\"\"\"#");
53
4
    assert_eq!(test_string_roundtrip("#", config.clone()), "\"#\"");
54
4
    assert_eq!(test_string_roundtrip("\"#", config.clone()), "r##\"\"#\"##");
55
4
    assert_eq!(
56
4
        test_string_roundtrip("#\"#", config.clone()),
57
4
        "r##\"#\"#\"##"
58
4
    );
59
4
    assert_eq!(test_string_roundtrip("#\"##", config), "r###\"#\"##\"###");
60
4
}