From 8ee40ccbe963a0a5e3e998c1652378e1035dc40d Mon Sep 17 00:00:00 2001 From: vsrs Date: Wed, 20 May 2020 21:03:49 +0300 Subject: vscode client side tests --- editors/code/src/cargo.ts | 63 ++++++++++++++++++++++++++++++----------------- 1 file changed, 40 insertions(+), 23 deletions(-) (limited to 'editors/code/src') diff --git a/editors/code/src/cargo.ts b/editors/code/src/cargo.ts index 6a41873d0..c3e2e5c05 100644 --- a/editors/code/src/cargo.ts +++ b/editors/code/src/cargo.ts @@ -12,14 +12,46 @@ interface CompilationArtifact { isTest: boolean; } +export interface ArtifactSpec { + cargoArgs: string[]; + filter?: (artifacts: CompilationArtifact[]) => CompilationArtifact[]; +} + +export function artifactSpec(args: readonly string[]): ArtifactSpec { + const cargoArgs = [...args, "--message-format=json"]; + + // arguments for a runnable from the quick pick should be updated. + // see crates\rust-analyzer\src\main_loop\handlers.rs, handle_code_lens + switch (cargoArgs[0]) { + case "run": cargoArgs[0] = "build"; break; + case "test": { + if (cargoArgs.indexOf("--no-run") === -1) { + cargoArgs.push("--no-run"); + } + break; + } + } + + const result: ArtifactSpec = { cargoArgs: cargoArgs }; + if (cargoArgs[0] === "test") { + // for instance, `crates\rust-analyzer\tests\heavy_tests\main.rs` tests + // produce 2 artifacts: {"kind": "bin"} and {"kind": "test"} + result.filter = (artifacts) => { + return artifacts.filter(a => a.isTest); + }; + } + + return result; +} + export class Cargo { constructor(readonly rootFolder: string, readonly output: OutputChannel) { } - private async artifactsFromArgs(cargoArgs: string[]): Promise { - const artifacts: CompilationArtifact[] = []; + private async getArtifacts(spec: ArtifactSpec): Promise { + let artifacts: CompilationArtifact[] = []; try { - await this.runCargo(cargoArgs, + await this.runCargo(spec.cargoArgs, message => { if (message.reason === 'compiler-artifact' && message.executable) { const isBinary = message.target.crate_types.includes('bin'); @@ -43,30 +75,15 @@ export class Cargo { throw new Error(`Cargo invocation has failed: ${err}`); } + if (spec.filter) { + artifacts = spec.filter(artifacts); + } + return artifacts; } async executableFromArgs(args: readonly string[]): Promise { - const cargoArgs = [...args, "--message-format=json"]; - - // arguments for a runnable from the quick pick should be updated. - // see crates\rust-analyzer\src\main_loop\handlers.rs, handle_code_lens - switch (cargoArgs[0]) { - case "run": cargoArgs[0] = "build"; break; - case "test": { - if (cargoArgs.indexOf("--no-run") === -1) { - cargoArgs.push("--no-run"); - } - break; - } - } - - let artifacts = await this.artifactsFromArgs(cargoArgs); - if (cargoArgs[0] === "test") { - // for instance, `crates\rust-analyzer\tests\heavy_tests\main.rs` tests - // produce 2 artifacts: {"kind": "bin"} and {"kind": "test"} - artifacts = artifacts.filter(a => a.isTest); - } + const artifacts = await this.getArtifacts(artifactSpec(args)); if (artifacts.length === 0) { throw new Error('No compilation artifacts'); -- cgit v1.2.3 From c41a10c29331127ee830badddae55f3e27c9a6ea Mon Sep 17 00:00:00 2001 From: vsrs Date: Thu, 21 May 2020 11:34:34 +0300 Subject: Apply suggestions from @Veetaha code review --- editors/code/src/cargo.ts | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) (limited to 'editors/code/src') diff --git a/editors/code/src/cargo.ts b/editors/code/src/cargo.ts index c3e2e5c05..a55b2f860 100644 --- a/editors/code/src/cargo.ts +++ b/editors/code/src/cargo.ts @@ -25,7 +25,7 @@ export function artifactSpec(args: readonly string[]): ArtifactSpec { switch (cargoArgs[0]) { case "run": cargoArgs[0] = "build"; break; case "test": { - if (cargoArgs.indexOf("--no-run") === -1) { + if (!cargoArgs.includes("--no-run")) { cargoArgs.push("--no-run"); } break; @@ -36,9 +36,7 @@ export function artifactSpec(args: readonly string[]): ArtifactSpec { if (cargoArgs[0] === "test") { // for instance, `crates\rust-analyzer\tests\heavy_tests\main.rs` tests // produce 2 artifacts: {"kind": "bin"} and {"kind": "test"} - result.filter = (artifacts) => { - return artifacts.filter(a => a.isTest); - }; + result.filter = (artifacts) => artifacts.filter(it => it.isTest); } return result; @@ -48,7 +46,7 @@ export class Cargo { constructor(readonly rootFolder: string, readonly output: OutputChannel) { } private async getArtifacts(spec: ArtifactSpec): Promise { - let artifacts: CompilationArtifact[] = []; + const artifacts: CompilationArtifact[] = []; try { await this.runCargo(spec.cargoArgs, @@ -75,11 +73,7 @@ export class Cargo { throw new Error(`Cargo invocation has failed: ${err}`); } - if (spec.filter) { - artifacts = spec.filter(artifacts); - } - - return artifacts; + return spec.filter?.(artifacts) ?? artifacts; } async executableFromArgs(args: readonly string[]): Promise { -- cgit v1.2.3