2021-07-10 19:10:14 +00:00
|
|
|
// The goal of this test is to check that the external trait implementors, generated with JS,
|
|
|
|
// have the same display than the "local" ones.
|
2023-04-11 17:11:34 +00:00
|
|
|
go-to: "file://" + |DOC_PATH| + "/implementors/trait.Whatever.html"
|
2021-07-10 19:10:14 +00:00
|
|
|
assert: "#implementors-list"
|
|
|
|
// There are supposed to be two implementors listed.
|
2021-08-30 14:47:17 +00:00
|
|
|
assert-count: ("#implementors-list .impl", 2)
|
2021-07-10 19:10:14 +00:00
|
|
|
// Now we check that both implementors have an anchor, an ID and a similar DOM.
|
2021-08-30 14:47:17 +00:00
|
|
|
assert: ("#implementors-list .impl:nth-child(1) > a.anchor")
|
2022-01-10 21:35:55 +00:00
|
|
|
assert-attribute: ("#implementors-list .impl:nth-child(1)", {"id": "impl-Whatever-for-Struct"})
|
|
|
|
assert-attribute: ("#implementors-list .impl:nth-child(1) > a.anchor", {"href": "#impl-Whatever-for-Struct"})
|
2022-09-25 20:09:22 +00:00
|
|
|
assert: "#implementors-list .impl:nth-child(1) > .code-header"
|
2021-07-10 19:10:14 +00:00
|
|
|
|
2021-08-30 14:47:17 +00:00
|
|
|
assert: ("#implementors-list .impl:nth-child(2) > a.anchor")
|
|
|
|
assert-attribute: ("#implementors-list .impl:nth-child(2)", {"id": "impl-Whatever-1"})
|
|
|
|
assert-attribute: ("#implementors-list .impl:nth-child(2) > a.anchor", {"href": "#impl-Whatever-1"})
|
2022-09-25 20:09:22 +00:00
|
|
|
assert: "#implementors-list .impl:nth-child(2) > .code-header"
|
2022-02-08 06:36:51 +00:00
|
|
|
|
2023-04-11 17:11:34 +00:00
|
|
|
go-to: "file://" + |DOC_PATH| + "/test_docs/struct.HasEmptyTraits.html"
|
2022-07-05 13:10:12 +00:00
|
|
|
compare-elements-position-near-false: (
|
|
|
|
"#impl-EmptyTrait1-for-HasEmptyTraits",
|
|
|
|
"#impl-EmptyTrait2-for-HasEmptyTraits",
|
2022-09-25 21:58:49 +00:00
|
|
|
{"y": 34},
|
2022-07-05 13:10:12 +00:00
|
|
|
)
|
|
|
|
compare-elements-position-near: (
|
|
|
|
"#impl-EmptyTrait3-for-HasEmptyTraits h3",
|
|
|
|
"#impl-EmptyTrait3-for-HasEmptyTraits .item-info",
|
2022-09-25 21:58:49 +00:00
|
|
|
{"y": 34},
|
2022-07-05 13:10:12 +00:00
|
|
|
)
|
2022-05-06 00:20:14 +00:00
|
|
|
|
|
|
|
// Now check that re-exports work correctly.
|
|
|
|
// There should be exactly one impl shown on both of these pages.
|
2023-04-11 17:11:34 +00:00
|
|
|
go-to: "file://" + |DOC_PATH| + "/lib2/trait.TraitToReexport.html"
|
2022-05-06 00:20:14 +00:00
|
|
|
assert-count: ("#implementors-list .impl", 1)
|
2023-04-11 17:11:34 +00:00
|
|
|
go-to: "file://" + |DOC_PATH| + "/implementors/trait.TraitToReexport.html"
|
2022-05-06 12:18:32 +00:00
|
|
|
assert-count: ("#implementors-list .impl", 1)
|
2023-01-04 02:46:40 +00:00
|
|
|
|
|
|
|
// Now check that the link is properly rewritten for a crate called `http`.
|
|
|
|
// An older version of rustdoc had a buggy check for absolute links.
|
2023-04-11 17:11:34 +00:00
|
|
|
go-to: "file://" + |DOC_PATH| + "/http/trait.HttpTrait.html"
|
2023-01-04 02:46:40 +00:00
|
|
|
assert-count: ("#implementors-list .impl", 1)
|
|
|
|
assert-attribute: ("#implementors-list .impl a.trait", {"href": "../http/trait.HttpTrait.html"})
|