2020-05-20 18:03:49 +00:00
|
|
|
import * as assert from 'assert';
|
2020-05-31 02:13:08 +00:00
|
|
|
import { Cargo } from '../../src/toolchain';
|
2021-12-02 06:20:10 +00:00
|
|
|
import { Context } from '.';
|
2020-05-20 18:03:49 +00:00
|
|
|
|
2021-12-02 06:20:10 +00:00
|
|
|
export async function getTests(ctx: Context) {
|
|
|
|
await ctx.suite('Launch configuration/Lens', suite => {
|
|
|
|
suite.addTest('A binary', async () => {
|
2020-05-31 02:13:08 +00:00
|
|
|
const args = Cargo.artifactSpec(["build", "--package", "pkg_name", "--bin", "pkg_name"]);
|
2020-05-20 18:03:49 +00:00
|
|
|
|
2021-11-07 08:00:58 +00:00
|
|
|
assert.deepStrictEqual(args.cargoArgs, ["build", "--package", "pkg_name", "--bin", "pkg_name", "--message-format=json"]);
|
|
|
|
assert.deepStrictEqual(args.filter, undefined);
|
2020-05-20 18:03:49 +00:00
|
|
|
});
|
|
|
|
|
2021-12-02 06:20:10 +00:00
|
|
|
suite.addTest('One of Multiple Binaries', async () => {
|
2020-05-31 02:13:08 +00:00
|
|
|
const args = Cargo.artifactSpec(["build", "--package", "pkg_name", "--bin", "bin1"]);
|
2020-05-20 18:03:49 +00:00
|
|
|
|
2021-11-07 08:00:58 +00:00
|
|
|
assert.deepStrictEqual(args.cargoArgs, ["build", "--package", "pkg_name", "--bin", "bin1", "--message-format=json"]);
|
|
|
|
assert.deepStrictEqual(args.filter, undefined);
|
2020-05-20 18:03:49 +00:00
|
|
|
});
|
|
|
|
|
2021-12-02 06:20:10 +00:00
|
|
|
suite.addTest('A test', async () => {
|
2020-05-31 02:13:08 +00:00
|
|
|
const args = Cargo.artifactSpec(["test", "--package", "pkg_name", "--lib", "--no-run"]);
|
2020-05-20 18:03:49 +00:00
|
|
|
|
2021-11-07 08:00:58 +00:00
|
|
|
assert.deepStrictEqual(args.cargoArgs, ["test", "--package", "pkg_name", "--lib", "--no-run", "--message-format=json"]);
|
|
|
|
assert.notDeepStrictEqual(args.filter, undefined);
|
2020-05-20 18:03:49 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2021-12-02 06:20:10 +00:00
|
|
|
await ctx.suite('Launch configuration/QuickPick', suite => {
|
|
|
|
suite.addTest('A binary', async () => {
|
2020-05-31 02:13:08 +00:00
|
|
|
const args = Cargo.artifactSpec(["run", "--package", "pkg_name", "--bin", "pkg_name"]);
|
2020-05-20 18:03:49 +00:00
|
|
|
|
2021-11-07 08:00:58 +00:00
|
|
|
assert.deepStrictEqual(args.cargoArgs, ["build", "--package", "pkg_name", "--bin", "pkg_name", "--message-format=json"]);
|
|
|
|
assert.deepStrictEqual(args.filter, undefined);
|
2020-05-20 18:03:49 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
|
2021-12-02 06:20:10 +00:00
|
|
|
suite.addTest('One of Multiple Binaries', async () => {
|
2020-05-31 02:13:08 +00:00
|
|
|
const args = Cargo.artifactSpec(["run", "--package", "pkg_name", "--bin", "bin2"]);
|
2020-05-20 18:03:49 +00:00
|
|
|
|
2021-11-07 08:00:58 +00:00
|
|
|
assert.deepStrictEqual(args.cargoArgs, ["build", "--package", "pkg_name", "--bin", "bin2", "--message-format=json"]);
|
|
|
|
assert.deepStrictEqual(args.filter, undefined);
|
2020-05-20 18:03:49 +00:00
|
|
|
});
|
|
|
|
|
2021-12-02 06:20:10 +00:00
|
|
|
suite.addTest('A test', async () => {
|
2020-05-31 02:13:08 +00:00
|
|
|
const args = Cargo.artifactSpec(["test", "--package", "pkg_name", "--lib"]);
|
2020-05-20 18:03:49 +00:00
|
|
|
|
2021-11-07 08:00:58 +00:00
|
|
|
assert.deepStrictEqual(args.cargoArgs, ["test", "--package", "pkg_name", "--lib", "--message-format=json", "--no-run"]);
|
|
|
|
assert.notDeepStrictEqual(args.filter, undefined);
|
2020-05-20 18:03:49 +00:00
|
|
|
});
|
|
|
|
});
|
2021-12-02 06:20:10 +00:00
|
|
|
}
|