355 lines
10 KiB
TypeScript
355 lines
10 KiB
TypeScript
import {TextEdit} from "vscode-languageserver-types";
|
|
import {complete} from "./complete";
|
|
import {WorkflowContext} from "./context/workflow-context";
|
|
import {getPositionFromCursor} from "./test-utils/cursor-position";
|
|
import {ValueProviderConfig, ValueProviderKind} from "./value-providers/config";
|
|
|
|
describe("completion", () => {
|
|
it("runs-on", async () => {
|
|
const input = "on: push\njobs:\n build:\n runs-on: |";
|
|
const result = await complete(...getPositionFromCursor(input));
|
|
|
|
expect(result).not.toBeUndefined();
|
|
expect(result.length).toEqual(11);
|
|
expect(result[0].label).toEqual("macos-10.13");
|
|
});
|
|
|
|
it("needs", async () => {
|
|
const input = `on: push
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
build2:
|
|
runs-on: ubuntu-latest
|
|
needs: bu|`;
|
|
const result = await complete(...getPositionFromCursor(input));
|
|
|
|
expect(result).not.toBeUndefined();
|
|
expect(result.length).toEqual(1);
|
|
expect(result[0].label).toEqual("build");
|
|
});
|
|
|
|
it("empty workflow", async () => {
|
|
const input = "|";
|
|
const result = await complete(...getPositionFromCursor(input));
|
|
|
|
expect(result).not.toBeUndefined();
|
|
expect(result.length).toEqual(8);
|
|
expect(result[0].label).toEqual("concurrency");
|
|
});
|
|
|
|
it("completion within a sequence", async () => {
|
|
const input = `on: push
|
|
jobs:
|
|
build:
|
|
runs-on: [self-hosted, u|]`;
|
|
const result = await complete(...getPositionFromCursor(input));
|
|
|
|
expect(result).not.toBeUndefined();
|
|
expect(result.length).toEqual(10);
|
|
|
|
expect(result[0].label).toEqual("macos-10.13");
|
|
});
|
|
|
|
it("sequence filters out existing values", async () => {
|
|
const input = `on: push
|
|
jobs:
|
|
build:
|
|
runs-on: [ubuntu-latest, u|]`;
|
|
const result = await complete(...getPositionFromCursor(input));
|
|
|
|
expect(result).not.toBeUndefined();
|
|
expect(result.length).toEqual(10);
|
|
|
|
expect(result[0].label).toEqual("macos-10.13");
|
|
});
|
|
|
|
it("one-of definition completion", async () => {
|
|
const input = `on: push
|
|
jobs:
|
|
build:
|
|
|`;
|
|
const result = await complete(...getPositionFromCursor(input));
|
|
expect(result).not.toBeUndefined();
|
|
expect(result.length).toEqual(20);
|
|
});
|
|
|
|
it("string definition completion in sequence", async () => {
|
|
const input = `on:
|
|
release:
|
|
types:
|
|
- |`;
|
|
const result = await complete(...getPositionFromCursor(input));
|
|
expect(result.map(x => x.label)).toEqual([
|
|
"created",
|
|
"deleted",
|
|
"edited",
|
|
"prereleased",
|
|
"published",
|
|
"released",
|
|
"unpublished"
|
|
]);
|
|
});
|
|
|
|
it("string definition completion", async () => {
|
|
const input = `on:
|
|
release:
|
|
types: |`;
|
|
const result = await complete(...getPositionFromCursor(input));
|
|
expect(result.map(x => x.label)).toEqual([
|
|
"created",
|
|
"deleted",
|
|
"edited",
|
|
"prereleased",
|
|
"published",
|
|
"released",
|
|
"unpublished"
|
|
]);
|
|
});
|
|
|
|
it("map keys filter out existing values", async () => {
|
|
const input = `on: push
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|`;
|
|
const result = await complete(...getPositionFromCursor(input));
|
|
expect(result).not.toBeUndefined();
|
|
expect(result.map(x => x.label)).not.toContain("runs-on");
|
|
});
|
|
|
|
it("one-of narrows down to a specific type", async () => {
|
|
// A job could be a job-factory or a workflow-job (callable workflow with uses)
|
|
// If we have `runs-on`, we should be able to identify that we're in a job-factory
|
|
const jobFactory = `on: push
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|`;
|
|
const jobFactoryResult = await complete(...getPositionFromCursor(jobFactory));
|
|
expect(jobFactoryResult).not.toBeUndefined();
|
|
expect(jobFactoryResult.map(x => x.label)).not.toContain("uses");
|
|
|
|
const workflowJob = `on: push
|
|
jobs:
|
|
build:
|
|
uses: octo-org/this-repo/.github/workflows/workflow-1.yml@172239021f7ba04fe7327647b213799853a9eb89
|
|
|`;
|
|
const workflowJobResult = await complete(...getPositionFromCursor(workflowJob));
|
|
expect(workflowJobResult).not.toBeUndefined();
|
|
expect(workflowJobResult.map(x => x.label)).not.toContain("runs-on");
|
|
});
|
|
|
|
it("completes boolean values", async () => {
|
|
const input = `on: push
|
|
jobs:
|
|
build:
|
|
continue-on-error: t|`;
|
|
const result = await complete(...getPositionFromCursor(input));
|
|
|
|
expect(result).not.toBeUndefined();
|
|
expect(result.length).toEqual(2);
|
|
|
|
expect(result.map(x => x.label).sort()).toEqual(["false", "true"]);
|
|
});
|
|
|
|
it("completes for empty map values", async () => {
|
|
const input = `on: push
|
|
jobs:
|
|
build:
|
|
continue-on-error: |`;
|
|
const result = await complete(...getPositionFromCursor(input));
|
|
|
|
expect(result).not.toBeUndefined();
|
|
expect(result.length).toEqual(2);
|
|
|
|
expect(result.map(x => x.label).sort()).toEqual(["false", "true"]);
|
|
});
|
|
|
|
it("does not complete empty map values when cursor is immediately after the position", async () => {
|
|
const input = `on: push
|
|
jobs:
|
|
build:
|
|
continue-on-error:|`;
|
|
const result = await complete(...getPositionFromCursor(input));
|
|
|
|
expect(result).not.toBeUndefined();
|
|
expect(result.length).toEqual(0);
|
|
});
|
|
|
|
it("custom value providers override defaults", async () => {
|
|
const input = "on: push\njobs:\n build:\n runs-on: |";
|
|
|
|
const config: ValueProviderConfig = {
|
|
"runs-on": {
|
|
kind: ValueProviderKind.SuggestedValues,
|
|
get: async (_: WorkflowContext) => {
|
|
return [{label: "my-custom-label"}];
|
|
}
|
|
}
|
|
};
|
|
const result = await complete(...getPositionFromCursor(input), config);
|
|
|
|
expect(result).not.toBeUndefined();
|
|
expect(result.length).toEqual(1);
|
|
expect(result[0].label).toEqual("my-custom-label");
|
|
});
|
|
|
|
it("does not show parent mapping sibling keys", async () => {
|
|
const input = `on: push
|
|
jobs:
|
|
build:
|
|
container: |
|
|
runs-on: ubuntu-latest`;
|
|
const result = await complete(...getPositionFromCursor(input));
|
|
expect(result).not.toBeUndefined();
|
|
expect(result.length).toEqual(6);
|
|
// Should not contain other top-level job keys like `if` and `runs-on`
|
|
expect(result.map(x => x.label)).not.toContain("if");
|
|
expect(result.map(x => x.label)).not.toContain("runs-on");
|
|
});
|
|
|
|
it("shows mapping keys within a new map ", async () => {
|
|
const input = `on: push
|
|
jobs:
|
|
build:
|
|
concurrency: |`;
|
|
const result = await complete(...getPositionFromCursor(input));
|
|
expect(result).not.toBeUndefined();
|
|
expect(result.map(x => x.label).sort()).toEqual(["cancel-in-progress", "group"]);
|
|
});
|
|
|
|
it("job key", async () => {
|
|
const input = `on: push
|
|
jobs:
|
|
build:
|
|
runs-|`;
|
|
const result = await complete(...getPositionFromCursor(input));
|
|
expect(result).not.toBeUndefined();
|
|
expect(result).toHaveLength(20);
|
|
});
|
|
|
|
it("job key with comment afterwards", async () => {
|
|
const input = `on: push
|
|
jobs:
|
|
build:
|
|
runs-|
|
|
#`;
|
|
const result = await complete(...getPositionFromCursor(input));
|
|
expect(result).not.toBeUndefined();
|
|
expect(result).toHaveLength(20);
|
|
});
|
|
|
|
it("job key with other values afterwards", async () => {
|
|
const input = `on: push
|
|
jobs:
|
|
build:
|
|
runs-|
|
|
|
|
concurrency: 'group-name'`;
|
|
const result = await complete(...getPositionFromCursor(input));
|
|
expect(result).not.toBeUndefined();
|
|
expect(result).toHaveLength(19);
|
|
});
|
|
|
|
it("step key without space after colon", async () => {
|
|
const input = `on: push
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- env:|
|
|
run: echo`;
|
|
const result = await complete(...getPositionFromCursor(input));
|
|
expect(result).toHaveLength(0);
|
|
});
|
|
|
|
it("empty step", async () => {
|
|
const input = `on: push
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- run: echo
|
|
- |`;
|
|
const result = await complete(...getPositionFromCursor(input));
|
|
expect(result).toHaveLength(11);
|
|
expect(result.map(x => x.label)).toEqual([
|
|
"continue-on-error",
|
|
"env",
|
|
"id",
|
|
"if",
|
|
"name",
|
|
"run",
|
|
"shell",
|
|
"timeout-minutes",
|
|
"uses",
|
|
"with",
|
|
"working-directory"
|
|
]);
|
|
|
|
// Includes detail when available. Using continue-on-error as a sample here.
|
|
expect(result.map(x => x.detail)).toContain(
|
|
"Prevents a job from failing when a step fails. Set to true to allow a job to pass when this step fails."
|
|
);
|
|
});
|
|
|
|
it("loose mapping keys have no completion suggestions", async () => {
|
|
const input = `
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
name:
|
|
type: string
|
|
description: "hello"
|
|
|
|
|
`;
|
|
const result = await complete(...getPositionFromCursor(input));
|
|
expect(result).toHaveLength(0);
|
|
});
|
|
|
|
it("well known mapping keys have descriptions", async () => {
|
|
const input = `
|
|
o|
|
|
`;
|
|
const result = await complete(...getPositionFromCursor(input));
|
|
const onResult = result.find(x => x.label === "on");
|
|
expect(onResult).not.toBeUndefined();
|
|
expect(onResult?.detail).toEqual(
|
|
"The name of the GitHub event that triggers the workflow. You can provide a single event string, array of events, array of event types, or an event configuration map that schedules a workflow or restricts the execution of a workflow to specific files, tags, or branch changes. For a list of available events, see https://help.github.com/en/github/automating-your-workflow-with-github-actions/events-that-trigger-workflows."
|
|
);
|
|
});
|
|
|
|
it("event list includes descriptions when available ", async () => {
|
|
const input = `
|
|
on: [check_run, |]`;
|
|
const result = await complete(...getPositionFromCursor(input));
|
|
const dispatchResult = result.find(x => x.label === "workflow_dispatch");
|
|
expect(dispatchResult).not.toBeUndefined();
|
|
expect(dispatchResult?.detail).toEqual(
|
|
"You can now create workflows that are manually triggered with the new workflow_dispatch event. You will then see a 'Run workflow' button on the Actions tab, enabling you to easily trigger a run."
|
|
);
|
|
});
|
|
|
|
it("sets range when completing token", async () => {
|
|
const input = `on: push
|
|
jobs:
|
|
pre-build:
|
|
runs-on: ubuntu-latest
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
needs: pre-bu|`;
|
|
|
|
const result = await complete(...getPositionFromCursor(input));
|
|
expect(result).not.toBeUndefined();
|
|
expect(result.length).toEqual(1);
|
|
|
|
let textEdit = result[0].textEdit as TextEdit;
|
|
expect(textEdit.newText).toEqual("pre-build");
|
|
expect(textEdit.range).toEqual({
|
|
start: {line: 6, character: 11},
|
|
end: {line: 6, character: 17}
|
|
});
|
|
});
|
|
});
|