Skip to content

Commit 4723336

Browse files
committed
Auto merge of #47761 - GuillaumeGomez:test-themes, r=Mark-Simulacrum
Test themes r? @QuietMisdreavus cc @Mark-Simulacrum
2 parents 932c736 + dec9fab commit 4723336

File tree

11 files changed

+546
-8
lines changed

11 files changed

+546
-8
lines changed

src/Cargo.lock

+4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ members = [
2222
"tools/rls",
2323
"tools/rustfmt",
2424
"tools/miri",
25+
"tools/rustdoc-themes",
2526
# FIXME(https://github.com/rust-lang/cargo/issues/4089): move these to exclude
2627
"tools/rls/test_data/bin_lib",
2728
"tools/rls/test_data/borrow_error",

src/bootstrap/builder.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ impl<'a> Builder<'a> {
258258
test::HostCompiletest, test::Crate, test::CrateLibrustc, test::Rustdoc,
259259
test::Linkcheck, test::Cargotest, test::Cargo, test::Rls, test::Docs,
260260
test::ErrorIndex, test::Distcheck, test::Rustfmt, test::Miri, test::Clippy,
261-
test::RustdocJS),
261+
test::RustdocJS, test::RustdocTheme),
262262
Kind::Bench => describe!(test::Crate, test::CrateLibrustc),
263263
Kind::Doc => describe!(doc::UnstableBook, doc::UnstableBookGen, doc::TheBook,
264264
doc::Standalone, doc::Std, doc::Test, doc::Rustc, doc::ErrorIndex, doc::Nomicon,

src/bootstrap/check.rs

-1
Original file line numberDiff line numberDiff line change
@@ -160,4 +160,3 @@ pub fn libtest_stamp(build: &Build, compiler: Compiler, target: Interned<String>
160160
pub fn librustc_stamp(build: &Build, compiler: Compiler, target: Interned<String>) -> PathBuf {
161161
build.cargo_out(compiler, Mode::Librustc, target).join(".librustc-check.stamp")
162162
}
163-

src/bootstrap/test.rs

+42-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ impl Step for Linkcheck {
113113

114114
let _time = util::timeit();
115115
try_run(build, builder.tool_cmd(Tool::Linkchecker)
116-
.arg(build.out.join(host).join("doc")));
116+
.arg(build.out.join(host).join("doc")));
117117
}
118118

119119
fn should_run(run: ShouldRun) -> ShouldRun {
@@ -424,6 +424,47 @@ fn path_for_cargo(builder: &Builder, compiler: Compiler) -> OsString {
424424
env::join_paths(iter::once(path).chain(env::split_paths(&old_path))).expect("")
425425
}
426426

427+
#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
428+
pub struct RustdocTheme {
429+
pub compiler: Compiler,
430+
}
431+
432+
impl Step for RustdocTheme {
433+
type Output = ();
434+
const DEFAULT: bool = true;
435+
const ONLY_HOSTS: bool = true;
436+
437+
fn should_run(run: ShouldRun) -> ShouldRun {
438+
run.path("src/tools/rustdoc-themes")
439+
}
440+
441+
fn make_run(run: RunConfig) {
442+
let compiler = run.builder.compiler(run.builder.top_stage, run.host);
443+
444+
run.builder.ensure(RustdocTheme {
445+
compiler: compiler,
446+
});
447+
}
448+
449+
fn run(self, builder: &Builder) {
450+
let rustdoc = builder.rustdoc(self.compiler.host);
451+
let mut cmd = builder.tool_cmd(Tool::RustdocTheme);
452+
cmd.arg(rustdoc.to_str().unwrap())
453+
.arg(builder.src.join("src/librustdoc/html/static/themes").to_str().unwrap())
454+
.env("RUSTC_STAGE", self.compiler.stage.to_string())
455+
.env("RUSTC_SYSROOT", builder.sysroot(self.compiler))
456+
.env("RUSTDOC_LIBDIR", builder.sysroot_libdir(self.compiler, self.compiler.host))
457+
.env("CFG_RELEASE_CHANNEL", &builder.build.config.channel)
458+
.env("RUSTDOC_REAL", builder.rustdoc(self.compiler.host))
459+
.env("RUSTDOC_CRATE_VERSION", builder.build.rust_version())
460+
.env("RUSTC_BOOTSTRAP", "1");
461+
if let Some(linker) = builder.build.linker(self.compiler.host) {
462+
cmd.env("RUSTC_TARGET_LINKER", linker);
463+
}
464+
try_run(builder.build, &mut cmd);
465+
}
466+
}
467+
427468
#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
428469
pub struct RustdocJS {
429470
pub host: Interned<String>,

src/bootstrap/tool.rs

+1
Original file line numberDiff line numberDiff line change
@@ -260,6 +260,7 @@ tool!(
260260
BuildManifest, "src/tools/build-manifest", "build-manifest", Mode::Libstd;
261261
RemoteTestClient, "src/tools/remote-test-client", "remote-test-client", Mode::Libstd;
262262
RustInstaller, "src/tools/rust-installer", "fabricate", Mode::Libstd;
263+
RustdocTheme, "src/tools/rustdoc-themes", "rustdoc-themes", Mode::Libstd;
263264
);
264265

265266
#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]

src/librustdoc/html/static/themes/dark.css

+3
Original file line numberDiff line numberDiff line change
@@ -112,10 +112,13 @@ pre {
112112
}
113113
.content .highlighted a, .content .highlighted span { color: #eee !important; }
114114
.content .highlighted.trait { background-color: #013191; }
115+
.content .highlighted.mod,
116+
.content .highlighted.externcrate { background-color: #afc6e4; }
115117
.content .highlighted.mod { background-color: #803a1b; }
116118
.content .highlighted.externcrate { background-color: #396bac; }
117119
.content .highlighted.enum { background-color: #5b4e68; }
118120
.content .highlighted.struct { background-color: #194e9f; }
121+
.content .highlighted.union { background-color: #b7bd49; }
119122
.content .highlighted.fn,
120123
.content .highlighted.method,
121124
.content .highlighted.tymethod { background-color: #4950ed; }

src/librustdoc/lib.rs

+48-5
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ pub mod plugins;
9191
pub mod visit_ast;
9292
pub mod visit_lib;
9393
pub mod test;
94+
pub mod theme;
9495

9596
use clean::AttributesExt;
9697

@@ -267,6 +268,11 @@ pub fn opts() -> Vec<RustcOptGroup> {
267268
"additional themes which will be added to the generated docs",
268269
"FILES")
269270
}),
271+
unstable("theme-checker", |o| {
272+
o.optmulti("", "theme-checker",
273+
"check if given theme is valid",
274+
"FILES")
275+
}),
270276
]
271277
}
272278

@@ -316,6 +322,31 @@ pub fn main_args(args: &[String]) -> isize {
316322
return 0;
317323
}
318324

325+
let to_check = matches.opt_strs("theme-checker");
326+
if !to_check.is_empty() {
327+
let paths = theme::load_css_paths(include_bytes!("html/static/themes/main.css"));
328+
let mut errors = 0;
329+
330+
println!("rustdoc: [theme-checker] Starting tests!");
331+
for theme_file in to_check.iter() {
332+
print!(" - Checking \"{}\"...", theme_file);
333+
let (success, differences) = theme::test_theme_against(theme_file, &paths);
334+
if !differences.is_empty() || !success {
335+
println!(" FAILED");
336+
errors += 1;
337+
if !differences.is_empty() {
338+
println!("{}", differences.join("\n"));
339+
}
340+
} else {
341+
println!(" OK");
342+
}
343+
}
344+
if errors != 0 {
345+
return 1;
346+
}
347+
return 0;
348+
}
349+
319350
if matches.free.is_empty() {
320351
print_error("missing file operand");
321352
return 1;
@@ -369,12 +400,24 @@ pub fn main_args(args: &[String]) -> isize {
369400
}
370401

371402
let mut themes = Vec::new();
372-
for theme in matches.opt_strs("themes").iter().map(|s| PathBuf::from(&s)) {
373-
if !theme.is_file() {
374-
eprintln!("rustdoc: option --themes arguments must all be files");
375-
return 1;
403+
if matches.opt_present("themes") {
404+
let paths = theme::load_css_paths(include_bytes!("html/static/themes/main.css"));
405+
406+
for (theme_file, theme_s) in matches.opt_strs("themes")
407+
.iter()
408+
.map(|s| (PathBuf::from(&s), s.to_owned())) {
409+
if !theme_file.is_file() {
410+
println!("rustdoc: option --themes arguments must all be files");
411+
return 1;
412+
}
413+
let (success, ret) = theme::test_theme_against(&theme_file, &paths);
414+
if !success || !ret.is_empty() {
415+
println!("rustdoc: invalid theme: \"{}\"", theme_s);
416+
println!(" Check what's wrong with the \"theme-checker\" option");
417+
return 1;
418+
}
419+
themes.push(theme_file);
376420
}
377-
themes.push(theme);
378421
}
379422

380423
let external_html = match ExternalHtml::load(

0 commit comments

Comments
 (0)