Skip to content

Commit ff3ac98

Browse files
Add rustdoc GUI test for new copy code feature
1 parent 121d688 commit ff3ac98

File tree

1 file changed

+48
-0
lines changed

1 file changed

+48
-0
lines changed

tests/rustdoc-gui/copy-code.goml

+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
// Checks that the "copy code" button is not triggering JS error and its display
2+
// isn't broken.
3+
go-to: "file://" + |DOC_PATH| + "/test_docs/fn.foo.html"
4+
5+
define-function: (
6+
"check-copy-button",
7+
[],
8+
block {
9+
// First we ensure that there are no "copy code" currently existing.
10+
assert-count: (".example-wrap .copy-button", 0)
11+
move-cursor-to: ".example-wrap"
12+
assert-count: (".example-wrap .copy-button", 1)
13+
// We now ensure it's only displayed when the example is hovered.
14+
assert-css: (".example-wrap .copy-button", { "visibility": "visible" })
15+
move-cursor-to: ".search-input"
16+
assert-css: (".example-wrap .copy-button", { "visibility": "hidden" })
17+
},
18+
)
19+
20+
call-function: ("check-copy-button", {})
21+
// Checking that the run button and the copy button have the same height.
22+
compare-elements-size: (
23+
".example-wrap:nth-of-type(1) .test-arrow",
24+
".example-wrap:nth-of-type(1) .copy-button",
25+
["height"],
26+
)
27+
// ... and the same y position.
28+
compare-elements-position: (
29+
".example-wrap:nth-of-type(1) .test-arrow",
30+
".example-wrap:nth-of-type(1) .copy-button",
31+
["y"],
32+
)
33+
store-size: (".example-wrap:nth-of-type(1) .copy-button", {
34+
"height": copy_height,
35+
"width": copy_width,
36+
})
37+
assert: |copy_height| > 0 && |copy_width| > 0
38+
39+
// Checking same things for the copy button when there is no run button.
40+
go-to: "file://" + |DOC_PATH| + "/lib2/sub_mod/struct.Foo.html"
41+
call-function: ("check-copy-button", {})
42+
// Ensure there is no run button.
43+
assert-count: (".example-wrap .test-arrow", 0)
44+
// Check it's the same size without a run button.
45+
assert-size: (".example-wrap:nth-of-type(1) .copy-button", {
46+
"height": |copy_height|,
47+
"width": |copy_width|,
48+
})

0 commit comments

Comments
 (0)