-
Notifications
You must be signed in to change notification settings - Fork 13.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Improve rustdoc gui tester #85191
Improve rustdoc gui tester #85191
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -827,15 +827,28 @@ impl Step for RustdocGUI { | |
} | ||
|
||
let out_dir = builder.test_out(self.target).join("rustdoc-gui"); | ||
let mut command = builder.rustdoc_cmd(self.compiler); | ||
command.arg("src/test/rustdoc-gui/lib.rs").arg("-o").arg(&out_dir); | ||
builder.run(&mut command); | ||
|
||
// We remove existing folder to be sure there won't be artifacts remaining. | ||
let _ = fs::remove_dir_all(&out_dir); | ||
|
||
// We generate docs for the libraries present in the rustdoc-gui's src folder. | ||
let libs_dir = Path::new("src/test/rustdoc-gui/src"); | ||
for entry in libs_dir.read_dir().expect("read_dir call failed") { | ||
let entry = entry.expect("invalid entry"); | ||
let path = entry.path(); | ||
if path.extension().map(|e| e == "rs").unwrap_or(false) { | ||
let mut command = builder.rustdoc_cmd(self.compiler); | ||
command.arg(path).arg("-o").arg(&out_dir); | ||
builder.run(&mut command); | ||
} | ||
} | ||
|
||
// We now run GUI tests. | ||
let mut command = Command::new(&nodejs); | ||
command | ||
.arg("src/tools/rustdoc-gui/tester.js") | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. nit: this probably also needs to be builder.config.src.join, as well as the test-folder here. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Absolutely, all the "src" paths need it. Like I said, I did it in #84586 but didn't think about doing it here. Thanks for the reminder! |
||
.arg("--doc-folder") | ||
.arg(out_dir.join("test_docs")) | ||
.arg(out_dir) | ||
.arg("--tests-folder") | ||
.arg("src/test/rustdoc-gui"); | ||
builder.run(&mut command); | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
goto: file://|DOC_PATH|/index.html | ||
goto: file://|DOC_PATH|/test_docs/index.html | ||
click: ".srclink" | ||
assert: (".line-numbers", 1) |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
goto: file://|DOC_PATH|/index.html | ||
goto: file://|DOC_PATH|/test_docs/index.html | ||
assert: ("#functions") | ||
goto: ./struct.Foo.html | ||
assert: ("div.type-decl") |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
// This test ensures that the impl blocks are open by default. | ||
goto: file://|DOC_PATH|/struct.Foo.html | ||
goto: file://|DOC_PATH|/test_docs/struct.Foo.html | ||
assert: ("#main > details.implementors-toggle", "open", "") |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
goto: file://|DOC_PATH|/index.html | ||
goto: file://|DOC_PATH|/test_docs/index.html | ||
goto: ./fn.check_list_code_block.html | ||
assert: ("pre.rust.fn") |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,10 @@ | ||
goto: file://|DOC_PATH|/index.html | ||
goto: file://|DOC_PATH|/test_docs/index.html | ||
assert: ("#main > details.top-doc", "open", "") | ||
click: "#toggle-all-docs" | ||
wait-for: 5000 | ||
assert: ("#main > div.docblock.hidden-by-usual-hider") | ||
wait-for: 1000 | ||
// This is now collapsed so there shouldn't be the "open" attribute on details. | ||
assert-false: ("#main > details.top-doc", "open", "") | ||
click: "#toggle-all-docs" | ||
wait-for: 5000 | ||
assert: ("#main > div.docblock.hidden-by-usual-hider", 0) | ||
wait-for: 1000 | ||
// Not collapsed anymore so the "open" attribute should be back. | ||
assert: ("#main > details.top-doc", "open", "") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This needs to be joined onto
builder.config.src
, otherwise this won't work when invoked from a different working directory.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh right, I did it in #84586 but that's definitely a good idea to have it ahead!