Skip to content

Commit 80f991e

Browse files
authored
Rollup merge of #125142 - GuillaumeGomez:migrate-rustdoc-themes, r=jieyouxu
Migrate `run-make/rustdoc-themes` to new rmake.rs Part of #121876. r? `@jieyouxu`
2 parents c5b17ec + c765480 commit 80f991e

File tree

5 files changed

+39
-20
lines changed

5 files changed

+39
-20
lines changed

src/tools/run-make-support/src/lib.rs

+6
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,12 @@ pub fn python_command() -> Command {
6464
Command::new(python_path)
6565
}
6666

67+
pub fn htmldocck() -> Command {
68+
let mut python = python_command();
69+
python.arg(source_path().join("/src/etc/htmldocck.py"));
70+
python
71+
}
72+
6773
pub fn source_path() -> PathBuf {
6874
std::env::var("S").expect("S variable does not exist").into()
6975
}

src/tools/tidy/src/allowed_run_make_makefiles.txt

-1
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,6 @@ run-make/rustdoc-scrape-examples-multiple/Makefile
243243
run-make/rustdoc-scrape-examples-remap/Makefile
244244
run-make/rustdoc-scrape-examples-test/Makefile
245245
run-make/rustdoc-scrape-examples-whitespace/Makefile
246-
run-make/rustdoc-themes/Makefile
247246
run-make/rustdoc-verify-output-files/Makefile
248247
run-make/rustdoc-with-out-dir-option/Makefile
249248
run-make/rustdoc-with-output-option/Makefile

tests/run-make/rustdoc-scrape-examples-ordering/rmake.rs

+2-8
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use run_make_support::{python_command, rustc, rustdoc, source_path, tmp_dir};
1+
use run_make_support::{htmldocck, rustc, rustdoc, source_path, tmp_dir};
22
use std::fs::read_dir;
33
use std::path::Path;
44

@@ -45,11 +45,5 @@ fn main() {
4545
}
4646
rustdoc.run();
4747

48-
python_command()
49-
.arg(source_path().join("/src/etc/htmldocck.py"))
50-
.arg(out_dir)
51-
.arg("src/lib.rs")
52-
.status()
53-
.unwrap()
54-
.success();
48+
htmldocck().arg(out_dir).arg("src/lib.rs").status().unwrap().success();
5549
}

tests/run-make/rustdoc-themes/Makefile

-11
This file was deleted.
+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
// Test that rustdoc will properly load in a theme file and display it in the theme selector.
2+
3+
use run_make_support::{htmldocck, rustdoc, source_path, tmp_dir};
4+
5+
fn main() {
6+
let out_dir = tmp_dir().join("rustdoc-themes");
7+
let test_css = out_dir.join("test.css");
8+
9+
let no_script =
10+
std::fs::read_to_string(source_path().join("src/librustdoc/html/static/css/noscript.css"))
11+
.unwrap();
12+
13+
let mut test_content = String::new();
14+
let mut found_begin_light = false;
15+
for line in no_script.split('\n') {
16+
if line == "/* Begin theme: light */" {
17+
found_begin_light = true;
18+
} else if line == "/* End theme: light */" {
19+
break;
20+
} else if found_begin_light {
21+
test_content.push_str(line);
22+
test_content.push('\n');
23+
}
24+
}
25+
assert!(!test_content.is_empty());
26+
std::fs::create_dir_all(&out_dir).unwrap();
27+
std::fs::write(&test_css, test_content).unwrap();
28+
29+
rustdoc().output(&out_dir).input("foo.rs").arg("--theme").arg(&test_css).run();
30+
htmldocck().arg(out_dir).arg("foo.rs").status().unwrap().success();
31+
}

0 commit comments

Comments
 (0)