112 lines
2.8 KiB
TypeScript
112 lines
2.8 KiB
TypeScript
import 'jest-extended';
|
|
import waitForExpect from 'wait-for-expect';
|
|
import { Cli } from 'spring-shell-e2e';
|
|
import {
|
|
nativeDesc,
|
|
jarDesc,
|
|
jarCommand,
|
|
nativeCommand,
|
|
jarOptions,
|
|
waitForExpectDefaultTimeout,
|
|
waitForExpectDefaultInterval,
|
|
testTimeout
|
|
} from '../src/utils';
|
|
|
|
// all flow commands
|
|
describe('flow commands', () => {
|
|
let cli: Cli;
|
|
let command: string;
|
|
let options: string[] = [];
|
|
|
|
/**
|
|
* test for flow conditional field2 skips field1
|
|
*/
|
|
const flowConditionalField2SkipsFields1Desc = 'flow conditional field2 skips field1';
|
|
const flowConditionalCommand = ['flow', 'conditional'];
|
|
const flowConditionalField2SkipsFields1 = async (cli: Cli) => {
|
|
cli.run();
|
|
|
|
// windows on gh actions may take quite a bit of time to start
|
|
// so use long timeout
|
|
await waitForExpect(async () => {
|
|
const screen = cli.screen();
|
|
expect(screen).toEqual(expect.arrayContaining([expect.stringContaining('Single1')]));
|
|
}, 60000);
|
|
|
|
await cli.keyDown();
|
|
await waitForExpect(async () => {
|
|
const screen = cli.screen();
|
|
expect(screen).toEqual(expect.arrayContaining([expect.stringContaining('> Field2')]));
|
|
});
|
|
|
|
await cli.keyEnter();
|
|
await waitForExpect(async () => {
|
|
const screen = cli.screen();
|
|
expect(screen).toEqual(
|
|
expect.arrayContaining([expect.stringContaining('? Field2 [Default defaultField2Value]')])
|
|
);
|
|
});
|
|
|
|
await cli.keyEnter();
|
|
await waitForExpect(async () => {
|
|
const screen = cli.screen();
|
|
expect(screen).toEqual(expect.arrayContaining([expect.stringContaining('Field2 defaultField2Value')]));
|
|
});
|
|
|
|
await expect(cli.exitCode()).resolves.toBe(0);
|
|
};
|
|
|
|
beforeEach(async () => {
|
|
waitForExpect.defaults.timeout = waitForExpectDefaultTimeout;
|
|
waitForExpect.defaults.interval = waitForExpectDefaultInterval;
|
|
}, testTimeout);
|
|
|
|
afterEach(async () => {
|
|
cli?.dispose();
|
|
}, testTimeout);
|
|
|
|
/**
|
|
* fatjar commands
|
|
*/
|
|
describe(jarDesc, () => {
|
|
beforeAll(() => {
|
|
command = jarCommand;
|
|
options = jarOptions;
|
|
});
|
|
|
|
it(
|
|
flowConditionalField2SkipsFields1Desc,
|
|
async () => {
|
|
cli = new Cli({
|
|
command: command,
|
|
options: [...options, ...flowConditionalCommand]
|
|
});
|
|
await flowConditionalField2SkipsFields1(cli);
|
|
},
|
|
testTimeout
|
|
);
|
|
});
|
|
|
|
/**
|
|
* native commands
|
|
*/
|
|
describe(nativeDesc, () => {
|
|
beforeAll(() => {
|
|
command = nativeCommand;
|
|
options = [];
|
|
});
|
|
|
|
it(
|
|
flowConditionalField2SkipsFields1Desc,
|
|
async () => {
|
|
cli = new Cli({
|
|
command: command,
|
|
options: [...options, ...flowConditionalCommand]
|
|
});
|
|
await flowConditionalField2SkipsFields1(cli);
|
|
},
|
|
testTimeout
|
|
);
|
|
});
|
|
});
|