-
-
Notifications
You must be signed in to change notification settings - Fork 122
/
Copy pathtest_callbacks.py
304 lines (257 loc) · 8.31 KB
/
test_callbacks.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
import os
import importlib
from selenium.webdriver.common.keys import Keys
from selenium.webdriver.common.by import By
def create_input_and_save(
dash_duo, css_selector, dir_name, options, prefix=None, name_map=None, save=True
):
elem = dash_duo.find_element(css_selector)
directory_path = os.path.join(os.path.dirname(__file__), "screenshots", dir_name)
# Create directory if it doesn't already exist
if not os.path.exists(directory_path):
os.makedirs(directory_path)
if prefix and not name_map:
name_map = {option: prefix + option for option in options}
elif not name_map:
name_map = {}
for option in options:
elem.send_keys(Keys.CONTROL + "a")
elem.send_keys(option)
elem.send_keys(Keys.RETURN)
if save:
# If the name map doesn't contain a custom name for the option,
# we default to the value of the option to name the saved
# screenshot
name = name_map.get(option, option)
name = name.replace("(", "_").replace(")", "").replace(",", "_")
name = name.replace("#", "_hex_").replace(" ", "")
dash_duo.wait_for_element_by_id("cytoscape", 20)
path = os.path.join(
os.path.dirname(__file__), "screenshots", dir_name, name + ".png"
)
dash_duo.driver.save_screenshot(path)
def click_button_and_save(dash_duo, name_to_xpaths, dir_name, save=True):
for name, xpath in name_to_xpaths.items():
button = dash_duo.driver.find_element(By.XPATH, xpath)
button.click()
if save:
dash_duo.wait_for_element_by_id("cytoscape", 20)
path = os.path.join(
os.path.dirname(__file__), "screenshots", dir_name, name + ".png"
)
dash_duo.driver.save_screenshot(path)
def test_cycb001_callbacks(dash_duo):
app = importlib.import_module("usage-advanced").app
dash_duo.start_server(app)
dash_duo.wait_for_element_by_id("cytoscape", 20)
create_input_and_save(
dash_duo,
css_selector="#dropdown-select-element-list input",
dir_name="elements",
options=["Basic", "Compound", "Gene", "Wineandcheese"],
)
create_input_and_save(
dash_duo,
css_selector="#dropdown-layout input",
dir_name="layouts",
options=["Preset", "Grid", "Circle", "Concentric", "Breadthfirst", "Cose"],
)
# Reset the input to what it was at the beginning
create_input_and_save(
dash_duo,
css_selector="#dropdown-select-element-list input",
dir_name="elements",
options=["Basic"],
save=False,
)
create_input_and_save(
dash_duo,
css_selector="#dropdown-layout input",
dir_name="layouts",
options=["Circle"],
save=False,
)
# Input Different types of Node Content
create_input_and_save(
dash_duo,
css_selector="#input-node-content",
dir_name="style",
options=["Hello", "data(id)"],
name_map={"Hello": "NodeDisplayContentStatic", "data(id)": "NodeDisplayID"},
)
# Input Different node widths
create_input_and_save(
dash_duo,
css_selector="#input-node-width",
dir_name="style",
options=["30", "50"],
prefix="NodeWidth",
)
# Input Different node heights
create_input_and_save(
dash_duo,
css_selector="#input-node-height",
dir_name="style",
options=["40", "60"],
prefix="NodeHeight",
)
# Input different node shapes
create_input_and_save(
dash_duo,
css_selector="#dropdown-node-shape input",
dir_name="style",
options=[
"Triangle",
"Rectangle",
"Roundrectangle",
"Barrel",
"Diamond",
"Pentagon",
"Star",
"Tag",
"Vee",
"Ellipse",
],
prefix="NodeShape",
)
create_input_and_save(
dash_duo,
css_selector="#input-node-color",
dir_name="style",
options=["pink", "sky blue", "rgb(186,44,162)", "#def229"],
prefix="NodeColor",
)
create_input_and_save(
dash_duo,
css_selector="#input-node-border-width",
dir_name="style",
options=["2"],
save=False,
)
create_input_and_save(
dash_duo,
css_selector="#input-node-border-color",
dir_name="style",
options=["pink", "sky blue", "rgb(186,44,162)", "#def229"],
prefix="BorderColor",
)
create_input_and_save(
dash_duo,
css_selector="#input-node-border-width",
dir_name="style",
options=["5", "2"],
prefix="NodeBorderWidth",
)
create_input_and_save(
dash_duo,
css_selector="#dropdown-node-border-style input",
dir_name="style",
options=[
"Dashed",
"Dotted",
"Double",
"Solid",
],
prefix="NodeBorderStyle",
)
create_input_and_save(
dash_duo,
css_selector="#input-node-padding",
dir_name="style",
options=["5px"],
prefix="NodePadding",
)
create_input_and_save(
dash_duo,
css_selector="#dropdown-node-padding-relative-to input",
dir_name="style",
options=["Width", "Height", "Average", "Min", "Max"],
prefix="NodePaddingRelativeTo",
)
create_input_and_save(
dash_duo,
css_selector="#input-edge-line-width",
dir_name="style",
options=["10", "1", "3"],
prefix="LineWidth",
)
create_input_and_save(
dash_duo,
css_selector="#dropdown-edge-curve-style input",
dir_name="style",
options=["Haystack", "Segments", "Unbundled-bezier", "Bezier"],
prefix="EdgeCurveStyle",
)
create_input_and_save(
dash_duo,
css_selector="#input-edge-line-color",
dir_name="style",
options=["pink", "sky blue", "rgb(186,44,162)", "#def229"],
prefix="EdgeColor",
)
# Modify Edge Styles
click_button_and_save(
dash_duo,
name_to_xpaths={
"EdgeStyleSolid": '//*[@id="radio-edge-line-style"]/label[1]',
"EdgeStyleDotted": '//*[@id="radio-edge-line-style"]/label[2]',
"EdgeStyleDashed": '//*[@id="radio-edge-line-style"]/label[3]',
},
dir_name="style",
)
# Set "Use Edge Arrow" to "Yes"
click_button_and_save(
dash_duo,
name_to_xpaths={"EdgeArrow": '//*[@id="radio-use-edge-arrow"]/label[1]'},
dir_name="style",
save=False,
)
create_input_and_save(
dash_duo,
css_selector="#dropdown-source-arrow-shape input",
dir_name="style",
options=["Circle", "Vee", "Tee", "Diamond", "Triangle"],
prefix="EdgeArrowShape",
)
create_input_and_save(
dash_duo,
css_selector="#input-source-arrow-color",
dir_name="style",
options=["pink", "sky blue", "rgb(186,44,162)", "#def229"],
prefix="EdgeArrowColor",
)
click_button_and_save(
dash_duo,
name_to_xpaths={
"EdgeArrowFilled": ('//*[@id="radio-source-arrow-fill"]/' "label[1]"),
"EdgeArrowHollow": ('//*[@id="radio-source-arrow-fill"]/' "label[2]"),
},
dir_name="style",
)
create_input_and_save(
dash_duo,
css_selector="#input-arrow-scale",
dir_name="style",
options=["3", "2", "1"],
prefix="EdgeArrowScale",
)
def test_cycb002_callbacks(dash_duo):
app = importlib.import_module("usage-context-menu").app
dash_duo.start_server(app)
dash_duo.wait_for_element_by_id("cytoscape", 20)
def test_context_menu_after_cb(dash_duo, options, css_selector="#dropdown input"):
elem = dash_duo.find_element(css_selector)
for option in options:
elem.send_keys(Keys.CONTROL + "a")
elem.send_keys(option)
elem.send_keys(Keys.RETURN)
css_selector = f"button#{option}"
try:
dash_duo.find_element(css_selector)
assert True
except Exception:
assert False
test_context_menu_after_cb(
dash_duo,
options=["add-node", "remove", "add-edge"],
)