Skip to content
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

Added the mdbook-linkcheck backend #27

Merged
merged 8 commits into from
Jan 31, 2018

Conversation

Michael-F-Bryan
Copy link
Contributor

@Michael-F-Bryan Michael-F-Bryan commented Jan 27, 2018

Now mdbook 0.1.0 has been released and the mdbook-linkcheck tool is on crates.io we can use it for automatic link checking.

I also found two broken links from chapters which were copied form the original READMEs.

To use the mdbook-linkcheck tool you'll need to have it installed (cargo install mdbook-linkcheck). If it isn't installed, mdbook should warn you saying a backend wasn't found, but continue on anyway.


Because we're now using the linkchecker to validate every build, I've updated travis.yml to use mdbook build as the test script. This also removes the need for ci/github_pages.sh.

We don't need to cache pip or run pip install ghp_imports any more either because we're using the proper GitHub Pages deployment provider.

Hopefully a smaller cache and not needing to install a Python program will speed up builds even more 🙂

(fixes #20)

@Michael-F-Bryan
Copy link
Contributor Author

Just before this gets merged we should probably blow away all the travis caches because travis now needs to use version 0.1.1 instead of 0.0.28 of mdbook.

@Michael-F-Bryan
Copy link
Contributor Author

I just added a commit which introduces a broken link and it looks the linkchecker correctly fails the build.

Changes:

diff --git a/src/about-this-guide.md b/src/about-this-guide.md
index ea84017..837bf95 100644
--- a/src/about-this-guide.md
+++ b/src/about-this-guide.md
@@ -11,4 +11,6 @@ be found at [the GitHub repository]. If you find any mistakes in the
 guide, please file an issue about it -- or, even better, open a PR
 with a correction!
 
+[A non-existent link](foo.md)
+
 [the GitHub repository]: https://github.com/rust-lang-nursery/rustc-guide/

Travis Log:

...
$ mdbook build
2018-01-27 07:30:43 [INFO] (mdbook::book): Book building has started
2018-01-27 07:30:43 [INFO] (mdbook::book): Running the html backend
2018-01-27 07:30:43 [INFO] (mdbook::book): Running the linkcheck backend
2018-01-27 07:30:43 [INFO] (mdbook::renderer): Invoking the "linkcheck" renderer
There was 1 broken link:
about-this-guide.md#14: Found "foo.md", did you mean "foo.html"?
2018-01-27 07:30:43 [ERROR] (mdbook::renderer): Renderer exited with non-zero return code.
2018-01-27 07:30:43 [ERROR] (mdbook::utils): Error: Rendering failed
2018-01-27 07:30:43 [ERROR] (mdbook::utils): 	Caused By: The "linkcheck" renderer failed
The command "mdbook build" exited with 101.

Unless there's anything else you'd like to address, @nikomatsakis I think we're about ready to merge.

Copy link
Contributor

@nikomatsakis nikomatsakis left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks great! Left one nit.

@@ -1,14 +1,11 @@
language: rust
cache:
- pip
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nice, I meant to purge these at some point...

To help prevent accidentally introducing broken links, we use the
`mdbook-linkcheck`. If installed on your machine `mdbook` will automatically
invoke this link checker, otherwise it will emit a warning saying it couldn't
be found.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

what kind of links does this check? can it test https links too?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It reads the contents of the raw chapters then uses pulldown-cmark to find all the links on a page. Then if it's a link to another chapter we make sure that chapter exists, otherwise if its http(s) it'll try to GET the page using reqwests.

Fetching pages from the web is disabled by default because it can take a while when your book has lots of them. Therefore you need to set output.linkcheck.follow-web-links to true in your book.toml.

@@ -139,3 +139,5 @@ take:


The first thing you may wonder if

[query model]: https://github.com/rust-lang/rust/blob/master/src/librustc/ty/maps/README.md
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

actually, we should .. oh, maybe I didn't open that PR yet =)

I have a PR adding a chapter for this... I'll have to remember to patch this link. :)

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

src/ty.md Outdated
@@ -78,7 +78,7 @@ is in fact a simple type alias for a reference with `'tcx` lifetime:
pub type Ty<'tcx> = &'tcx TyS<'tcx>;
```

[the HIR]: ../hir/README.md
[the HIR]: https://github.com/rust-lang/rust/blob/master/src/librustc/hir/README.md
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we do have a HIR chapter, though... can we redirect to the HIR page instead?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hmm... that link is showing up as a 404 for me. Has the PR for it landed yet?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah, looks like it's hir.html, not hir-lowering.html.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh yeah I renamed it =)

Copy link
Contributor

@nikomatsakis nikomatsakis left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I updated the links.

@nikomatsakis
Copy link
Contributor

rebased.

@nikomatsakis
Copy link
Contributor

So how do I run the link checker? mdbook build doesn't seem to do anything for me, whether that be warnings or otherwise. I did cargo install mdbook-linkcheck

@mark-i-m
Copy link
Member

mark-i-m commented Jan 31, 2018

Perhaps you need cargo update to update mdbook? For me it just worked:

$ mdbook build
2018-01-31 12:41:16 [INFO] (mdbook::book): Book building has started
2018-01-31 12:41:16 [INFO] (mdbook::book): Running the html backend
2018-01-31 12:41:16 [INFO] (mdbook::book): Running the linkcheck backend
2018-01-31 12:41:16 [INFO] (mdbook::renderer): Invoking the "linkcheck" renderer
There were 4 broken links:
macro-expansion.md#44: Found "./the-parser.md", did you mean "./the-parser.html"?
type-inference.md#32: Found "src/librustc/ty/README.md", did you mean "src/librustc/ty/README.html"?
type-inference.md#40: Found "src/librustc/ty/README.md", did you mean "src/librustc/ty/README.html"?
type-inference.md#108: Found "../traits/README.md", did you mean "../traits/README.html"?
2018-01-31 12:41:16 [ERROR] (mdbook::renderer): Renderer exited with non-zero return code.
2018-01-31 12:41:16 [ERROR] (mdbook::utils): Error: Rendering failed
2018-01-31 12:41:16 [ERROR] (mdbook::utils): 	Caused By: The "linkcheck" renderer failed

Are you sure your book.toml is not in a weird state?

EDIT: Lol, that's not what cargo update does 😛

@nikomatsakis
Copy link
Contributor

Mr-Darcy. mdbook --version
mdbook v0.0.28

Do I need some other version?

@mark-i-m
Copy link
Member

I think you need >= 0.1

@nikomatsakis
Copy link
Contributor

OK, got it. Weird that cargo +nightly install -f mdbook didn't get the latest version.

@nikomatsakis
Copy link
Contributor

r=me once travis is happy =)

@nikomatsakis nikomatsakis merged commit 18490f5 into rust-lang:master Jan 31, 2018
@Michael-F-Bryan Michael-F-Bryan deleted the linkcheck branch February 1, 2018 03:22
Kobzol added a commit to Kobzol/rustc-dev-guide that referenced this pull request Jan 5, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Automated Link Checking
3 participants