summaryrefslogtreecommitdiffstats
path: root/tests/file_ini.rs
blob: 4c0030af195d36a8ce6186134ca93b71f63d8084 (plain)
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
extern crate config;
extern crate serde;
extern crate float_cmp;

#[macro_use]
extern crate serde_derive;

use config::*;

#[derive(Debug, Deserialize, PartialEq)]
struct Place {
    name: String,
    longitude: f64,
    latitude: f64,
    favorite: bool,
    reviews: u64,
    rating: Option<f32>,
}

#[derive(Debug, Deserialize, PartialEq)]
struct Settings {
    debug: f64,
    place: Place,
}

fn make() -> Config {
    let mut c = Config::default();
    c.merge(File::new("tests/Settings", FileFormat::Ini))
        .unwrap();
    c
}

#[test]
fn test_file() {
    let c = make();
    let s: Settings = c.try_into().unwrap();
    assert_eq!(s, Settings {
        debug: 1.0,
        place: Place {
            name: String::from("Torre di Pisa"),
            longitude: 43.7224985,
            latitude: 10.3970522,
            favorite: false,
            reviews: 3866,
            rating: Some(4.5),
        },
    });
}

#[test]
fn test_error_parse() {
    let mut c = Config::default();
    let res = c.merge(File::new("tests/Settings-invalid", FileFormat::Ini));

    assert!(res.is_err());
    assert_eq!(
        res.unwrap_err().to_string(),
        r#"2:0 Expecting "[Some('='), Some(':')]" but found EOF. in tests/Settings-invalid.ini"#
    );
}