File size: 17,626 Bytes
71174bc | 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 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 | // A container for test commmands, with added functions for common tasks.
import { FileInfo } from "@/FileSystem/FileInfo";
import { loadRemoteToFileInfo } from "@/Plugins/Core/RemoteMolLoaders/RemoteMolLoadersUtils";
import { getMoleculesFromStore } from "@/Store/StoreExternalAccess";
import {
TestClick,
TestCmdParent,
TestText,
TestUpload,
TestWait,
TestWaitUntilNotRegex,
TestWaitUntilRegex,
addTestsToCmdList,
TestTourNote,
} from "./TestCommands";
import { pluginsApi } from "@/Api/Plugins";
import { messagesApi } from "@/Api/Messages";
import { expandAndShowAllMolsInTree } from "./SetupTests";
import { openRemoteFile } from "@/FileSystem/UrlOpen";
import * as StyleManager from "@/Core/Styling/StyleManager";
import { ISelAndStyle } from "@/Core/Styling/SelAndStyleInterfaces";
import { addFailingUrlSubstring } from "@/Core/Fetcher";
import { ITestCommand } from "./TestInterfaces";
import { visualizationApi } from "@/Api/Visualization";
import { loadedPlugins } from "@/Plugins/LoadedPlugins";
import { processMenuPath, IMenuPathInfo } from "@/UI/Navigation/Menu/Menu";
import { slugify } from "@/Core/Utils/StringUtils";
const examplesLoaded: string[] = [];
/**
* A container for test commmands, with added functions for common tasks.
*/
export class TestCmdList {
private tests: TestCmdParent[] = [];
/**
* Click a button as if the user had clicked it.
*
* @param {string} selector The CSS selector for the button.
* @param {boolean} [shiftPressed=false] Whether the shift key was pressed.
* @returns {TestCmdList} This TestCmdList (for chaining).
*/
public click(selector: string, shiftPressed = false): TestCmdList {
this.tests.push(new TestClick(selector, shiftPressed));
return this;
}
/**
* Wait for a specified number of seconds.
*
* @param {number} [durationInSecs=1] The number of seconds to wait.
* @returns {TestCmdList} This TestCmdList (for chaining).
*/
public wait(durationInSecs = 1): TestCmdList {
this.tests.push(new TestWait(durationInSecs));
return this;
}
/**
* Type text into a text box.
*
* @param {string} selector The CSS selector for the text box.
* @param {string} text The text to type.
* @returns {TestCmdList} This TestCmdList (for chaining).
*/
public text(selector: string, text: string): TestCmdList {
this.tests.push(new TestText(selector, text));
return this;
}
/**
* Wait until a given regex matches the text of an element.
*
* @param {string} selector The CSS selector for the element.
* @param {string} regex The regex to match.
* @returns {TestCmdList} This TestCmdList (for chaining).
*/
public waitUntilRegex(selector: string, regex: string): TestCmdList {
this.tests.push(new TestWaitUntilRegex(selector, regex));
return this;
}
/**
* Wait until a given regex does not match the text of an element.
*
* @param {string} selector The CSS selector for the element.
* @param {string} regex The regex to match.
* @returns {TestCmdList} This TestCmdList (for chaining).
*/
public waitUntilNotRegex(selector: string, regex: string): TestCmdList {
this.tests.push(new TestWaitUntilNotRegex(selector, regex));
return this;
}
/**
* Upload a file.
*
* @param {string} selector The CSS selector for the file input.
* @param {string} filePath The path to the file to upload.
* @returns {TestCmdList} This TestCmdList (for chaining).
*/
public upload(selector: string, filePath: string): TestCmdList {
this.tests.push(new TestUpload(selector, filePath));
return this;
}
/**
* Adds a note to be displayed during an interactive tour. This has no effect
* on automated tests.
*
* @param {string} message The message to display.
* @param {string} selector The CSS selector for the element to associate the note with.
* @returns {TestCmdList} This TestCmdList (for chaining).
*/
public tourNote(message: string, selector: string): TestCmdList {
this.tests.push(new TestTourNote(selector, message));
return this;
}
/**
* Returns the list of test commands.
*
* @returns {ITestCommand[]} The list of test commands.
*/
public get cmds(): ITestCommand[] {
return this.tests.map((test: TestCmdParent) => test.cmd);
}
/**
* Adds a custom style programmatically for test setup.
*
* @param {string} styleName The name of the style.
* @param {ISelAndStyle} styleDefinition The style definition.
* @returns {TestCmdList} This TestCmdList (for chaining).
*/
public addCustomStyle(
styleName: string,
styleDefinition: ISelAndStyle
): TestCmdList {
StyleManager.addCustomStyle(styleName, styleDefinition, true); // Overwrite for test predictability
return this;
}
/**
* Opens a plugin programmatically by queuing clicks on the menu items.
* This allows the plugin to be opened during the test execution sequence.
*
* @param {string} pluginId The ID of the plugin to open.
* @returns {TestCmdList} This TestCmdList (for chaining).
*/
public openPlugin(pluginId: string): TestCmdList {
// Previous implementation ran the plugin immediately during test construction.
// pluginsApi.runPlugin(pluginId);
// New implementation: Queue UI events to open the plugin.
const plugin = loadedPlugins[pluginId];
if (!plugin) {
console.error(`TestCmdList: Plugin ${pluginId} not found.`);
return this;
}
if (plugin.menuPath === null) {
// If no menu path, we can't click to open it.
// Fallback to running it directly? Or log error?
// Running directly works for logic but might bypass UI state checks.
// For now, let's just run it directly if no menu path, but warn.
console.warn(`TestCmdList: Plugin ${pluginId} has no menu path. Running directly.`);
pluginsApi.runPlugin(pluginId);
return this;
}
const menuData = processMenuPath(plugin.menuPath) as IMenuPathInfo[];
if (!menuData) {
return this;
}
const lastMenuData = menuData.pop();
const lastSel =
".navbar #menu-plugin-" +
plugin.pluginId +
"-" +
slugify(lastMenuData?.text as string);
// If there are more than two items remaining in menuData, the second one is
// a separator (not triggering an actual submenu that would require a
// click). So remove that one.
if (menuData.length > 1) {
menuData.splice(1, 1);
}
const sels = menuData.map(
(x, i) => ".navbar #menu" + (i + 1).toString() + "-" + slugify(x.text)
);
// Check if #hamburger-button is visible.
const hamburgerButton = document.querySelector(
"#hamburger-button"
) as HTMLDivElement;
const hamburgerButtonVisible =
hamburgerButton !== null &&
hamburgerButton !== undefined &&
getComputedStyle(hamburgerButton).display !== "none";
if (hamburgerButtonVisible) {
this.click("#hamburger-button");
}
// Queue the clicks
for (const sel of sels) {
this.click(sel);
}
this.wait(1); // Small wait for menu to open
this.click(lastSel);
this.wait(1); // Small wait for plugin to load
return this;
}
/**
* Opens a plugin with a specific payload. This bypasses the menu system.
* Note: This still executes immediately during test construction, as there
* is no standard UI mechanism to pass arbitrary payloads via clicks.
* Use with caution in test sequences.
*
* @param {string} pluginId The ID of the plugin to open.
* @param {any} payload The payload to pass to the plugin's onPluginStart method.
* @returns {TestCmdList} This TestCmdList (for chaining).
*/
public openPluginWithPayload(pluginId: string, payload: any): TestCmdList {
pluginsApi.runPlugin(pluginId, payload);
return this;
}
/**
* Simulates a failure for any URL containing the given substring.
* This is executed immediately during test setup on the client.
*
* @param {string} substring The substring to match in the URL.
* @returns {TestCmdList} This TestCmdList (for chaining).
*/
public failUrl(substring: string): TestCmdList {
addFailingUrlSubstring(substring);
return this;
}
/**
* Adds a test to load a sample molecule (small protein and ligand) for
* testing.
*
* @param {boolean} [expandInMoleculeTree=false] Whether to expand the
* molecule tree to show the
* molecule.
* @param {string} [url="4WP4.pdb"] The URL of the molecule to
* load.
* @param {string} [expectedTitle] The expected title of the
* molecule in the navigator.
* If not provided, derived
* from the filename.
* @returns {TestCmdList} This TestCmdList (for chaining).
*/
public loadExampleMolecule(
expandInMoleculeTree = false,
url = "4WP4.pdb",
expectedTitle?: string
): TestCmdList {
if (examplesLoaded.indexOf(url) !== -1) {
// Already loaded
return this;
}
examplesLoaded.push(url);
// If its biotite, load it differently
// If url ends in .molmoda
if (url.endsWith(".molmoda")) {
// Load the file
void openRemoteFile(url);
} else {
const spinnerId = messagesApi.startWaitSpinner();
void loadRemoteToFileInfo(url, false)
.then((fileInfo: FileInfo) => {
return getMoleculesFromStore().loadFromFileInfo({
fileInfo,
tag: null,
});
})
.then(() => {
expandAndShowAllMolsInTree();
return visualizationApi.viewer;
})
.then((v) => {
v.zoomOnFocused();
return;
})
.catch((err: string) => {
messagesApi.popupError(err);
// throw err;
return;
})
.finally(() => {
messagesApi.stopWaitSpinner(spinnerId);
});
}
const moleculeName = expectedTitle || (url.split("/").pop()?.split(".")[0] || "molecule");
this.waitUntilRegex("#navigator", moleculeName);
if (expandInMoleculeTree) {
// If we expand, we should also wait for a common child to appear
// to ensure the expansion has been rendered.
this.waitUntilRegex("#navigator", "Protein");
}
return this;
}
/**
* Adds a test to load a molecule from a SMILES string for testing.
*
* @param {string} smilesString The SMILES string of the molecule to load
* @param {boolean} [expandInMoleculeTree=false] Whether to expand the molecule tree
* to show the molecule
* @param {string} [name="molecule.smi"] The name of the file to load.
* @returns {TestCmdList} This TestCmdList (for chaining).
*/
public loadSMILESMolecule(
smilesString: string,
expandInMoleculeTree = false,
name = "molecule"
): TestCmdList {
if (examplesLoaded.indexOf(smilesString) !== -1) {
// Already loaded
return this;
}
examplesLoaded.push(smilesString);
const fileInfo = new FileInfo({
name: `${name}.smi`,
contents: smilesString,
});
void getMoleculesFromStore()
.loadFromFileInfo({
fileInfo,
tag: null,
})
.then(() => {
expandAndShowAllMolsInTree();
return visualizationApi.viewer;
})
.then((v) => {
v.zoomOnFocused();
return;
})
.catch((err: string) => {
messagesApi.popupError(err);
// throw err;
return;
});
this.waitUntilRegex("#navigator", name);
if (expandInMoleculeTree) {
// SMILES molecules usually load as a single compound, but if they are complex and get split,
// waiting for a common child might be useful. "Compound" is a good default.
this.waitUntilRegex("#navigator", "Compound");
}
return this;
}
/**
* If running a selenium test, this function will generate the commands to
* expand the tree view so a given molecule is visible.
*
* @param {string[] | string} treeTitles The title(s) of the molecule to
* make visible in the molecule tree.
* @returns {TestCmdList} This TestCmdList (for chaining).
*/
public expandMoleculesTree(treeTitles: string[] | string): TestCmdList {
// If treeTitles is undefined, expand everything. TODO: Should this be
// the default behavior always?
// if (treeTitles === undefined) {
// const tree = getMoleculesFromStore();
// tree.flattened.forEach((node) => {
// node.treeExpanded = true;
// });
// return this;
// }
// If treeTitles is not array, make it one.
if (!Array.isArray(treeTitles)) {
treeTitles = [treeTitles];
}
for (const treeTitle of treeTitles) {
this.click(
`#navigator div[data-label="${treeTitle}"] .expand-icon`
);
this.wait(0.5);
}
return this;
}
// public expandEntireMoleculesTree(): TestCmdList {
// const treeNodeList = getMoleculesFromStore();
// treeNodeList.flattened.forEach((node) => {
// node.treeExpanded = true;
// node.title = "moo";
// });
// setStoreVar("molecules", treeNodeList);
// return this;
// }
/**
* If running a selenium test, this function will generate the command to
* select a given molecule in the tree view.
*
* @param {string} treeTitle The title of the molecule to
* select in the molecule tree.
* @param {boolean} [shiftPressed=false] Whether the shift key should be
* pressed.
* @returns {TestCmdList} This TestCmdList (for chaining).
*/
public selectMoleculeInTree(
treeTitle: string,
shiftPressed = false
): TestCmdList {
this.click(
`#navigator div[data-label="${treeTitle}"] .title-text`,
shiftPressed
);
return this;
}
/**
* If running a selenium test, this function will generate the command to
* test a specific user argument.
*
* @param {string} argName The name of the specific user argument.
* @param {any} argVal The value of the specific user argument.
* @param {string} pluginId The ID of the plugin.
* @returns {TestCmdList} This TestCmdList (for chaining).
*/
public setUserArg(
argName: string,
argVal: any,
pluginId: string
): TestCmdList {
const selector = `#modal-${pluginId} #${argName}-${pluginId}-item`;
if (typeof argVal === "string" && argVal.startsWith("file://")) {
this.upload(selector, argVal.substring(7));
return this;
}
// TODO: Add support for other types of user arguments. For example,
// there doesn't seem to be a command for clicking checkbox below.
if (typeof argVal === "boolean") {
// Throw an error saying to use clicks instead.
const msg =
"Use clicks instead of setUserArg for boolean user arguments.";
alert(msg);
throw new Error(msg);
// return {
// cmd: TestCommand.CheckBox,
// selector,
// data: argVal,
// };
}
// TODO: Only works for text currently!
this.text(selector, argVal);
return this;
}
/**
* Adds a test command to press a plugin (popup) button. Previously named
* `testPressButton`.
*
* @param {string} selector The css selector of the button.
* @param {string} pluginId The ID of the plugin.
* @returns {TestCmdList} This TestCmdList (for chaining).
*/
public pressPopupButton(selector: string, pluginId: string): TestCmdList {
this.click(`#modal-${pluginId} ${selector}`);
return this;
}
}
|