summaryrefslogtreecommitdiff
path: root/dhall/tests/dhall_type.rs
blob: 941e3a481e707f42e31e44351b5de2ce2da01ae4 (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
#![feature(proc_macro_hygiene)]
use dhall::Type;
use dhall_generator::dhall_expr;

#[test]
fn test_dhall_type() {
    assert_eq!(bool::get_type(), dhall_expr!(Bool));
    assert_eq!(String::get_type(), dhall_expr!(Text));
    assert_eq!(
        <(bool, Option<String>)>::get_type(),
        dhall_expr!({ _1: Bool, _2: Optional Text })
    );

    #[derive(dhall::Type)]
    #[allow(dead_code)]
    struct A {
        field1: bool,
        field2: Option<bool>,
    }
    assert_eq!(
        <A as dhall::Type>::get_type(),
        dhall_expr!({ field1: Bool, field2: Optional Bool })
    );

    #[derive(Type)]
    #[allow(dead_code)]
    struct B<'a, T: 'a> {
        field1: &'a T,
        field2: Option<T>,
    }
    assert_eq!(<B<'static, bool>>::get_type(), A::get_type());

    #[derive(Type)]
    #[allow(dead_code)]
    struct C<T>(T, Option<String>);
    assert_eq!(<C<bool>>::get_type(), <(bool, Option<String>)>::get_type());

    #[derive(Type)]
    #[allow(dead_code)]
    struct D();
    assert_eq!(
        <C<D>>::get_type(),
        dhall_expr!({ _1: {}, _2: Optional Text })
    );

    #[derive(Type)]
    #[allow(dead_code)]
    enum E<T> {
        A(T),
        B(String),
    };
    assert_eq!(<E<bool>>::get_type(), dhall_expr!(< A: Bool | B: Text >));
}