Skip to content

Commit bead042

Browse files
committed
rustdoc: add test case for modnav position when TOC is off
1 parent 12a3c42 commit bead042

File tree

3 files changed

+51
-11
lines changed

3 files changed

+51
-11
lines changed

src/librustdoc/html/render/context.rs

+2-5
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,9 @@ use rustc_span::edition::Edition;
1414
use rustc_span::{sym, FileName, Symbol};
1515

1616
use super::print_item::{full_path, item_path, print_item};
17+
use super::sidebar::{print_sidebar, sidebar_module_like, ModuleLike, Sidebar};
1718
use super::write_shared::write_shared;
18-
use super::{
19-
collect_spans_and_sources, scrape_examples_help,
20-
sidebar::{print_sidebar, sidebar_module_like, ModuleLike, Sidebar},
21-
AllTypes, LinkFromSrc, StylePath,
22-
};
19+
use super::{collect_spans_and_sources, scrape_examples_help, AllTypes, LinkFromSrc, StylePath};
2320
use crate::clean::types::ExternalLocation;
2421
use crate::clean::utils::has_doc_flag;
2522
use crate::clean::{self, ExternalCrate};

src/librustdoc/html/render/sidebar.rs

+5-6
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,12 @@ use rustc_hir::def::CtorKind;
77
use rustc_hir::def_id::DefIdSet;
88
use rustc_middle::ty::{self, TyCtxt};
99

10-
use crate::{
11-
clean,
12-
formats::{item_type::ItemType, Impl},
13-
html::{format::Buffer, markdown::IdMap, markdown::MarkdownWithToc},
14-
};
15-
1610
use super::{item_ty_to_section, Context, ItemSection};
11+
use crate::clean;
12+
use crate::formats::item_type::ItemType;
13+
use crate::formats::Impl;
14+
use crate::html::format::Buffer;
15+
use crate::html::markdown::{IdMap, MarkdownWithToc};
1716

1817
#[derive(Clone, Copy)]
1918
pub(crate) enum ModuleLike {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
// Verifies that, when TOC is hidden, modnav is always in exactly the same spot
2+
// This is driven by a reasonably common use case:
3+
//
4+
// - There are three or more items that might meet my needs.
5+
// - I open the first one, decide it's not what I want, switch to the second one using the sidebar.
6+
// - The second one also doesn't meet my needs, so I switch to the third.
7+
// - The third also doesn't meet my needs, so...
8+
//
9+
// because the sibling module nav is in exactly the same place every time,
10+
// it's very easy to find and switch between pages that way.
11+
12+
go-to: "file://" + |DOC_PATH| + "/test_docs/enum.WhoLetTheDogOut.html"
13+
show-text: true
14+
set-local-storage: {"rustdoc-hide-toc": "true"}
15+
16+
define-function: (
17+
"check-positions",
18+
[url],
19+
block {
20+
go-to: "file://" + |DOC_PATH| + |url|
21+
// Checking results colors.
22+
assert-position: ("#rustdoc-modnav > h2", {"x": |h2_x|, "y": |h2_y|})
23+
assert-position: (
24+
"#rustdoc-modnav > ul:first-of-type > li:first-of-type",
25+
{"x": |x|, "y": |y|}
26+
)
27+
},
28+
)
29+
30+
// First, at test_docs root
31+
go-to: "file://" + |DOC_PATH| + "/test_docs/enum.WhoLetTheDogOut.html"
32+
store-position: ("#rustdoc-modnav > h2", {"x": h2_x, "y": h2_y})
33+
store-position: ("#rustdoc-modnav > ul:first-of-type > li:first-of-type", {"x": x, "y": y})
34+
call-function: ("check-positions", {"url": "/test_docs/enum.WhoLetTheDogOut.html"})
35+
call-function: ("check-positions", {"url": "/test_docs/struct.StructWithPublicUndocumentedFields.html"})
36+
call-function: ("check-positions", {"url": "/test_docs/codeblock_sub/index.html"})
37+
38+
// Now in a submodule
39+
go-to: "file://" + |DOC_PATH| + "/test_docs/fields/struct.Struct.html"
40+
store-position: ("#rustdoc-modnav > h2", {"x": h2_x, "y": h2_y})
41+
store-position: ("#rustdoc-modnav > ul:first-of-type > li:first-of-type", {"x": x, "y": y})
42+
call-function: ("check-positions", {"url": "/test_docs/fields/struct.Struct.html"})
43+
call-function: ("check-positions", {"url": "/test_docs/fields/union.Union.html"})
44+
call-function: ("check-positions", {"url": "/test_docs/fields/enum.Enum.html"})

0 commit comments

Comments
 (0)