-
Notifications
You must be signed in to change notification settings - Fork 13.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add expect test for rustdoc html highlighting
It's a unit-test in a sense that it only checks syntax highlighting. However, the resulting HTML is written to disk and can be easily inspected in the browser. To update the test, run with `--bless` argument or set `UPDATE_EXPEC=1` env var
- Loading branch information
Showing
5 changed files
with
67 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,3 +17,6 @@ serde_json = "1.0" | |
smallvec = "1.0" | ||
tempfile = "3" | ||
itertools = "0.8" | ||
|
||
[dev-dependencies] | ||
expect-test = "0.1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
|
||
<style> | ||
.kw { color: #8959A8; } | ||
.kw-2, .prelude-ty { color: #4271AE; } | ||
.number, .string { color: #718C00; } | ||
.self, .bool-val, .prelude-val, .attribute, .attribute .ident { color: #C82829; } | ||
.macro, .macro-nonterminal { color: #3E999F; } | ||
.lifetime { color: #B76514; } | ||
.question-mark { color: #ff9011; } | ||
</style> | ||
<pre><code><span class="attribute">#![<span class="ident">crate_type</span> <span class="op">=</span> <span class="string">"lib"</span>]</span> | ||
|
||
<span class="attribute">#[<span class="ident">cfg</span>(<span class="ident">target_os</span> <span class="op">=</span> <span class="string">"linux"</span>)]</span> | ||
<span class="kw">fn</span> <span class="ident">main</span>() { | ||
<span class="kw">let</span> <span class="ident">foo</span> <span class="op">=</span> <span class="bool-val">true</span> <span class="op">&&</span> <span class="bool-val">false</span> <span class="op">|</span><span class="op">|</span> <span class="bool-val">true</span>; | ||
<span class="kw">let</span> <span class="kw">_</span>: <span class="kw-2">*</span><span class="kw">const</span> () <span class="op">=</span> <span class="number">0</span>; | ||
<span class="kw">let</span> <span class="kw">_</span> <span class="op">=</span> <span class="kw-2">&</span><span class="ident">foo</span>; | ||
<span class="kw">let</span> <span class="kw">_</span> <span class="op">=</span> <span class="op">&&</span><span class="ident">foo</span>; | ||
<span class="kw">let</span> <span class="kw">_</span> <span class="op">=</span> <span class="kw-2">*</span><span class="ident">foo</span>; | ||
<span class="macro">mac</span><span class="macro">!</span>(<span class="ident">foo</span>, <span class="kw-2">&</span><span class="kw-2">mut</span> <span class="ident">bar</span>); | ||
<span class="macro">assert</span><span class="macro">!</span>(<span class="self">self</span>.<span class="ident">length</span> <span class="op"><</span> <span class="ident">N</span> <span class="op">&&</span> <span class="ident">index</span> <span class="op"><</span><span class="op">=</span> <span class="self">self</span>.<span class="ident">length</span>); | ||
} | ||
|
||
<span class="macro">macro_rules</span><span class="macro">!</span> <span class="ident">bar</span> { | ||
(<span class="macro-nonterminal">$</span><span class="macro-nonterminal">foo</span>:<span class="ident">tt</span>) <span class="op">=</span><span class="op">></span> {}; | ||
} | ||
</code></pre> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#![crate_type = "lib"] | ||
|
||
#[cfg(target_os = "linux")] | ||
fn main() { | ||
let foo = true && false || true; | ||
let _: *const () = 0; | ||
let _ = &foo; | ||
let _ = &&foo; | ||
let _ = *foo; | ||
mac!(foo, &mut bar); | ||
assert!(self.length < N && index <= self.length); | ||
} | ||
|
||
macro_rules! bar { | ||
($foo:tt) => {}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,66 +1,25 @@ | ||
use super::write_code; | ||
|
||
fn highlight(src: &str) -> String { | ||
let mut out = String::new(); | ||
write_code(&mut out, src); | ||
out | ||
} | ||
|
||
#[test] | ||
fn function() { | ||
assert_eq!( | ||
highlight("fn main() {}"), | ||
r#"<span class="kw">fn</span> <span class="ident">main</span>() {}"#, | ||
); | ||
} | ||
|
||
#[test] | ||
fn statement() { | ||
assert_eq!( | ||
highlight("let foo = true;"), | ||
concat!( | ||
r#"<span class="kw">let</span> <span class="ident">foo</span> "#, | ||
r#"<span class="op">=</span> <span class="bool-val">true</span>;"#, | ||
), | ||
); | ||
} | ||
use expect_test::expect_file; | ||
|
||
#[test] | ||
fn inner_attr() { | ||
assert_eq!( | ||
highlight(r##"#![crate_type = "lib"]"##), | ||
concat!( | ||
r##"<span class="attribute">#![<span class="ident">crate_type</span> "##, | ||
r##"<span class="op">=</span> <span class="string">"lib"</span>]</span>"##, | ||
), | ||
); | ||
fn test_html_highlighting() { | ||
let src = include_str!("fixtures/sample.rs"); | ||
let html = { | ||
let mut out = String::new(); | ||
write_code(&mut out, src); | ||
format!("{}<pre><code>{}</code></pre>\n", STYLE, out) | ||
}; | ||
expect_file!["src/librustdoc/html/highlight/fixtures/sample.html"].assert_eq(&html); | ||
} | ||
|
||
#[test] | ||
fn outer_attr() { | ||
assert_eq!( | ||
highlight(r##"#[cfg(target_os = "linux")]"##), | ||
concat!( | ||
r##"<span class="attribute">#[<span class="ident">cfg</span>("##, | ||
r##"<span class="ident">target_os</span> <span class="op">=</span> "##, | ||
r##"<span class="string">"linux"</span>)]</span>"##, | ||
), | ||
); | ||
} | ||
|
||
#[test] | ||
fn mac() { | ||
assert_eq!( | ||
highlight("mac!(foo bar)"), | ||
concat!( | ||
r#"<span class="macro">mac</span><span class="macro">!</span>("#, | ||
r#"<span class="ident">foo</span> <span class="ident">bar</span>)"#, | ||
), | ||
); | ||
} | ||
|
||
// Regression test for #72684 | ||
#[test] | ||
fn andand() { | ||
assert_eq!(highlight("&&"), r#"<span class="op">&&</span>"#); | ||
} | ||
const STYLE: &str = r#" | ||
<style> | ||
.kw { color: #8959A8; } | ||
.kw-2, .prelude-ty { color: #4271AE; } | ||
.number, .string { color: #718C00; } | ||
.self, .bool-val, .prelude-val, .attribute, .attribute .ident { color: #C82829; } | ||
.macro, .macro-nonterminal { color: #3E999F; } | ||
.lifetime { color: #B76514; } | ||
.question-mark { color: #ff9011; } | ||
</style> | ||
"#; |