aboutsummaryrefslogtreecommitdiff
path: root/test-suite/tests/spanned.rs
blob: c5dc28e96cde06a4e4db179a3908f5b8b5f3a5a5 (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
extern crate serde;
extern crate toml;
#[macro_use]
extern crate serde_derive;

use toml::Spanned;
use std::collections::HashMap;

#[test]
fn test_spanned_field() {
    #[derive(Deserialize)]
    struct Foo<T> {
        foo: Spanned<T>,
    }

    fn good<'de, T>(s: &'de str, expected: &str) where T: serde::Deserialize<'de> {
        let foo: Foo<T> = toml::from_str(s).unwrap();

        assert_eq!(6, foo.foo.start);
        assert_eq!(s.len(), foo.foo.end);
        assert_eq!(expected, &s[foo.foo.start..foo.foo.end]);
    }

    good::<String>("foo = \"foo\"", "\"foo\"");
    good::<u32>("foo = 42", "42");
    // leading plus
    good::<u32>("foo = +42", "+42");
    // table
    good::<HashMap<String, u32>>(
        "foo = {\"foo\" = 42, \"bar\" = 42}",
        "{\"foo\" = 42, \"bar\" = 42}"
    );
    // array
    good::<Vec<u32>>(
        "foo = [0, 1, 2, 3, 4]",
        "[0, 1, 2, 3, 4]"
    );
    // datetime
    good::<String>(
        "foo = \"1997-09-09T09:09:09Z\"",
        "\"1997-09-09T09:09:09Z\""
    );
}