summaryrefslogtreecommitdiffstats
path: root/src/librustdoc/theme/tests.rs
blob: ae8f43c6d55bab036b6a2a3e24abffd607c48a53 (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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
use super::*;

#[test]
fn test_comments_in_rules() {
    let text = r#"
rule a {}

rule b, c
// a line comment
{}

rule d
// another line comment
e {}

rule f/* a multine

comment*/{}

rule g/* another multine

comment*/h

i {}

rule j/*commeeeeent

you like things like "{}" in there? :)
*/
end {}"#;

    let against = r#"
rule a {}

rule b, c {}

rule d e {}

rule f {}

rule gh i {}

rule j end {}
"#;

    let mut ret = Vec::new();
    get_differences(
        &load_css_paths(against.as_bytes()),
        &load_css_paths(text.as_bytes()),
        &mut ret,
    );
    assert!(ret.is_empty());
}

#[test]
fn test_text() {
    let text = r#"
a
/* sdfs
*/ b
c // sdf
d {}
"#;
    let paths = load_css_paths(text.as_bytes());
    assert!(paths.children.contains(&CssPath::new("a b c d".to_owned())));
}

#[test]
fn test_comparison() {
    let x = r#"
a {
    b {
        c {}
    }
}
"#;

    let y = r#"
a {
    b {}
}
"#;

    let against = load_css_paths(y.as_bytes());
    let other = load_css_paths(x.as_bytes());

    let mut ret = Vec::new();
    get_differences(&against, &other, &mut ret);
    assert!(ret.is_empty());
    get_differences(&other, &against, &mut ret);
    assert_eq!(ret, vec!["  Missing \"c\" rule".to_owned()]);
}

#[test]
fn check_empty_css() {
    let events = load_css_events(&[]);
    assert_eq!(events.len(), 0);
}

#[test]
fn check_invalid_css() {
    let events = load_css_events(b"*");
    assert_eq!(events.len(), 0);
}

#[test]
fn test_with_minification() {
    let text = include_str!("../html/static/css/themes/dark.css");
    let minified = minifier::css::minify(&text).expect("CSS minification failed").to_string();

    let against = load_css_paths(text.as_bytes());
    let other = load_css_paths(minified.as_bytes());

    let mut ret = Vec::new();
    get_differences(&against, &other, &mut ret);
    assert!(ret.is_empty());
}