summaryrefslogtreecommitdiffstats
path: root/tests/legacy/merge.rs
blob: 30d9c58e38b7dd3a3261ac836be45473f109e9d5 (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
#![cfg(feature = "toml")]

use config::*;

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

    c.merge(File::new("tests/Settings-production", FileFormat::Toml))
        .unwrap();

    c
}

#[test]
fn test_merge() {
    let c = make();

    assert_eq!(c.get("debug").ok(), Some(false));
    assert_eq!(c.get("production").ok(), Some(true));
    assert_eq!(c.get("place.rating").ok(), Some(4.9));

    if cfg!(feature = "preserve_order") {
        let m: Map<String, String> = c.get("place.creator").unwrap();
        assert_eq!(
            m.into_iter().collect::<Vec<(String, String)>>(),
            vec![
                ("name".to_string(), "Somebody New".to_string()),
                ("username".to_string(), "jsmith".to_string()),
                ("email".to_string(), "jsmith@localhost".to_string()),
            ]
        );
    } else {
        assert_eq!(
            c.get("place.creator.name").ok(),
            Some("Somebody New".to_string())
        );
    }
}

#[test]
fn test_merge_whole_config() {
    let mut c1 = Config::default();
    let mut c2 = Config::default();

    c1.set("x", 10).unwrap();
    c2.set("y", 25).unwrap();

    assert_eq!(c1.get("x").ok(), Some(10));
    assert_eq!(c2.get::<()>("x").ok(), None);

    assert_eq!(c2.get("y").ok(), Some(25));
    assert_eq!(c1.get::<()>("y").ok(), None);

    c1.merge(c2).unwrap();

    assert_eq!(c1.get("x").ok(), Some(10));
    assert_eq!(c1.get("y").ok(), Some(25));
}