Skip to content
Merged
Changes from 13 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
140 changes: 140 additions & 0 deletions packages/cursorless-vscode-e2e/src/suite/performance.vscode.test.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,140 @@
import {
asyncSafety,
type ActionDescriptor,
type ScopeType,
type SimpleScopeTypeType,
} from "@cursorless/common";
import { openNewEditor, runCursorlessCommand } from "@cursorless/vscode-common";
import assert from "assert";
import * as vscode from "vscode";
import { endToEndTestSetup } from "../endToEndTestSetup";

const testData = generateTestData();
const numLines = testData.split("\n").length;

suite(`Performance: ${numLines} lines JSON`, async function () {
endToEndTestSetup(this);

let previousTitle = "";

this.beforeEach(function () {
const title = this.currentTest!.title;
if (title !== previousTitle) {
console.log(` ${title}`);
previousTitle = title;
}
});

const textBasedThreshold = 100;
const parseTreeThreshold = 500;
const surroundingPairThreshold = 30000;

test(
"Remove token",
asyncSafety(() => removeToken(textBasedThreshold)),
);

const fixtures: [SimpleScopeTypeType | ScopeType, number][] = [
// Text based
["character", textBasedThreshold],
["word", textBasedThreshold],
["token", textBasedThreshold],
["identifier", textBasedThreshold],
["line", textBasedThreshold],
["sentence", textBasedThreshold],
["paragraph", textBasedThreshold],
["document", textBasedThreshold],
["nonWhitespaceSequence", textBasedThreshold],
// Parse tree based
["string", parseTreeThreshold],
["map", parseTreeThreshold],
["collectionKey", parseTreeThreshold],
["value", parseTreeThreshold],
// Text based, but utilizes surrounding pair
["boundedParagraph", surroundingPairThreshold],
["boundedNonWhitespaceSequence", surroundingPairThreshold],
["collectionItem", surroundingPairThreshold],
// Surrounding pair
[{ type: "surroundingPair", delimiter: "any" }, surroundingPairThreshold],
[
{ type: "surroundingPair", delimiter: "curlyBrackets" },
surroundingPairThreshold,
],
];

for (const [scope, threshold] of fixtures) {
const [scopeType, title] = getScopeTypeAndTitle(scope);
test(
`Select ${title}`,
asyncSafety(() => selectScopeType(scopeType, threshold)),
);
}
});

async function removeToken(threshold: number) {
await testPerformance(threshold, {
name: "remove",
target: {
type: "primitive",
modifiers: [{ type: "containingScope", scopeType: { type: "token" } }],
},
});
}

async function selectScopeType(scopeType: ScopeType, threshold: number) {
await testPerformance(threshold, {
name: "setSelection",
target: {
type: "primitive",
modifiers: [{ type: "containingScope", scopeType }],
},
});
}

async function testPerformance(threshold: number, action: ActionDescriptor) {
const editor = await openNewEditor(testData, { languageId: "json" });
const position = new vscode.Position(editor.document.lineCount - 3, 5);
const selection = new vscode.Selection(position, position);
editor.selections = [selection];
editor.revealRange(selection);

const start = performance.now();

await runCursorlessCommand({
version: 7,
usePrePhraseSnapshot: false,
action,
});

const duration = Math.round(performance.now() - start);

console.log(` ${duration} ms`);

assert.ok(
duration < threshold,
`Duration ${duration}ms exceeds threshold ${threshold}ms`,
);
}

function getScopeTypeAndTitle(
scope: SimpleScopeTypeType | ScopeType,
): [ScopeType, string] {
if (typeof scope === "string") {
return [{ type: scope }, scope];
}
switch (scope.type) {
case "surroundingPair":
return [scope, `${scope.type}.${scope.delimiter}`];
}
throw Error(`Unexpected scope type: ${scope.type}`);
}

function generateTestData(): string {
const value = Object.fromEntries(
new Array(100).fill("").map((_, i) => [i.toString(), "value"]),
);
const obj = Object.fromEntries(
new Array(100).fill("").map((_, i) => [i.toString(), value]),
);
return JSON.stringify(obj, null, 2);
}
Loading