mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
107 lines
3.6 KiB
Plaintext
107 lines
3.6 KiB
Plaintext
// ignore-tidy-linelength
|
|
|
|
// Checks that the search tab result tell the user about corrections
|
|
// First, try a search-by-name
|
|
go-to: "file://" + |DOC_PATH| + "/test_docs/index.html"
|
|
// Intentionally wrong spelling of "NotableStructWithLongName"
|
|
write: (".search-input", "NotableStructWithLongNamr")
|
|
// To be SURE that the search will be run.
|
|
press-key: 'Enter'
|
|
// Waiting for the search results to appear...
|
|
wait-for: "#search-tabs"
|
|
|
|
// Corrections aren't shown on the "In Names" tab.
|
|
assert: "#search-tabs button.selected:first-child"
|
|
assert-css: (".search-corrections", {
|
|
"display": "none"
|
|
})
|
|
|
|
// Corrections do get shown on the "In Parameters" tab.
|
|
click: "#search-tabs button:nth-child(2)"
|
|
assert: "#search-tabs button.selected:nth-child(2)"
|
|
assert-css: (".search-corrections", {
|
|
"display": "block"
|
|
})
|
|
assert-text: (
|
|
".search-corrections",
|
|
"Type \"notablestructwithlongnamr\" not found. Showing results for closest type name \"notablestructwithlongname\" instead."
|
|
)
|
|
|
|
// Corrections do get shown on the "In Return Type" tab.
|
|
click: "#search-tabs button:nth-child(3)"
|
|
assert: "#search-tabs button.selected:nth-child(3)"
|
|
assert-css: (".search-corrections", {
|
|
"display": "block"
|
|
})
|
|
assert-text: (
|
|
".search-corrections",
|
|
"Type \"notablestructwithlongnamr\" not found. Showing results for closest type name \"notablestructwithlongname\" instead."
|
|
)
|
|
|
|
// Now, explicit return values
|
|
go-to: "file://" + |DOC_PATH| + "/test_docs/index.html"
|
|
// Intentionally wrong spelling of "NotableStructWithLongName"
|
|
write: (".search-input", "-> NotableStructWithLongNamr")
|
|
// To be SURE that the search will be run.
|
|
press-key: 'Enter'
|
|
// Waiting for the search results to appear...
|
|
wait-for: "#search-tabs"
|
|
|
|
assert-css: (".search-corrections", {
|
|
"display": "block"
|
|
})
|
|
assert-text: (
|
|
".search-corrections",
|
|
"Type \"notablestructwithlongnamr\" not found. Showing results for closest type name \"notablestructwithlongname\" instead."
|
|
)
|
|
|
|
// Now, generic correction
|
|
go-to: "file://" + |DOC_PATH| + "/test_docs/index.html"
|
|
// Intentionally wrong spelling of "NotableStructWithLongName"
|
|
write: (".search-input", "NotableStructWithLongNamr, NotableStructWithLongNamr")
|
|
// To be SURE that the search will be run.
|
|
press-key: 'Enter'
|
|
// Waiting for the search results to appear...
|
|
wait-for: "#search-tabs"
|
|
|
|
assert-css: (".search-corrections", {
|
|
"display": "block"
|
|
})
|
|
assert-text: (
|
|
".search-corrections",
|
|
"Type \"notablestructwithlongnamr\" not found and used as generic parameter. Consider searching for \"notablestructwithlongname\" instead."
|
|
)
|
|
|
|
// Now, generic correction plus error
|
|
go-to: "file://" + |DOC_PATH| + "/test_docs/index.html"
|
|
// Intentionally wrong spelling of "NotableStructWithLongName"
|
|
write: (".search-input", "Foo<NotableStructWithLongNamr>,y")
|
|
// To be SURE that the search will be run.
|
|
press-key: 'Enter'
|
|
// Waiting for the search results to appear...
|
|
wait-for: "#search-tabs"
|
|
|
|
assert-css: (".search-corrections", {
|
|
"display": "block"
|
|
})
|
|
assert-text: (
|
|
".search-corrections",
|
|
"Type \"notablestructwithlongnamr\" not found and used as generic parameter. Consider searching for \"notablestructwithlongname\" instead."
|
|
)
|
|
|
|
go-to: "file://" + |DOC_PATH| + "/test_docs/index.html"
|
|
// Intentionally wrong spelling of "NotableStructWithLongName"
|
|
write: (".search-input", "generic:NotableStructWithLongNamr<x>,y")
|
|
// To be SURE that the search will be run.
|
|
press-key: 'Enter'
|
|
// Waiting for the search results to appear...
|
|
wait-for: "#search-tabs"
|
|
|
|
assert-css: (".error", {
|
|
"display": "block"
|
|
})
|
|
assert-text: (
|
|
".error",
|
|
"Query parser error: \"Generic type parameter notablestructwithlongnamr does not accept generic parameters\"."
|
|
)
|