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

extern crate config;

use std::collections::HashMap;

use config::*;

fn make() -> Config {
    Config::builder()
        .add_source(File::new("tests/Settings", FileFormat::Toml))
        .add_source(File::new("tests/Settings-production", FileFormat::Toml))
        .build()
        .unwrap()
}

#[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));

    let m: HashMap<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()),
        ]
    );
}

#[test]
fn test_merge_whole_config() {
    let builder1 = Config::builder().set_override("x", 10).unwrap();
    let builder2 = Config::builder().set_override("y", 25).unwrap();

    let config1 = builder1.build_cloned().unwrap();
    let config2 = builder2.build_cloned().unwrap();

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

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

    let config3 = builder1.add_source(config2).build().unwrap();

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