File size: 8,714 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 | import { IMenuPathInfo, processMenuPath } from "@/UI/Navigation/Menu/Menu";
import * as PluginToTest from "./PluginToTest";
import { TestCmdList } from "./TestCmdList";
import { PluginParentClass } from "@/Plugins/Parents/PluginParentClass/PluginParentClass";
import { store } from "@/Store";
import { slugify } from "@/Core/Utils/StringUtils";
import { ITest, ITestCommand, TestCommand } from "./TestInterfaces";
import {
TestClick,
TestWait,
TestWaitUntilNotRegex,
TestWaitUntilRegex,
addTestsToCmdList,
} from "./TestCommands";
type IConvertedTest = { [key: string]: ITestCommand[] };
/**
* Generates the commands to open the plugins popup window using selenium.
*
* @param {any} plugin The plugin to test.
* @returns {ITestCommand[]} The commands to open the plugin.
*/
export function openPluginCmds(plugin: any): ITestCommand[] {
// Get menu clicks
const menuData = processMenuPath(plugin.menuPath) as IMenuPathInfo[];
if (menuData === null || menuData === undefined) {
return [];
}
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)
);
const cmds: ITestCommand[] = [];
// 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) {
cmds.push(new TestClick("#hamburger-button").cmd);
}
cmds.push(
...sels.map((sel) => new TestClick(sel).cmd),
new TestWait(1).cmd,
new TestClick(lastSel).cmd,
new TestWait(1).cmd
);
return cmds;
}
/**
* If running a selenium test, this function will add any unspecified (default)
* test commands. Occurs in place.
*
* @param {IConvertedTest[]} convertedTests The tests to add defaults to.
* @param {any} plugin The plugin, with getTests() function and pluginId.
*/
function addTestDefaults(
convertedTests: IConvertedTest[],
plugin: PluginParentClass
) {
const { pluginId } = plugin;
if (convertedTests.length === 0) {
convertedTests.push({} as IConvertedTest);
}
// If any elements of each test are undefined, replace with defaults.
for (const test of convertedTests) {
// Set beforePluginOpens to [] if undefined.
test.beforePluginOpens = test.beforePluginOpens || [];
// Set pluginOpen to [] if undefined.
test.pluginOpen = test.pluginOpen || [];
// Set closePlugin to [] if undefined and noPopup, otherwise set to
// click on action button.
if (!test.closePlugin) {
test.closePlugin = plugin.noPopup
? []
: [new TestClick(`#modal-${pluginId} .action-btn`).cmd];
}
// If the plugin has a popup, add a wait after closing it to prevent
// intercepted click errors.
if (!plugin.noPopup) {
const waitCmd = new TestWaitUntilNotRegex(
"body",
'class="modal-open"'
).cmd;
if (test.afterPluginCloses) {
test.afterPluginCloses.unshift(waitCmd);
} else {
test.afterPluginCloses = [waitCmd];
}
}
// Now consider test.afterPluginCloses. If logJob, use that to wait for
// indication that job finished.
if (!test.afterPluginCloses) {
// It's not defined. Start by assuming it's empty.
test.afterPluginCloses = [];
if (plugin.logJob) {
test.afterPluginCloses.push(
new TestWaitUntilRegex(
"#log",
"Job " + pluginId + '.*?" started'
).cmd
);
}
}
// It should not end in a wait (validation).
if (
test.afterPluginCloses.length > 0 &&
test.afterPluginCloses[test.afterPluginCloses.length - 1].cmd ===
TestCommand.Wait
) {
throw new Error("Last command cannot be a wait.");
}
// Always add a wait at the end of the test.
test.afterPluginCloses.push(new TestWait(1).cmd);
}
}
/**
* If running a selenium test, this function will make a fake mouse that will
* appear in screen shots.
*/
function makeFakeMouse() {
// Set body cursor to none
// document.body.style.cursor = "none";
// Add above CSS to the page
const style = document.createElement("style");
style.innerHTML = `
.custom-cursor {
position: absolute;
width: 37px;
height: 50px;
background-size: 100% 100%;
pointer-events: none;
z-index: 10000;
background-image: url('fake_cursor.png');
}
`;
document.head.appendChild(style);
// Create a new div element
const cursor = document.createElement("div");
cursor.className = "custom-cursor";
cursor.id = "customCursor";
document.body.appendChild(cursor);
// Move cursor off screen initially
cursor.style.left = "-100px";
cursor.style.top = "-100px";
document.addEventListener("mousemove", function (e) {
const cursor = document.getElementById("customCursor");
if (!cursor) {
return;
}
// Update the position of the custom cursor
cursor.style.left = e.pageX + "px";
cursor.style.top = e.pageY + "px";
});
}
/**
* If running a selenium test, this function will generate the commands for the
* test. Opens plugin, runs plugin-specific test, presses action button.
*
* @param {any} plugin The plugin to test.
*/
export async function createTestCmdsIfTestSpecified(plugin: any) {
if (PluginToTest.pluginToTest !== plugin.pluginId) {
return;
}
if (plugin.pluginId === "") {
return;
}
let tests: ITest | ITest[] = await plugin.getTests();
makeFakeMouse();
// If tests is ITest, wrap it in an array.
if (!Array.isArray(tests)) {
tests = [tests];
}
// If there is more than one test but pluginTestIndex is undefined, send
// back command to add tests.
if (tests.length > 1 && PluginToTest.pluginTestIndex === undefined) {
store.commit("setVar", {
name: "cmds",
val: JSON.stringify([
{
cmd: TestCommand.AddTests,
data: tests.length,
},
]),
module: "test",
});
return;
}
// It is this test that should be tested.
const testToRun = tests[PluginToTest.pluginTestIndex || 0];
// Convert the values of the chosen test to cmds by executing the functions.
const convertedTest: IConvertedTest = {};
for (const key in testToRun) {
const testStepFunc = testToRun[key as keyof ITest];
if (typeof testStepFunc === "function") {
const testCmdListInstance = testStepFunc(); // Execute the function
if (testCmdListInstance instanceof TestCmdList) {
convertedTest[key] = testCmdListInstance.cmds;
}
}
}
const convertedTests = [convertedTest];
addTestDefaults(convertedTests, plugin); // Defined in each plugin
// If the plugin is not menu accessible, can't test it. Just pass it.
// Example: moveregionsonclick
if (plugin.menuPath === null) {
addTestsToCmdList([]);
return;
}
const finalTestCommands = convertedTests[0];
const cmds = [
...(finalTestCommands.beforePluginOpens as ITestCommand[]),
...openPluginCmds(plugin),
...(finalTestCommands.pluginOpen as ITestCommand[]),
new TestWait(1).cmd,
...(finalTestCommands.closePlugin as ITestCommand[]),
...(finalTestCommands.afterPluginCloses as ITestCommand[]),
new TestWait(0.5).cmd,
] as ITestCommand[];
addTestsToCmdList(cmds);
// plugin.$store.commit("setVar", {
// name: "cmds",
// val: JSON.stringify(cmds),
// module: "test",
// });
}
|