mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
* wip: command palette Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * register shortcut to global menu Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * introduce openCommandDialog & closeCommandDialog Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * fix ipc broadcast to frames from renderer Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * tweak Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * add more commands Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * cleanup Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * ipc fix Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * add integration tests Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * ipc fix Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * implement workspace edit Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * workspace edit fixes Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * make tests green Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * fixes from code review Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * cleanup ipc Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * cleanup CommandRegistry Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * ipc fix Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * fix ClusterManager cluster auto-init Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * ensure cluster view is active before sending a command Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * switch to last active cluster when workspace change Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * tweak integration tests Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * run integration tests serially Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * cleanup Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * fixes based on code review Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * cleanup Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * cleanup more Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * cleanup Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * add workspace fixes Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * cleanup Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com>
89 lines
2.0 KiB
TypeScript
89 lines
2.0 KiB
TypeScript
import { Application } from "spectron";
|
|
import * as util from "util";
|
|
import { exec } from "child_process";
|
|
|
|
const AppPaths: Partial<Record<NodeJS.Platform, string>> = {
|
|
"win32": "./dist/win-unpacked/Lens.exe",
|
|
"linux": "./dist/linux-unpacked/lens",
|
|
"darwin": "./dist/mac/Lens.app/Contents/MacOS/Lens",
|
|
};
|
|
|
|
export function itIf(condition: boolean) {
|
|
return condition ? it : it.skip;
|
|
}
|
|
|
|
export function describeIf(condition: boolean) {
|
|
return condition ? describe : describe.skip;
|
|
}
|
|
|
|
export function setup(): Application {
|
|
return new Application({
|
|
path: AppPaths[process.platform], // path to electron app
|
|
args: [],
|
|
startTimeout: 30000,
|
|
waitTimeout: 60000,
|
|
env: {
|
|
CICD: "true"
|
|
}
|
|
});
|
|
}
|
|
|
|
export const keys = {
|
|
backspace: "\uE003"
|
|
};
|
|
|
|
export async function appStart() {
|
|
const app = setup();
|
|
|
|
await app.start();
|
|
// Wait for splash screen to be closed
|
|
while (await app.client.getWindowCount() > 1);
|
|
await app.client.windowByIndex(0);
|
|
await app.client.waitUntilWindowLoaded();
|
|
|
|
return app;
|
|
}
|
|
|
|
export async function clickWhatsNew(app: Application) {
|
|
await app.client.waitUntilTextExists("h1", "What's new?");
|
|
await app.client.click("button.primary");
|
|
await app.client.waitUntilTextExists("h1", "Welcome");
|
|
}
|
|
|
|
type AsyncPidGetter = () => Promise<number>;
|
|
|
|
export async function tearDown(app: Application) {
|
|
const pid = await (app.mainProcess.pid as any as AsyncPidGetter)();
|
|
|
|
await app.stop();
|
|
|
|
try {
|
|
process.kill(pid, "SIGKILL");
|
|
} catch (e) {
|
|
console.error(e);
|
|
}
|
|
}
|
|
|
|
export const promiseExec = util.promisify(exec);
|
|
|
|
type HelmRepository = {
|
|
name: string;
|
|
url: string;
|
|
};
|
|
|
|
export async function listHelmRepositories(retries = 0): Promise<HelmRepository[]>{
|
|
if (retries < 5) {
|
|
try {
|
|
const { stdout: reposJson } = await promiseExec("helm repo list -o json");
|
|
|
|
return JSON.parse(reposJson);
|
|
} catch {
|
|
await new Promise(r => setTimeout(r, 2000)); // if no repositories, wait for Lens adding bitnami repository
|
|
|
|
return await listHelmRepositories((retries + 1));
|
|
}
|
|
}
|
|
|
|
return [];
|
|
}
|