summaryrefslogtreecommitdiffstats
path: root/vendor/darling-0.14.4/tests/split_declaration.rs
blob: 8db11d0f031b88104c1aaa410c7318ef8b4e006d (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
61
62
63
64
65
66
67
//! When input is split across multiple attributes on one element,
//! darling should collapse that into one struct.

use darling::{Error, FromDeriveInput};
use syn::parse_quote;

#[derive(Debug, FromDeriveInput, PartialEq, Eq)]
#[darling(attributes(split))]
struct Lorem {
    foo: String,
    bar: bool,
}

#[test]
fn split_attributes_accrue_to_instance() {
    let di = parse_quote! {
        #[split(foo = "Hello")]
        #[split(bar)]
        pub struct Foo;
    };

    let parsed = Lorem::from_derive_input(&di).unwrap();
    assert_eq!(
        parsed,
        Lorem {
            foo: "Hello".to_string(),
            bar: true,
        }
    );
}

#[test]
fn duplicates_across_split_attrs_error() {
    let di = parse_quote! {
        #[split(foo = "Hello")]
        #[split(foo = "World", bar)]
        pub struct Foo;
    };

    let pr = Lorem::from_derive_input(&di).unwrap_err();
    assert!(pr.has_span());
    assert_eq!(pr.to_string(), Error::duplicate_field("foo").to_string());
}

#[test]
fn multiple_errors_accrue_to_instance() {
    let di = parse_quote! {
        #[split(foo = "Hello")]
        #[split(foo = "World")]
        pub struct Foo;
    };

    let pr = Lorem::from_derive_input(&di);
    let err: Error = pr.unwrap_err();
    assert_eq!(2, err.len());
    let mut errs = err.into_iter().peekable();
    assert_eq!(
        errs.peek().unwrap().to_string(),
        Error::duplicate_field("foo").to_string()
    );
    assert!(errs.next().unwrap().has_span());
    assert_eq!(
        errs.next().unwrap().to_string(),
        Error::missing_field("bar").to_string()
    );
    assert!(errs.next().is_none());
}